@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap");
:root {
  /* Main colors */
  --primary: #ff3333;
  --primary-color: #ff3333;
  --primary-dark: #cc0000;
  --primary-light: #ff6666;
  --primary-gradient: linear-gradient(135deg, #ff3333, #990000);
  --light-gray: #f5f5f5;

  --secondary-color : #b70909;

  --text-color: #333333;
  --background-light: #ffffff;
  --background-dark: #f5f5f5;

  /* Gray scale - Adjusted for better contrast */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #7c8490; /* Darkened for better contrast with white backgrounds */
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;


  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;

  /* Neutral colors */
  --white: #ffffff;

  /* Shadows */
  --shadow: 0 1px 3px 3px rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px 15px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Border radius */
  --border-radius: 8px;
  --border-radius-lg: 0.5rem;
  --border-color : #b70909;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-normal: 300ms ease-in-out;

  /* Layout variables */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;

}

*  {
    box-sizing: border-box;
}
  
html {
    font-size: 16px;
}
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  
body {
    font-family: Rubik, sans-serif;
    color: #333333;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* ===== Breadcrumb Navigation ===== */
.breadcrumb-nav {
  /* padding: 0.5rem 0;
  margin-bottom: 0.5rem; */
  width: 100%;
  display: flex;
  align-items: center;
}

.breadcrumb-nav .container {
  display: flex;
  align-items: center;
  min-height: 40px; /* Reduced height for more compact appearance */
  padding: 0.4rem 0; /* Reduced padding top and bottom */
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem; /* Doubled text size from 0.875rem */
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin: 0 0.75rem; /* Slightly increased margin for larger text */
  color: var(--gray-400);
}

.breadcrumb-link {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.3rem 0;
    margin-bottom: 0.25rem;
  }
  
  .breadcrumb-list {
    font-size: 1.5rem; /* Doubled from 0.75rem for mobile */
  }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    margin-bottom: 0.5rem;
  }
  p {
    color: #666666;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3rem;
}
.p-div {
  color: #666666;
  line-height: 1.3rem;
}
.call-us {
    display: flex;
    gap: 12px;
    align-items: center;
}
.call-us p {
    margin-bottom: 0.4rem;
}
a {
    text-decoration: none;
}
.call-us a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #F12B0F !important;
}
.btn {
  display: inline-block;
  color: #333333;
  background-color: transparent;
  font-weight: 500;
  border: 2px solid #333333;
  border-radius: 30px;
  padding: 1rem 2rem;
  transition: 0.25s;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  background-color: #333333;
  cursor: pointer;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}
section:not(:first-of-type) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.is-full {
  width: 100%;
}
.is-half {
  width: 50%;
}
.title-style-1 {
  font-weight: 500;
}
.title-style-2 {
  font-weight: 300;
}
.title-style-1, .title-style-2 {
  font-size: 3rem;
  margin-bottom: 1.4rem;
}
.fw-light {
  font-weight: 300;
}
.fw-bold {
  font-weight: 500;
}
.product-display .title {
  font-size: 4rem;
  font-weight: 500;
}
.product-display .title span {
  font-weight: 300;
}
.product-display .subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.text-light-grey {
  color: #666666;
}
.product-display .price {
  margin: 1.5rem 0 0;
  font-size: 2.25rem;
  color: #333333;
}
.product-display .price-note {
  margin: 0.5rem 0 1rem;
}
.product-display .btn-primary {
  margin: 1rem 0;
}
.btn-primary {
  color: #ffffff;
  background: #dc0d05;
}
.btn-primary:hover {
  color: #333333;
  background-color: transparent;
}
.btn-light {
  color: #333333;
  background-color: #ffffff;
}
.bg-grey {
  background-color: #f7f7f7;
}
section.textblock-2 {
  padding-top: 0;
  padding-bottom: 0;
}
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}
.pad {
  padding: 4rem;
}
.page-title-1 {
  background-image: url(/assets/static_images/title-pattern1.png);
}
.page-title-2 {
  background-image: url(/assets/static_images/title-pattern2.png);
}
.page-title {
  padding: 50px 0;
  background-position: top center;
  background-size: cover;
}
.page-title h1 {
  padding: 0 0.75rem;
  font-size: 4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #808080;
}
.title-style-3 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.wrap:nth-of-type(1) {
  margin-bottom: 3rem;
}
.contact .sub-title {
  margin-bottom: 1rem;
}
.sub-title.form-sub-title {
  margin-bottom: 3rem;
}
article p:last-of-type {
  margin-top: 8rem; /* Add spacing above */
}

.form-field {
  display: block;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 6px;
}
.form-field input {
  position: relative;
  z-index: 10;
  background-color: transparent;
  border: 0;
  outline: 0;
  width: 100%;
  border-bottom: 1px solid #333;
}
.form-field input:placeholder-shown + label {
  color: #ff0000;
}
.error-message{
  color: #dc0d05;
}
.form-field label {
  position: absolute;
  left: 2px;
  font-size: 0.75rem;
  margin-top: 5px;
  opacity: 0;
}
.form-field-last {
  margin-bottom: 4rem;
}
.form-submit {
  display: block;
  text-align: right;
}
#index-contact-error, #contact-error {
  color: #dc0d05;
}
#index-contact-success, #contact-success {
  color: green;
}
.form-submit button {
  cursor: pointer;
}
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 60rem;
  border-radius: 0.5rem;
}
.modal-content .bg-img {
  background: url(/assets/static_images/wave-pattern-red.png) top right;
  height: 100%;
}
.modal-form {
  align-items: center;
  justify-content: space-around;
  padding: 1.5rem;
}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  opacity: 0.8;
  transition: transform 0.25s 0s;
}
.close-button:hover {
  opacity: 1;
  transform: scale(1.25);
  transition: transform 0.25s 0s;
}

.lead-gen-modal .form-wrap {
  margin-top: 2rem;
  width: 80%;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/* Nav */
nav {
    background: var(--white);
    padding: 0 5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding-left: 0;
  }
  
  .menu,
  .submenu {
    list-style-type: none;
  }
  
  .logo {
    font-size: 20px;
    /*padding: 7.5px 10px 7.5px 0;*/
  }
  
  .item {
    padding: 10px 20px;
  }
  
  .item.button {
    padding: 9px 5px;
  }
  
  /* Mobile menu */
  
  .menu li a {
    display: block;
    padding: 15px 5px;
    color: #000;
  }
  
  .menu li.subitem a {
    padding: 15px;
  }
  
  .logo-img {
    max-width: 250px;
  }
  
  .toggle {
    order: 1;
    font-size: 20px;
  }
  
  .item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
  }
  .active .item {
    display: block;
  }
  #cart-count {
    font-size: .7em;
    background: var(--primary-color);
    color: #fff;
    padding: 1px 5px;
    vertical-align: top;
    margin-left: -5px;
    visibility: hidden;
    top: -5px;
    position: relative;
  }
  .badge {
    padding-left: 9px;
    padding-right: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
  }
  
  @media screen and (max-width: 360px) {
    .logo-img {
      max-width: 215px;
    }
  }
  
  /* Tablet menu */
  @media screen and (min-width: 700px) {
    .menu {
      justify-content: center;
    }
  
    .logo {
      flex: 1;
    }
  
    .item.button {
      width: auto;
      order: 1;
      display: block;
    }
  
    .toggle {
      flex: 1;
      text-align: right;
      order: 2;
    }
  }
  
  /* Desktop menu */
  @media screen and (min-width: 960px) {
  
    .menu {
      align-items: flex-start;
      flex-wrap: nowrap;
      background: none;
    }
  
    .menu li a {
      display: inline-block;
      padding: 25px 5px 5px;
    }
  
    .logo {
      order: 0;
    }
  
    .item {
      order: 1;
      position: relative;
      display: block;
      width: auto;
    }
  
    .toggle {
      display: none;
    }
  }
  
/* Footer */

section.footer-1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-1 {
    background-color: #1a1a1a;
    color: #dbdbdb;
  }
  
  .footer-1 .is-one-third .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-1 .is-one-third .row .column {
    flex-grow: 1;
  }
  
  .footer-1 .title {
    font-size: 1.25rem;
    font-weight: 400;
    padding-bottom: 8px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4f4f4f;
  }
  
  .footer-1 p {
    font-size: 0.875rem;
    color: #dbdbdb;
    line-height: 1.5rem;
  }
  
  .footer-newsletter input[type="text"] {
    display: block;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    padding: 0.9rem 3rem 0.9rem 0.9rem;
    background-color: transparent;
    outline: 0;
    color: #fff;
  }
  
  .footer-1 .call-us a {
    color: #e0e0e0;
  }
  
  .footer-1 .footer-newsletter {
    position: relative;
  }
  
  .footer-1 .footer-newsletter button {
    position: absolute;
    background-color: transparent;
    border: 0;
    top: 1.125rem;
    right: 1rem;
    padding: 0;
    cursor: pointer;
  }
  
  .footer-newsletter input[type="text"]::placeholder {
    color: #d3d3d3;
  }
  
  .footer-menu ul {
    padding-left: 1.25rem;
  }
  
  .footer-menu ul li {
    margin-bottom: 8px;
  }
  
  .footer-menu a {
    color: #dbdbdb;
  }
  
  .footer-1 .social-links a:first-child {
    margin-right: 1rem;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
}
.is-one-third {
    width: 33.3333%;
}
.column {
    padding: 0.75rem;
}
  /* secondary footer */
  
  section.footer-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-2 {
    background-color: #131313;
  }
  
  .footer-2 .row {
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-2 .menu li:not(:last-of-type) {
    margin-right: 5rem;
  }
  
  .footer-2 .menu li a,
  .footer-2 p {
    color: #b2b2b2;
    font-size: 0.875rem;
    padding: 0;
    margin-bottom: 0;
  }
  /* Tablet view styles */
  
  @media screen and (max-width: 768px) {
    nav {
      padding: 0 1rem;
    }
  
    .is-half,
    .is-one-third {
      width: 100%;
    }
    .modal-content {
      width: 24rem;
    }
    .order-sm-1 {
      order: -1;
    }
  
    .tagline-2 {
      font-size: 4rem;
    }
  }
  
  /* Mobile view styles */
  
  @media screen and (max-width: 960px) {
    .container {
      max-width: 540px;
      padding: 1.5rem;
    }
  
    .hero-text {
      padding: 1.5rem;
    }
  
    .is-half,
    .is-one-third {
      width: 100%;
    }
  
    .hero-text h1 {
      margin-bottom: 3rem;
    }
  
    .pad {
      padding: 2rem;
    }
  
    .form-field {
      margin-bottom: 3rem;
    }
  }
  .container {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
    max-width: 1152px;
  }
    