*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --cream: #F9F5F0;
      --cream2: #F3EDE4;
      --red: #C8293A;
      --red-dark: #A01E2C;
      --black: #1A1A1A;
      --gray: #6B6B6B;
      --light: #E8E0D5;
      --white: #FFFFFF;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--black);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 4px
    }

    ::-webkit-scrollbar-track {
      background: var(--cream2)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 2px
    }

    /* ── MARQUEE ANNOUNCEMENT ── */
    .marquee-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 30px;
      background: var(--black);
      color: var(--cream2);
      z-index: 1000;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(200, 41, 58, 0.15);
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 35s linear infinite;
    }
    .marquee-content {
      display: flex;
      white-space: nowrap;
      gap: 4rem;
      padding-right: 4rem;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      text-transform: uppercase;
    }
    @keyframes marquee-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 30px;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 0 5%;
      background: rgba(253, 251, 248, 0.94);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(200, 41, 58, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    nav.scrolled {
      top: 0;
      height: 62px;
      background: rgba(253, 251, 248, 0.98);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 42px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: height 0.3s ease;
    }

    nav.scrolled .nav-logo img {
      height: 34px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem;
      list-style: none
    }

    .nav-links a {
      text-decoration: none;
      color: var(--black);
      font-size: .82rem;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      position: relative;
      transition: color .3s
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--red);
      transition: width .3s
    }

    .nav-links a:hover {
      color: var(--red)
    }

    .nav-links a:hover::after {
      width: 100%
    }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: .5rem 1.3rem;
      border-radius: 50px;
      font-size: .8rem !important;
      letter-spacing: .08em;
      transition: background .3s, transform .2s !important
    }

    .nav-cta:hover {
      background: var(--red-dark) !important;
      transform: translateY(-1px)
    }

    .nav-cta::after {
      display: none !important
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      width: 22px;
      height: 1.5px;
      background: var(--black);
      transition: all .3s;
      display: block
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px;
      left: 0;
      right: 0;
      background: var(--cream);
      padding: 2rem 5%;
      border-bottom: 1px solid var(--light);
      z-index: 998;
      flex-direction: column;
      gap: 1.5rem;
      transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    nav.scrolled ~ .mobile-menu {
      top: 62px;
    }

    .mobile-menu a {
      text-decoration: none;
      color: var(--black);
      font-size: .9rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-bottom: 1px solid var(--light);
      padding-bottom: .8rem
    }

    .mobile-menu.open {
      display: flex
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 100px;
      overflow: hidden;
      background: radial-gradient(circle at 12% 35%, rgba(200, 41, 58, 0.04) 0%, transparent 45%),
                  radial-gradient(circle at 88% 75%, rgba(200, 41, 58, 0.02) 0%, transparent 55%),
                  var(--cream);
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5% 5% 5% 7%;
      gap: 1.8rem
    }

    .hero-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .95rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 400
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--black)
    }

    .hero-title em {
      font-style: italic;
      color: var(--red);
    }

    .hero-desc {
      font-size: .95rem;
      color: var(--gray);
      max-width: 400px;
      line-height: 1.8
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: .85rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all .35s ease;
      border: 1px solid var(--red);
      box-shadow: 0 4px 15px rgba(200, 41, 58, 0.2);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
      transform: skewX(-25deg);
      transition: none;
    }
    .btn-primary:hover::before {
      left: 150%;
      transition: left 0.7s ease;
    }
    .btn-primary:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 41, 58, 0.4);
    }

    .btn-secondary {
      border: 1px solid var(--black);
      color: var(--black);
      padding: .85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all .35s ease;
      background: transparent;
    }

    .btn-secondary:hover {
      background: var(--black);
      color: #fff;
      border-color: var(--black);
      transform: translateY(-2px);
    }

    .hero-ships {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .78rem;
      color: var(--gray)
    }

    .hero-ships span {
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      display: inline-block
    }

    .hero-image {
      position: relative;
      background: var(--cream2);
      overflow: visible;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image::after {
      content: '';
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border: 1px solid rgba(200, 41, 58, 0.15);
      pointer-events: none;
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 2;
    }

    .hero-image::before {
      content: '⚜️ MAISON CELLIACO ⚜️';
      position: absolute;
      bottom: 45px;
      right: 45px;
      background: var(--black);
      color: var(--cream);
      border: 1px solid rgba(200, 41, 58, 0.25);
      padding: 0.5rem 1.2rem;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      z-index: 3;
      font-weight: 500;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      pointer-events: none;
    }

    .hero-image img {
      border: 1px solid rgba(200, 41, 58, 0.15);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .hero-image:hover img {
      transform: scale(1.025);
    }

    .hero-image:hover::after {
      top: 8px;
      left: 8px;
      right: 8px;
      bottom: 8px;
      border-color: var(--red);
    }

    .hero-image-overlay {
      position: absolute;
      inset: 30px;
      background: linear-gradient(135deg, rgba(200, 41, 58, .04) 0%, transparent 60%);
      z-index: 1;
      pointer-events: none;
    }

    /* ── HERO SCROLL INDICATOR ── */
    .hero-scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 1rem;
      gap: 0.6rem;
    }
    .hero-scroll-line {
      width: 1px;
      height: 45px;
      background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
      animation: scrollLineBreathe 2s infinite ease-in-out;
      transform-origin: top;
    }
    .hero-scroll-text {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--gray);
      font-weight: 400;
    }
    @keyframes scrollLineBreathe {
      0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
      50% { transform: scaleY(1); opacity: 1; }
    }

    /* ── SECTION COMMONS ── */
    section {
      padding: 6rem 5%
    }

    .section-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .85rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 400;
      margin-bottom: .8rem
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--black);
      line-height: 1.2;
    }

    .section-title em {
      font-style: italic;
      color: var(--red)
    }

    .section-title::after {
      content: '⚜️';
      display: block;
      font-size: 0.9rem;
      color: var(--red);
      margin-top: 0.6rem;
      font-style: normal;
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: normal;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3.8rem;
      position: relative;
    }

    /* ── PRODUCTS ── */
    .products {
      background: var(--white);
      position: relative;
    }
    .products::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1200px;
      height: 100%;
      background: radial-gradient(circle at 50% 250px, rgba(200, 41, 58, 0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.8rem;
      max-width: 880px;
      margin: 0 auto
    }

    .product-card {
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      background: var(--cream);
      transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .6s cubic-bezier(0.165, 0.84, 0.44, 1), border-color .3s;
      cursor: pointer;
      position: relative;
      border: 1px solid rgba(200, 41, 58, 0.1);
      padding: 8px;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 4px;
      left: 4px;
      right: 4px;
      bottom: 4px;
      border: 1px double rgba(200, 41, 58, 0.12);
      border-radius: 10px;
      pointer-events: none;
      transition: border-color 0.4s;
      z-index: 3;
    }

    .product-card:hover::before {
      border-color: rgba(200, 41, 58, 0.35);
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(200, 41, 58, 0.08), 0 10px 20px rgba(0, 0, 0, 0.03);
      border-color: rgba(200, 41, 58, 0.3);
    }

    .product-img {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
      border-radius: 8px;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s
    }

    .product-card:hover .product-img img {
      transform: scale(1.05)
    }

    .product-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--black);
      color: var(--cream2);
      border: 1px solid rgba(200, 41, 58, 0.3);
      font-size: .65rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .3rem .8rem;
      border-radius: 50px;
      font-weight: 500;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      z-index: 4;
    }

    .product-info {
      padding: 1.8rem 1.6rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product-category {
      font-size: .7rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .3rem
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--black);
      margin-bottom: .3rem
    }

    .product-note {
      font-size: .78rem;
      color: var(--gray);
      margin-bottom: .5rem
    }

    .product-action {
      margin-top: .9rem;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .75rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #25D366;
      text-decoration: none;
      font-weight: 600;
      transition: color .3s
    }

    .product-action:hover {
      color: #1EBD5A
    }

    .product-action svg {
      transition: transform .3s
    }

    .product-action:hover svg {
      transform: translateX(4px)
    }

    /* ── COLOR SWATCHES ── */
    .color-swatches {
      display: flex;
      gap: .45rem;
      margin-top: .2rem;
      flex-wrap: wrap;
    }
    .color-swatch {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color .2s, transform .2s;
      flex-shrink: 0;
    }
    .color-swatch:hover {
      transform: scale(1.15);
    }
    .color-swatch.active {
      border-color: var(--red);
      box-shadow: 0 0 0 3px var(--cream) inset, 0 0 8px rgba(200, 41, 58, 0.4);
      transform: scale(1.2);
    }
    .color-label {
      font-size: .7rem;
      color: var(--gray);
      margin-top: .3rem;
      min-height: 1rem;
      letter-spacing: .05em;
    }

    .btn-wa-product {
      background: #25D366;
      color: #fff !important;
      padding: .75rem 1.2rem;
      border-radius: 50px;
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all .35s ease;
      border: 1px solid #25D366;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      text-decoration: none;
      margin-top: 1.4rem;
      width: 100%;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
    }
    .btn-wa-product::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transform: skewX(-25deg);
      transition: none;
    }
    .btn-wa-product:hover::before {
      left: 150%;
      transition: left 0.7s ease;
    }
    .btn-wa-product:hover {
      background: #1EBD5A;
      border-color: #1EBD5A;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    .btn-wa-product svg {
      transition: transform .3s;
    }
    .btn-wa-product:hover svg {
      transform: translateX(4px);
    }

    /* ── SIZE SELECTOR ── */
    .size-selector-wrap {
      margin-top: auto;
    }
    .size-selector-title {
      font-size: .7rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: .4rem;
      font-weight: 500;
      margin-top: 1rem;
    }
    .size-selector {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }
    .size-option {
      width: 40px;
      height: 40px;
      border: 1px solid var(--light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .82rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .25s ease;
      background: var(--white);
      color: var(--black);
    }
    .size-option:hover {
      border-color: var(--red);
      color: var(--red);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(200, 41, 58, 0.08);
    }
    .size-option.active {
      background: var(--black);
      color: var(--cream);
      border-color: var(--black);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(200, 41, 58, 0.2);
      transform: scale(1.05);
    }

    /* placeholder bg styles */
    .bg-sandal {
      background: linear-gradient(145deg, #F0E8DC, #E8D8C4)
    }

    .bg-heel {
      background: linear-gradient(145deg, #E8E0D8, #D4C8BE)
    }

    .bg-slide {
      background: linear-gradient(145deg, #EDE8F0, #DDD4E8)
    }

    .bg-summer {
      background: linear-gradient(145deg, #F0EAE0, #E8D4C0)
    }

    /* ── HOW IT WORKS ── */
    .how {
      background: var(--cream2)
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: calc(16.66% + 1rem);
      right: calc(16.66% + 1rem);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--light), var(--red), var(--light), transparent)
    }

    .step {
      text-align: center;
      padding: 2.5rem 1.5rem
    }

    .step-num {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--red);
      box-shadow: 0 6px 24px rgba(200, 41, 58, 0.06);
      position: relative;
    }

    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: .7rem;
      color: var(--black)
    }

    .step-desc {
      font-size: .85rem;
      color: var(--gray);
      line-height: 1.7
    }

    /* ── REVIEWS ── */
    .reviews {
      background: var(--white)
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem
    }

    .review-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 2.2rem 2rem;
      transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border: 1px solid rgba(200, 41, 58, 0.06);
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(200, 41, 58, 0.04);
      border-color: rgba(200, 41, 58, 0.15);
    }

    .review-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem
    }

    .review-stars span {
      color: var(--red);
      font-size: 1rem
    }

    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--black);
      line-height: 1.7;
      margin-bottom: 1.2rem
    }

    .review-author {
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gray);
      font-weight: 500
    }

    .review-location {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .82rem;
      color: var(--red);
      margin-top: .2rem
    }

    /* ── NOTICE ── */
    .notice {
      background: var(--black);
      color: var(--white);
      text-align: center
    }

    .notice .section-label {
      color: rgba(200, 41, 58, .9)
    }

    .notice .section-title {
      color: var(--white)
    }

    .notice-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3rem
    }

    .notice-item {
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      padding: 2.2rem 1.4rem;
      transition: border-color .4s cubic-bezier(0.165, 0.84, 0.44, 1), transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .notice-item:hover {
      border-color: rgba(200, 41, 58, 0.4);
      transform: translateY(-4px);
    }

    .notice-icon {
      font-size: 1.8rem;
      margin-bottom: 1rem
    }

    .notice-item-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: .5rem
    }

    .notice-item-text {
      font-size: .8rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.7
    }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
      text-align: center
    }

    .cta-section .section-title {
      margin-bottom: 1rem
    }

    .cta-section .hero-desc {
      margin: 0 auto 2.5rem;
      max-width: 420px;
      font-size: .9rem;
      color: var(--gray)
    }

    .cta-ig-handle {
      font-size: .75rem;
      color: var(--gray);
      margin-top: 1rem;
      letter-spacing: .1em
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 1000;
      width: 62px;
      height: 62px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .4s;
      animation: waPulse 3s infinite;
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .wa-float::before {
      content: '⚜️ Consult Concierge';
      position: absolute;
      right: 80px;
      background: var(--black);
      color: var(--cream2);
      border: 1px solid rgba(200, 41, 58, 0.25);
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(15px);
      transition: all 0.35s ease;
      pointer-events: none;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    }

    .wa-float:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .wa-float:hover {
      transform: scale(1.12) translateY(-4px);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.65);
      background: #1EBD5A;
    }

    .wa-float svg {
      width: 32px;
      height: 32px;
      fill: #fff;
    }

    @keyframes waPulse {
      0%,
      100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
      }
      50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.12);
      }
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
      border: 1px solid #25D366;
      padding: .85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all .35s ease;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    }

    .btn-wa:hover {
      background: #1EBD5A;
      border-color: #1EBD5A;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }

    .wa-icon-sm {
      width: 16px;
      height: 16px;
      fill: currentColor
    }

    /* ── FOOTER ── */
    footer {
      background: var(--cream2);
      border-top: 1px solid var(--light);
      padding: 2rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem
    }

    .footer-logo {
      display: flex;
      align-items: center;
    }

    .footer-logo img {
      height: 32px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .footer-text {
      font-size: .78rem;
      color: var(--gray);
      letter-spacing: .05em
    }

    .footer-links {
      display: flex;
      gap: 1.5rem
    }

    .footer-links a {
      font-size: .75rem;
      color: var(--gray);
      text-decoration: none;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color .3s
    }

    .footer-links a:hover {
      color: var(--red)
    }

    /* ── FADE IN ── */
    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity .9s cubic-bezier(0.165, 0.84, 0.44, 1), transform .9s cubic-bezier(0.165, 0.84, 0.44, 1)
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .notice-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:768px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 90px;
      }

      .hero-image {
        height: 50vh;
        order: -1;
        padding: 15px;
      }

      .hero-image::after {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
      }

      .hero-image::before {
        bottom: 25px;
        right: 25px;
        padding: 0.4rem 0.8rem;
        font-size: 0.58rem;
      }

      .hero-content {
        padding: 2rem 5%
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 11;
      }

      .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        display: flex;
        align-items: center;
      }

      .nav-logo img {
        height: 52px !important;
      }

      nav.scrolled .nav-logo img {
        height: 44px !important;
      }

      .hero-scroll-indicator {
        align-items: center;
        align-self: center;
        margin-top: 1.8rem;
      }

      .steps {
        grid-template-columns: 1fr;
        gap: 0
      }

      .steps::before {
        display: none
      }

      .reviews-grid {
        grid-template-columns: 1fr
      }

      footer {
        flex-direction: column;
        text-align: center
      }

      .footer-links {
        justify-content: center
      }

      /* Compact products catalog for tablets */
      .products-grid {
        gap: 1.2rem;
      }
      .product-card {
        border-radius: 12px;
      }
      .product-info {
        padding: 1.2rem 1rem;
      }
      .product-name {
        font-size: 1.2rem;
      }
      .size-option {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
        border-radius: 6px;
      }
      .color-swatch {
        width: 18px;
        height: 18px;
      }
      .btn-wa-product {
        padding: 0.65rem 0.8rem;
        font-size: 0.72rem;
        margin-top: 1rem;
        white-space: nowrap;
      }
    }

    @media(max-width:480px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
      }

      .notice-grid {
        grid-template-columns: 1fr
      }

      .hero-buttons {
        flex-direction: column
      }

      .btn-primary,
      .btn-secondary {
        text-align: center
      }

      /* Ultra-compact products catalog for mobile */
      .product-card {
        border-radius: 10px;
        padding: 4px;
      }
      .product-card::before {
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        border-radius: 8px;
      }
      .product-info {
        padding: 0.8rem 0.6rem;
      }
      .product-category {
        font-size: 0.6rem;
        margin-bottom: 0.1rem;
      }
      .product-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
      }
      .product-note {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
      }
      .size-selector-title {
        font-size: 0.65rem;
        margin-top: 0.6rem;
        margin-bottom: 0.2rem;
      }
      .color-swatches {
        gap: 0.3rem;
        margin-top: 0.1rem;
      }
      .color-swatch {
        width: 16px;
        height: 16px;
      }
      .color-label {
        font-size: 0.62rem;
        margin-top: 0.1rem;
        min-height: auto;
      }
      .size-selector-wrap {
        margin-top: auto;
      }
      .size-selector {
        gap: 0.2rem;
      }
      .size-option {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        border-radius: 5px;
      }
      .btn-wa-product {
        padding: 0.55rem 0.4rem;
        font-size: 0.65rem;
        margin-top: 0.8rem;
        border-radius: 30px;
        gap: 0.25rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
      }
      .btn-wa-product svg {
        width: 10px;
        height: 10px;
      }
    }