/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*:root {*/
/*  --navy: #7A5938;*/
/*  --black: #000000;*/
/*  --luxury-gold: #f2d27a;*/
/*  --gold-mid: #c89a2b;*/
/*  --silver: #e6e7e8;*/
/*  --text-soft: #cfcfd6;*/
/*  --container: 1180px;*/
/*  --side-padding: 24px;*/
/*}*/

:root {
  --raw-umber: #7A5938;
  --anthracite: #2D302F;
  --luxury-gold: #D4AF37;
  --gold-mid: #D39D26;
  --silver: #e6e7e8;
  --text-soft: #cfcfd6;
  --container: 1280px;
  --side-padding: 24px;
  --timber-wolf: #D8D1C7;
  --raw-umber-rgb: 130, 102, 68;
}

body {
  font-family: "Manrope", sans-serif;;
  background: var(--navy);
  color: #fff;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ================= HEADER BASE ================= */

.site-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  padding: 24px 0 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

.header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 30px !important;
}

.site-logo {
  display: flex !important;
  align-items: center !important;
}

.site-logo a {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.header-logo {
  max-width: 180px !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.logo-dark {
  display: none !important;
}

.logo-white {
  display: block !important;
}

.text-logo {
  color: #fff !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
}

/* ================= NAV ================= */

.main-nav {
  display: flex !important;
  justify-content: center !important;
}

.primary-menu {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.primary-menu a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  transition: 0.25s ease !important;
}

.primary-menu a:hover {
  color: var(--luxury-gold) !important;
}

.header-cta {
  justify-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 13px 31px !important;
  border-radius: 40px !important;
  background: linear-gradient(135deg, var(--luxury-gold), var(--gold-mid)) !important;
  color: #0a0630 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.menu-toggle {
  display: none !important;
}

/* ================= HEADER VARIANTS ================= */

body.header-transparent .site-header {
  position: absolute !important;
  background: transparent !important;
}

body.header-solid .site-header {
  position: relative !important;
  background: #fff !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06) !important;
}

body.header-light-text .primary-menu a,
body.header-light-text .text-logo {
  color: #fff !important;
}

body.header-dark-text .primary-menu a,
body.header-dark-text .text-logo {
  color: #111 !important;
}

body.header-transparent .logo-white {
  display: block !important;
}

body.header-transparent .logo-dark {
  display: none !important;
}

body.header-solid .logo-white {
  display: none !important;
}

body.header-solid .logo-dark {
  display: block !important;
}

/* ================= STICKY HEADER ================= */

.site-header.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: #fff !important;
  padding: 14px 0 !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.14) !important;
  animation: stickySlide 0.3s ease !important;
}

.site-header.is-sticky .primary-menu a,
.site-header.is-sticky .text-logo {
  color: #111 !important;
}

.site-header.is-sticky .logo-white {
  display: none !important;
}

.site-header.is-sticky .logo-dark {
  display: block !important;
}

.site-header.is-sticky .menu-toggle {
  border-color: rgba(0,0,0,0.16) !important;
  background: rgba(0,0,0,0.04) !important;
}

.site-header.is-sticky .menu-toggle span {
  background: #111 !important;
}

@keyframes stickySlide {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ================= MOBILE HEADER ================= */

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0 !important;
  }

  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
  }

  .header-logo {
    max-width: 135px !important;
    max-height: 38px !important;
  }

  .header-cta {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    background: rgba(255,255,255,0.08) !important;
    cursor: pointer !important;
    padding: 0 10px !important;
    z-index: 10001 !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
    transition: 0.3s ease !important;
  }

  body.header-dark-text .menu-toggle {
    border-color: rgba(0,0,0,0.16) !important;
    background: rgba(0,0,0,0.04) !important;
  }

  body.header-dark-text .menu-toggle span {
    background: #111 !important;
  }

  .main-nav {
    position: fixed !important;
    top: 76px !important;
    left: 5% !important;
    width: 90% !important;
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    padding: 18px !important;
    border-radius: 20px !important;
    background:
      radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
      radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
      linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35) !important;
    z-index: 10000 !important;
    transition: 0.3s ease !important;
  }

  .main-nav.active {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .primary-menu {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .primary-menu a {
    display: block !important;
    padding: 15px 10px !important;
    font-size: 15px !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }

  .primary-menu li:last-child a {
    border-bottom: none !important;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .site-header.is-sticky {
    padding: 12px 0 !important;
  }

  .site-header.is-sticky .main-nav {
    top: 60px !important;
  }
}



body.header-is-sticky .site-header,
.site-header.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: #fff !important;
  padding: 14px 0 !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.14) !important;
  transform: translateY(0) !important;
}

body.header-is-sticky .primary-menu a,
body.header-is-sticky .text-logo,
.site-header.is-sticky .primary-menu a,
.site-header.is-sticky .text-logo {
  color: #111 !important;
}

body.header-is-sticky .logo-white,
.site-header.is-sticky .logo-white {
  display: none !important;
}

body.header-is-sticky .logo-dark,
.site-header.is-sticky .logo-dark {
  display: block !important;
}

body.header-is-sticky .menu-toggle,
.site-header.is-sticky .menu-toggle {
  border-color: rgba(0,0,0,0.16) !important;
  background: rgba(0,0,0,0.04) !important;
}

body.header-is-sticky .menu-toggle span,
.site-header.is-sticky .menu-toggle span {
  background: #111 !important;
}

@media (max-width: 768px) {
  body.header-is-sticky .site-header,
  .site-header.is-sticky {
    padding: 12px 0 !important;
  }

  body.header-is-sticky .main-nav,
  .site-header.is-sticky .main-nav {
    top: 60px !important;
  }
}


/* HERO */

.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 115px 0 70px;
  overflow: hidden;

  background-image: url("/wp-content/uploads/hero-door.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(
  90deg,
  #111111 0%,
  rgba(17, 17, 17, 0.9) 35%,
  rgba(17, 17, 17, 0.6) 70%,
  rgba(17, 17, 17, 0) 100%
);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 2.6px;
  color: var(--luxury-gold);
  margin-bottom: 14px;
  display: inline-block;
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: #fff;
  margin: 0;
}

.hero-content p {
  margin-top: 15px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 500px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.btn {
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.hero-points {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-points span {
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--silver);
}


.hero-actions .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: inherit !important;
}

.hero-actions .btn-primary,
.hero-actions .btn-primary:visited {
    background: linear-gradient(135deg, var(--luxury-gold), var(--gold-mid)) !important;
    color: #0a0630 !important;
    border: 1px solid transparent !important;
}

.hero-actions .btn-outline,
.hero-actions .btn-outline:visited {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
}

.hero-actions .btn-primary:hover {
    color: #0a0630 !important;
}

.hero-actions .btn-outline:hover {
    color: var(--luxury-gold) !important;
    border-color: var(--luxury-gold) !important;
}

@media (max-width: 768px) {
    .hero-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .hero-actions .btn {
        flex: 1;
        width: auto !important;
        min-height: 42px;
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 520px;
    padding: 100px 0 46px;
    background-image: url("/wp-content/uploads/hero-door-mobile.webp");
    background-position: center right;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.9) 35%, rgba(17, 17, 17, 0.6) 70%, rgba(17, 17, 17, 0) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-label {
    font-size: 9px;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
  }

  .hero-content h1 {
    font-size: 31px;
    line-height: 1.13;
  }

  .hero-content p {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 330px;
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: row;
    gap: 10px;
  }

  .btn {
    width: auto;
    padding: 10px 16px;
    font-size: 12.5px;
  }

  .hero-points {
    margin-top: 20px;
    gap: 7px;
  }

  .hero-points span {
    font-size: 10px;
    padding: 6px 10px;
  }
}


/* ================= BRAND SECTION ================= */
.brand-section {
  
     background-color:
    #000000;
  padding: 0px 0;
  position: relative;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--luxury-gold);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
}

.brand-content h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.7px;
  max-width: 600px;
}

.brand-content p {
  margin-top: 18px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

.brand-stats {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.brand-stats div {
  min-width: 190px;
  padding: 22px 24px;
  border: 1px solid rgba(230, 231, 232, 0.12);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 18px;
}

.brand-stats strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 7px;
}

.brand-stats span {
  color: #aeb0ba;
  font-size: 12px;
  line-height: 1.5;
}

.brand-card {
  padding: 42px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.025));
  border: 1px solid rgba(242, 210, 122, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(242,210,122,0.28), transparent 68%);
}

.brand-card span {
  color: var(--luxury-gold);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.brand-card h3 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.brand-card p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-section {
    padding: 65px 0;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-card {
    padding: 30px;
  }

  .brand-card h3 {
    font-size: 24px;
  }

  .brand-stats div {
    width: 100%;
  }
}

.brand-image {
  position: relative;
  height: 100%;

  /* Push image to the extreme right */
  /*margin-right: calc((100vw - 100%) / -2);*/
  overflow:hidden;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px 0 0 30px;
  overflow:hidden;
}



/* ================= CATEGORIES SECTION ================= */
.categories-section {
  padding: 90px 0;
  background: var(--timber-wolf);
  color: #0a0630;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.categories-section .section-label {
  color: #8c5e12;
}

.section-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.8px;
}

.section-heading p {
  margin-top: 16px;
  max-width: 650px;
  color: #55515f;
  font-size: 15px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 24px;
  text-decoration: none;
  color: #0a0630;
  background: #ffffff;
  border: 1px solid rgba(10, 6, 48, 0.08);
  box-shadow: 0 20px 50px rgba(10, 6, 48, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200,154,43,0.18), transparent 70%);
  transition: 0.35s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  background: var(--raw-umber);
  color: #ffffff;
  border-color: rgba(242, 210, 122, 0.25);
}

.category-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.category-number {
  color: var(--luxury-gold);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.category-card h3 {
  margin-top: 44px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.category-card p {
  margin-top: 14px;
  color: #5f5a68;
  font-size: 14px;
  line-height: 1.65;
}

.category-card:hover p {
  color: #cfcfd6;
}

.category-card span {
  margin-top: 26px;
  color: var(--raw-umber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.category-card:hover span {
  color: #f2d27a;
}

/* MOBILE */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .categories-section {
    padding: 65px 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 260px;
  }
}


@media (max-width: 768px) {

    .categories-section {
        overflow: hidden;
    }

    .category-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;

        gap: 16px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 12px;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        width: 82%;
        min-width: 82%;
        max-width: 82%;

        flex: 0 0 82%;

        scroll-snap-align: start;

        box-sizing: border-box;
    }
    
    .category-card {
        box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    }

}


/* FEATURES SECTION FIXED */
.features-section {
  padding: 80px 0;
/*  background: linear-gradient(*/
/*  180deg,*/
/*  #000000 0%,*/
/*  #121212 50%,*/
/*  #2D302F 100%*/
/*);*/

background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);

}

/* HEADER FIX */
.features-header {
  max-width: 720px;
  margin: 0 auto 50px;   /* centers perfectly */
  text-align: center;
}

.features-header h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* GRID FIX */
.features-grid {
  /*max-width: 1100px;*/
  margin: 0 auto;         /* centers grid */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD FIX */
.feature-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,210,122,0.3);
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 600;
}

.feature-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}


.feature-card {
    position: relative;
    padding: 34px 30px;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    transition: 0.3s ease;
}

.feature-icon i {
    font-size: 22px;
    color: var(--luxury-gold);
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px);
    border-color: rgba(184,135,70,0.4);
}

.feature-card h4 {
    margin-bottom: 14px;
}

/* RESPONSIVE FIX */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

    .features-section {
        overflow: hidden;
    }

    .features-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;

        width: 100%;
        padding-bottom: 12px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        width: 82%;
        min-width: 82%;
        max-width: 82%;
        flex: 0 0 82%;

        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .feature-card h4,
    .feature-card p {
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .feature-card p {
        max-width: 100%;
    }
}


/* ================= PRODUCTS SECTION ================= */
/* ================= PRODUCTS SECTION ================= */
.products-section {
  padding: 90px 0;
/*  background: linear-gradient(*/
/*  180deg,*/
/*  #000000 0%,*/
/*  #121212 50%,*/
/*  #2D302F 100%*/
/*);*/

background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);

  color: #fff;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
  pointer-events: none;
}

.products-header {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.products-header h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.products-header p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.products-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.product-card {
  min-height: 540px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid rgba(242, 210, 122, 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 210, 122, 0.34);
}

/* IMAGE AREA */
.product-image {
  height: 365px;
  padding: 28px 24px 18px;
  background:
    linear-gradient(180deg, rgba(10,6,48,0.25), rgba(0,0,0,0.45)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 0px,
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 18px
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain; /* IMPORTANT: entire door visible */
  filter: drop-shadow(0 25px 28px rgba(0,0,0,0.55));
}

/* CONTENT */
.product-info {
  padding: 24px;
  flex: 1;
  background: rgba(5, 3, 23, 0.82);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-info span {
  color: var(--luxury-gold);
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.product-info h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.product-info p {
  margin-top: 9px;
  color: #cfcfd6;
  font-size: 14px;
  line-height: 1.6;
}

.product-info a {
  display: inline-block;
  margin-top: 18px;
  color: var(--luxury-gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 210, 122, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 65px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .product-image {
    height: 340px;
  }
}


@media (max-width: 768px) {

    .products-section {
        overflow: hidden;
    }

    .products-grid {
        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 16px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 20px;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        width: 82%;
        min-width: 82%;
        max-width: 82%;

        flex: 0 0 82%;

        scroll-snap-align: start;

        box-sizing: border-box;
    }

    .product-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

}



/* ================= TECHNOLOGY SECTION ================= */
/* ================= TECHNOLOGY SECTION (FINAL FIXED) ================= */
.technology-section {
  padding: 90px 0;
  min-height: 520px;
background: var(--timber-wolf);

/*background:*/
/*    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),*/
/*    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),*/
/*    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);*/

  color: #000;
}

/* GRID */
.technology-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: stretch; /* ensures equal height columns */
}

/* LEFT CONTENT */
.technology-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.technology-content h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
  max-width: 580px;
}

.technology-content p {
  margin-top: 16px;
  color: var(--anthracite);
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
}

/* LIST */
.tech-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.tech-list div {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(var(--raw-umber-rgb), 0.4);
}

.tech-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.tech-list span {
  display: block;
  margin-top: 6px;
  color: var(--anthracite);
  font-size: 13px;
  line-height: 1.55;
}

/* RIGHT VISUAL PANEL */
.technology-visual {
  height: 100%;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(242,210,122,0.22), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(242,210,122,0.16);
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* PANEL ITEMS */
.tech-panel {
  flex: 1; /* equal height panels */
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(var(--raw-umber-rgb), 0.4);

  display: flex;
  align-items: center;
  gap: 18px;
  transition: 0.3s ease;
}

.tech-panel:hover {
  border-color: var(--raw-umber);
  transform: translateY(-3px);
}

/* ICON BOX */
.tech-panel span {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--luxury-gold), var(--gold-mid));
  color: var(--navy);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

/* TITLE */
.tech-panel h3 {
  font-size: 18px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .technology-visual {
    height: auto;
  }
}

@media (max-width: 640px) {
  .technology-section {
    padding: 65px 0;
  }

  .tech-panel {
    padding: 18px;
  }
}


/* ================= PROCESS SECTION ================= */
.process-section {
  padding: 90px 0;
  background: #f9efe8;
  color: var(--navy);
}

.process-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.process-header .section-label {
  color: #8c5e12;
}

.process-header h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.process-header p {
  margin-top: 14px;
  color: #5d5866;
  font-size: 15px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(10, 6, 48, 0.08);
  box-shadow: 0 20px 55px rgba(10, 6, 48, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200,154,43,0.18), transparent 70%);
}

.process-card:hover {
  transform: translateY(-6px);
  background: var(--navy);
  color: #fff;
}

.process-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--luxury-gold), var(--gold-mid));
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.process-card h3 {
  margin-top: 32px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.process-card p {
  margin-top: 12px;
  color: #5f5a68;
  font-size: 14px;
  line-height: 1.6;
}

.process-card:hover p {
  color: #cfcfd6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-section {
    padding: 65px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 230px;
  }
}


/* ================= QUOTE SECTION ================= */
.quote-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
  color: #fff;
}

.quote-box {
  border-radius: 34px;
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  border: 1px solid rgba(242,210,122,0.18);
  box-shadow: 0 34px 90px rgba(0,0,0,0.35);

  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.quote-content h2 {
  margin-top: 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.7px;
  max-width: 720px;
}

.quote-content p {
  margin-top: 16px;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.quote-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.quote-actions .btn {
  text-align: center;
}

.btn-outline-dark {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.btn-outline-dark:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .quote-section {
    padding: 65px 0;
  }

  .quote-box {
    grid-template-columns: 1fr;
    padding: 34px;
    border-radius: 26px;
  }
}


.quote-section {
    padding: 90px 0;
    background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
    overflow: hidden;
}

.quote-box {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 42px;

    padding: 70px;

    display: grid;
    grid-template-columns: 1fr 520px;

    gap: 60px;

    align-items: center;
}

/* LEFT */

.quote-content h2 {
    font-size: 64px;
    line-height: 1.05;
    margin: 18px 0 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -2px;
    max-width: 700px;
}

.quote-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
}

/* FORM */

.quote-form-wrap {
    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    padding: 32px;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    color: #fff;

    border-radius: 14px;

    padding: 16px 18px;

    font-size: 14px;

    outline: none;

    margin-bottom: 14px;

    transition: 0.3s ease;

    box-sizing: border-box;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.quote-form select {
    color: rgba(255,255,255,0.75);
}

.quote-form option {
    color: #111;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: rgba(184,135,70,0.6);
}

.quote-form textarea {
    resize: none;
}

.quote-form button {
    width: 100%;

    height: 58px;

    border: none;

    border-radius: 50px;

    background: #d7ad45;

    color: #111;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.quote-form button:hover {
    background: #c99d31;
}

.form-success {
    color: #84d78f;
    margin-top: 16px;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 991px) {

    .quote-section {
        padding: 70px 0;
    }

    .quote-box {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 36px 24px;

        border-radius: 30px;
    }

    .quote-content h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .quote-content p {
        font-size: 16px;
    }

    .quote-form-wrap {
        padding: 22px;
    }

}

@media (max-width: 600px) {

    .quote-form-row {
        grid-template-columns: 1fr;
    }

    .quote-content h2 {
        font-size: 34px;
    }

}



.site-logo {
  display: flex !important;
  align-items: center !important;
  width: 180px !important;
  max-width: 180px !important;
  height: 50px !important;
  max-height: 50px !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 99999 !important;
}

.site-logo a {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none !important;
}

.header-logo-img {
  max-width: 160px !important;
  max-height: 45px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 768px) {
  .site-logo {
    width: 140px !important;
    max-width: 140px !important;
    height: 42px !important;
  }

  .header-logo-img {
    max-width: 130px !important;
    max-height: 36px !important;
  }
}




/* ================= SINGLE PRODUCT PAGE ================= */

.single-product-page {
  background: #050317;
  color: #fff;
}

.single-product-page .container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}


@media (max-width: 768px) {

  .main-nav.active .primary-menu a {
    color: #fff !important;
  }

  .main-nav.active .primary-menu a:hover {
    color: var(--luxury-gold) !important;
  }

}

/* HERO */

.single-product-hero {
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 16% 20%, rgba(200,154,43,0.14), transparent 28%),
    linear-gradient(180deg, #050317 0%, #0a0630 100%);
  overflow: hidden;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* GALLERY */

.single-product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
}

.single-product-main-image-wrap {
  width: 360px;
  height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.single-product-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;

  border: none !important;
  box-shadow: none !important;

  display: block;

  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.45));
}

.single-product-no-image {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* THUMBNAILS */

.single-product-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  padding: 4px 4px 8px;
}

.single-product-thumbs::-webkit-scrollbar {
  display: none;
}

.single-thumb-btn {
  width: 78px;
  min-width: 78px;
  height: 92px;

  border: none !important;
  background: transparent !important;
  padding: 0;

  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;

  opacity: 0.55;
  transition: 0.25s ease;
}

.single-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  border: none !important;
}

.single-thumb-btn.active,
.single-thumb-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* CONTENT */

.single-product-content .section-label,
.product-specs-section .section-label,
.product-features-section .section-label,
.single-product-quote .section-label {
  color: var(--luxury-gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.single-product-content h1 {
  margin: 16px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.6px;
  color: #fff;
}

.single-product-content p {
  margin-top: 20px;
  max-width: 610px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.75;
}

.single-product-badges {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-product-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
}

/* BUTTONS */

.single-product-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.single-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  min-width: 158px;
  height: 48px;
  padding: 0 24px;

  border-radius: 50px;
  text-decoration: none !important;

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.single-btn-primary {
  background: linear-gradient(135deg, var(--luxury-gold), var(--gold-mid)) !important;
  color: #0a0630 !important;
  border: 1px solid transparent !important;
}

.single-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.34) !important;
}

.single-btn:hover {
  transform: translateY(-2px);
}

.single-btn-outline:hover {
  color: var(--luxury-gold) !important;
  border-color: var(--luxury-gold) !important;
}

/* SPECS */

.product-specs-section {
  padding: 80px 0;
  background: #f9efe8;
  color: var(--navy);
}

.specs-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.product-specs-section .section-label {
  color: #8c5e12;
}

.specs-content h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.specs-content p {
  margin-top: 16px;
  color: #5d5866;
  font-size: 15px;
  line-height: 1.75;
}

.specs-table-wrap {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(10,6,48,0.09);
  border: 1px solid rgba(10,6,48,0.08);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 600;
}

.specs-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(10,6,48,0.08);
  color: #4f4a58;
  font-size: 14px;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

/* FEATURES */

.product-features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0630 0%, #050317 100%);
}

.product-section-header {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-section-header h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-feature-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.product-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,210,122,0.28);
}

.product-feature-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.product-feature-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.65;
}

/* QUOTE */

.single-product-quote {
  padding: 80px 0;
  background: #050317;
}

.single-product-quote-box {
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  padding: 50px;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.single-product-quote h2 {
  margin: 14px 0 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  color: #fff;
}

.single-product-quote p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .single-product-grid,
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .single-product-content {
    text-align: center;
  }

  .single-product-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .single-product-badges,
  .single-product-actions {
    justify-content: center;
  }

  .product-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-product-quote-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .single-product-hero {
    padding: 100px 0 50px;
  }

  .single-product-grid {
    gap: 30px;
  }

  .single-product-gallery {
    gap: 14px;
  }

  .single-product-main-image-wrap {
    width: 250px;
    height: 315px;
  }

  .single-thumb-btn {
    width: 62px;
    min-width: 62px;
    height: 74px;
  }

  .single-product-content {
    text-align: left;
  }

  .single-product-content h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .single-product-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .single-product-badges,
  .single-product-actions {
    justify-content: flex-start;
  }

  .single-product-badges span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .single-product-actions {
    flex-direction: column;
  }

  .single-btn {
    width: 100%;
  }

  .product-specs-section,
  .product-features-section,
  .single-product-quote {
    padding: 60px 0;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-card {
    min-height: auto;
  }

  .specs-table th,
  .specs-table td {
    padding: 14px 14px;
    font-size: 13px;
  }

  .single-product-quote-box {
    padding: 32px 22px;
    border-radius: 24px;
  }
}


@media (max-width: 640px) {

  .single-product-gallery {
    width: 100%;
    overflow: hidden;
  }

  .single-product-main-image-wrap {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .single-product-thumbs {
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;
    overflow-y: hidden;

    gap: 10px;

    justify-content: flex-start;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 8px;
    margin-top: 8px;
  }

  .single-product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .single-thumb-btn {
    flex: 0 0 auto;

    width: 64px;
    min-width: 64px;

    height: 76px;

    scroll-snap-align: start;
  }

}


.product-feature-icon {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  transition: 0.3s ease;
}

.product-feature-icon i {
  font-size: 22px;
  color: var(--luxury-gold);
}

.product-feature-card:hover .product-feature-icon {
  transform: translateY(-3px);
  border-color: rgba(242,210,122,0.3);
}

.product-feature-card h3 {
  margin-top: 0;
}

/*ABOUT US*/


.about-clean {
    background: #f7f3ec;
    color: #1f1f1f;
}

.about-clean .container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 55px 0px 55px 0px;
}

/*.about-clean {*/
/*    background: #151515;*/
/*    color: #fff;*/
/*    padding: 145px 0 75px;*/
/*}*/

/* DARK HERO */

.about-hero-dark {
    background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
    color: #fff;
    padding: 145px 0 80px;
}

.about-hero-content {
    max-width: 720px;
    /*padding: 145px 0 75px;*/
}

.about-hero-content span,
.small-title {
    display: inline-block;
    color: #b88746;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 18px;
}

.about-hero-content p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.7;
    max-width: 620px;
}

/* TEXT */

.about-clean h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
    margin: 0 0 16px;
}

.about-clean h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 12px 0 8px;
}

.about-clean p {
    font-size: 15px;
    line-height: 1.75;
    color: white5;
    margin-bottom: 12px;
}

/* INTRO */

.about-two-col {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
}

/* DETAIL */

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.about-points div {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-points i,
.value-card i {
    color: var(--luxury-gold);
    font-size: 18px;
}

.about-points span {
    font-size: 14px;
    font-weight: 500;
}

/* VALUES */

.center-heading {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 30px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    background: #fff;
    padding: 26px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* FINAL CTA */

.about-final {
    padding-top: 35px;
}

.about-final-box {
    background: #151515;
    color: #fff;
    border-radius: 20px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-final-box h2 {
    color: #fff;
    margin: 0;
    font-size: 26px;
}

.about-btn {
    background: var(--luxury-gold);
    color: #fff;
    padding: 13px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .about-clean section {
        padding: 42px 0px 42px 0px;
    }

    .about-hero-dark {
        padding: 120px 0 60px;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-two-col,
    .about-detail-grid,
    .value-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-final-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-hero-content{
        padding: 60px 0px 0px 0px;
    }
}


/*CONTACT US PAGE*/


.contact-page {
    background: #f7f3ec;
    color: #1f1f1f;
}

.contact-page .container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.contact-hero {
    background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
    color: #fff;
    padding: 145px 0 75px;
}

.contact-hero span,
.small-title {
    color: var(--raw-umber);
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    max-width: 720px;
    margin: 14px 0;
}

.contact-hero p {
    color: #d8d8d8;
    font-size: 15px;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 45px;
}

.contact-info h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 12px 0;
}

.contact-info p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.info-box {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: flex-start;
}

.info-box i {
    color: var(--luxury-gold);
    font-size: 18px;
    margin-top: 4px;
}

.info-box h4 {
    margin: 0 0 4px;
    font-size: 15px;
}

.info-box p {
    margin: 0;
}

.contact-form-box {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 14px 16px;
    border: 1px solid #e1ddd5;
    border-radius: 10px;
    font-size: 14px;
    background: #fbfaf7;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #b88746;
}

.contact-form button {
    background: var(--luxury-gold);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.form-success {
    margin-top: 15px;
    color: #2f8f46;
    font-weight: 600;
}

@media(max-width: 900px) {
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 24px;
    }
}



/*ARCHIVE-PRODUCT*/

.products-archive-page {
    background: var(--timber-wolf);
    color: #1f1f1f;
}

.products-archive-page .container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* HERO */

.products-archive-hero {
    background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
    color: #fff;
    padding: 145px 0 75px;
}

.products-archive-hero h1 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    max-width: 720px;
    margin: 14px 0;
}

.products-archive-hero p {
    color: #d8d8d8;
    font-size: 15px;
    max-width: 560px;
    line-height: 1.7;
}

/* SECTION */

.products-archive-section {
    padding: 60px 0;
}

.archive-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 34px;
}

.archive-top h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin: 10px 0 0;
}

.archive-top p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* GRID */

.archive-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */

.archive-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.archive-product-card:hover {
    transform: translateY(-5px);
}

.archive-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    background: #f2ede5;
    overflow: hidden;
    padding: 18px;
}

.archive-product-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: 0.4s ease;
}

.archive-product-card:hover .archive-product-image img {
    transform: scale(1.03);
}

.no-product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
}

.archive-product-content {
    padding: 22px;
}

.archive-product-content span {
    color: var(--raw-umber);
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 700;
    text-transform: uppercase;
}

.archive-product-content h3 {
    margin: 10px 0 10px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 500;
}

.archive-product-content h3 a {
    color: #1f1f1f;
    text-decoration: none;
}

.archive-product-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 16px;
}

.archive-product-btn {
    display: inline-block;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #b88746;
    padding-bottom: 4px;
}

/* PAGINATION */

.archive-pagination {
    margin-top: 40px;
    text-align: center;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 4px;
    border-radius: 50px;
    background: #fff;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 14px;
}

.archive-pagination .page-numbers.current {
    background: var(--raw-umber);
    color: #fff;
}

/* EMPTY */

.no-products-found {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    text-align: center;
}

.archive-pagination .page-numbers i {
    font-size: 13px;
    line-height: 1;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .archive-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .products-archive-hero {
        padding: 120px 0 60px;
    }

    .products-archive-hero h1 {
        font-size: 32px;
    }

    .archive-top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .archive-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .archive-products-grid {
        grid-template-columns: 1fr;
    }

     .archive-product-image {
        height: 380px;
        padding: 16px;
    }

}


.archive-category-tabs{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin:40px 0 45px;
}

.archive-category-tab{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:999px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;

    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.archive-category-tab:hover{
    background:rgba(255,255,255,.08);
    border-color:var(--luxury-gold);
    color:var(--luxury-gold);
}

.archive-category-tab.active{
    background:linear-gradient(135deg,var(--luxury-gold),var(--gold-mid));
    color:#050317;
    border-color:transparent;
}



/*FOOTER*/

.site-footer {
    background: #0f0f0f;
    color: #fff;
    padding-top: 70px;
    /*margin-top: 80px;*/
    overflow: hidden;
}

.site-footer .container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 55px;
}

/* BRAND */

.footer-logo {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 15px;
    max-width: 360px;
}

/* HEADINGS */

.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    margin-bottom: 22px;
    color: #fff;
    font-weight: 500;
}

/* LINKS */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #b88746;
}

/* CONTACT */

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--luxury-gold);
    margin-top: 4px;
    font-size: 15px;
}

.footer-contact-item span {
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 15px;
}

/* SOCIALS */

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #b88746;
    border-color: #b88746;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}

.footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #8f8f8f;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

    .site-footer {
        padding-top: 55px;
        margin-top: 0px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    .footer-bottom-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        font-size: 24px;
    }

}


/*WHATSAPP WIDGET*/

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    height: 62px;

    padding: 0 22px 0 18px;

    border-radius: 60px;

    background: #25D366;

    color: #fff;

    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 12px 30px rgba(37,211,102,0.28);

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(37,211,102,0.35);
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float span {
    white-space: nowrap;
}

/* MOBILE */

@media (max-width: 768px) {

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 58px;
        height: 58px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

}


/*DOOR SPEC SECTION*/


.door-construction-section {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
}

.door-construction-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.door-construction-image img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.door-construction-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
}

.door-construction-content > p {
  margin-top: 20px;
  max-width: 650px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.8;
}

.construction-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.construction-points div {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.1);
}

.construction-points i {
  color: var(--luxury-gold);
  font-size: 26px;
  margin-bottom: 16px;
}

.construction-points h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.construction-points p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .door-construction-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .construction-points {
    grid-template-columns: 1fr;
  }

  .door-construction-section {
    padding: 60px 10px;
  }
}


/*PARALLAX SECTION*/


.door-range-parallax-section {
  position: relative;
  min-height: 100vh;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(224,145,50,0.55) 0%, rgba(224,145,50,0.24) 18%, transparent 42%),
    radial-gradient(circle at 70% 45%, rgba(115,95,38,0.32) 0%, rgba(115,95,38,0.16) 28%, transparent 58%),
    linear-gradient(135deg, #241b13 0%, #12110f 42%, #050713 100%);
}

.door-range-bg {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(120deg, rgba(244,199,93,0.08), transparent 38%),
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 42%);
  transform: translateY(var(--range-bg-y, 0px));
  pointer-events: none;
}

.door-range-parallax-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.door-range-content {
  position: sticky;
  top: 120px;
}

.door-range-content h2 {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -1.6px;
}

.door-range-content p {
  margin-top: 22px;
  max-width: 560px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.8;
}

.door-range-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.door-range-stats div {
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.1);
}

.door-range-stats strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.door-range-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.door-range-btn {
  margin-top: 34px !important;
  width: fit-content;
}

.door-range-image-wrap {
  perspective: 1200px;
}

.door-range-image {
  position: relative;
  transform:
    rotateX(var(--range-rotate-x, 0deg))
    rotateY(var(--range-rotate-y, 0deg))
    translateY(var(--range-card-y, 0px));
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.door-range-image::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(244,199,93,0.20), transparent 42%),
    rgba(255,255,255,0.045);
  filter: blur(0px);
  border: 1px solid rgba(255,255,255,0.10);
}

.door-range-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.42);
}

.door-range-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.20), transparent 28%, transparent 70%, rgba(244,199,93,0.14));
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 980px) {
  .door-range-parallax-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .door-range-content {
    position: static;
  }
}

@media (max-width: 640px) {
  .door-range-parallax-section {
    padding: 65px 10px;
    min-height: auto;
  }

  .door-range-content h2 {
    font-size: 32px;
  }

  .door-range-content p {
    font-size: 14px;
  }

  .door-range-stats {
    grid-template-columns: 1fr;
  }

  .door-range-image::before {
    display: none;
  }

  .door-range-image img {
    border-radius: 12px;
  }

  .door-range-image::after {
    border-radius: 12px;
  }
}



.door-range-parallax-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;

  background-image:
    linear-gradient(
      135deg,
      rgba(5,7,19,0.52) 0%,
      rgba(5,7,19,0.62) 42%,
      rgba(3,4,11,0.74) 100%
    ),
    url("/wp-content/uploads/2026/06/bakground-parallax.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.door-range-parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(244,199,93,0.22), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(216,155,44,0.18), transparent 38%);
  pointer-events: none;
  z-index: 1;
}

.door-range-parallax-section .container,
.door-range-parallax-section .premium-container {
  position: relative;
  z-index: 2;
}

.door-range-bg {
  display: none;
}


@media (max-width: 768px) {
  /*.door-range-parallax-section {*/
  /*  background-attachment: scroll;*/
  /*  background-position: center top;*/
  /*}*/
  
  .door-range-parallax-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;

  background-image:
    linear-gradient(
      135deg,
      rgba(5,7,19,0.52) 0%,
      rgba(5,7,19,0.62) 42%,
      rgba(3,4,11,0.74) 100%
    ),
    url("/wp-content/uploads/2026/06/bakground-parallax.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
}
