:root {
      --bg: #111117;
      --bg-soft: rgba(255, 255, 255, 0.04);
      --surface: rgba(20, 26, 38, 0.92);
      --ink: #f5f5f5;
      --muted: #b3bac4;
      --brand: #d97706;
      --brand-deep: #9a3412;
      --accent: #76d6c4;
      --accent-deep: #1f6f5f;
      --accent-soft: rgba(31, 111, 95, 0.16);
      --line: rgba(255, 255, 255, 0.08);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: #f5f5f5;
      background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 111, 95, 0.12), transparent 26%),
        #111117;
      min-height: 100vh;
      padding-top: 76px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Sora", sans-serif;
    }

    a {
      text-decoration: none;
    }

    .home-shell {
      padding: 1.4rem 0 3rem;
    }

    .glass-panel,
    .feature-card,
    .category-card,
    .spotlight-card,
    .floating-photo,
    .store-card,
    .product-card-home,
    .story-panel,
    .cta-banner {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow);
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      padding: 2rem;
      min-height: 640px;
      background: rgba(255, 255, 255, 0.04);
    }

    .hero-panel::before,
    .hero-panel::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-panel::before {
      width: 260px;
      height: 260px;
      top: -110px;
      right: -70px;
      background: rgba(217, 119, 6, 0.16);
    }

    .hero-panel::after {
      width: 220px;
      height: 220px;
      bottom: -110px;
      left: -60px;
      background: rgba(31, 111, 95, 0.12);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .6rem .9rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--brand-deep);
      font-size: .84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 5.4rem);
      line-height: 1;
      margin: 1.2rem 0 1rem;
      max-width: 10ch;
    }

    .hero-copy,
    .section-copy,
    .feature-card p,
    .category-card p,
    .store-card p,
    .story-panel p,
    .cta-banner p {
      color: var(--muted);
    }

    .hero-actions,
    .hero-stats,
    .quick-links,
    .category-row {
      display: flex;
      flex-wrap: wrap;
      gap: .9rem;
    }

    .btn-brand,
    .btn-soft {
      border-radius: 999px;
      padding: .92rem 1.3rem;
      font-weight: 800;
      border: none;
    }

    .btn-brand {
      color: #fff;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
      box-shadow: 0 14px 28px rgba(154, 52, 18, 0.2);
    }

    .btn-soft {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .hero-stat {
      min-width: 150px;
      padding: 1rem 1.1rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat strong {
      display: block;
      font-size: 1.4rem;
      font-family: "Sora", sans-serif;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
    }

    .main-photo {
      width: 100%;
      height: 560px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .floating-photo {
      position: absolute;
      border-radius: 24px;
      overflow: hidden;
      padding: .55rem;
    }

    .floating-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }

    .floating-photo.top {
      width: 180px;
      height: 200px;
      top: 28px;
      right: -10px;
    }

    .floating-photo.bottom {
      width: 220px;
      height: 170px;
      left: -18px;
      bottom: 28px;
    }

    .spotlight-card {
      position: absolute;
      left: 28px;
      bottom: 30px;
      padding: 1rem 1.1rem;
      border-radius: 24px;
      max-width: 250px;
    }

    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .35rem .7rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: .8rem;
      font-weight: 800;
    }

    .section-block {
      margin-top: 1.8rem;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .feature-card,
    .category-card,
    .store-card,
    .story-panel,
    .product-card-home {
      border-radius: var(--radius-lg);
      padding: 1.3rem;
      height: 100%;
    }

    .feature-icon,
    .category-icon {
      width: 52px;
      height: 52px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .feature-icon {
      color: #fff;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    }

    .category-icon {
      color: var(--brand-deep);
      background: rgba(217, 119, 6, 0.12);
    }

    .category-card,
    .store-card,
    .product-card-home {
      transition: transform .25s ease;
    }

    .category-card:hover,
    .store-card:hover,
    .product-card-home:hover {
      transform: translateY(-6px);
    }

    .store-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .story-panel {
      background: rgba(255, 255, 255, 0.06);
    }

    .story-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .story-gallery img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: var(--shadow);
    }

    .product-card-home .thumb {
      height: 170px;
      background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .product-card-home .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: .75rem;
      margin-bottom: .75rem;
    }

    .price-main {
      font-size: 1.2rem;
      font-weight: 800;
      font-family: "Sora", sans-serif;
    }

    .price-old {
      color: rgba(255, 255, 255, 0.64);
      text-decoration: line-through;
      opacity: .8;
      font-weight: 700;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .45rem .75rem;
      border-radius: 999px;
      /* background: linear-gradient(135deg, #2e5e7b 0%, #1f3744 100%); */
      background: linear-gradient(135deg, #124335 0%, #1f6a55 100%);
      color: #fff;
      font-size: .84rem;
      font-weight: 700;
    }

    .cta-banner {
      border-radius: var(--radius-xl);
      padding: 1.8rem;
      overflow: hidden;
      position: relative;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      top: -110px;
      right: -70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
    }

    .cta-banner.orange {
      color: #fff;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
      border: none;
    }

    .cta-banner.orange p {
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-note {
      text-align: center;
      color: var(--muted);
      margin-top: 2rem;
    }

    @media (max-width: 991.98px) {
      .home-shell {
        padding: 1rem 0 2.25rem;
      }

      .hero-panel {
        min-height: auto;
        padding: 1.5rem;
      }

      .hero-title {
        max-width: none;
      }

      .hero-visual {
        min-height: auto;
      }

      .main-photo {
        height: 430px;
      }

      .section-head {
        align-items: flex-start;
      }

      .floating-photo.top,
      .floating-photo.bottom,
      .spotlight-card {
        position: static;
        margin-top: 1rem;
      }
    }

    @media (max-width: 767.98px) {
      .home-shell {
        padding: 0.85rem 0 2rem;
      }

      .hero-panel {
        border-radius: 22px;
        padding: 1.15rem;
      }

      .eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.06em;
      }

      .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.45rem);
        line-height: 1.1;
        margin: 0.9rem 0 0.75rem;
      }

      .hero-copy {
        font-size: 0.96rem;
      }

      .hero-actions,
      .quick-links {
        gap: 0.65rem;
      }

      .hero-actions .btn,
      .quick-links .btn,
      .section-head .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-stats {
        gap: 0.6rem;
      }

      .hero-stat {
        width: 100%;
        min-width: 0;
        padding: 0.85rem 0.95rem;
      }

      .main-photo {
        height: 330px;
      }

      .floating-photo.top,
      .floating-photo.bottom {
        width: 100%;
        height: 190px;
      }

      .spotlight-card {
        max-width: none;
        width: 100%;
      }

      .section-block {
        margin-top: 1.25rem;
      }

      .section-head {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 0.85rem;
      }

      .story-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .story-gallery img {
        height: 160px;
      }

      .store-card img {
        height: 165px;
      }

      .product-card-home .thumb {
        height: 160px;
      }

      .cta-banner {
        padding: 1.3rem;
      }
    }

    @media (max-width: 575.98px) {
      body {
        padding-top: 72px;
      }

      .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
      }

      .hero-panel {
        border-radius: 18px;
        padding: 1rem;
      }

      .hero-title {
        font-size: clamp(1.7rem, 8.8vw, 2.1rem);
      }

      .hero-stat strong {
        font-size: 1.15rem;
      }

      .main-photo {
        height: 270px;
      }

      .floating-photo.top,
      .floating-photo.bottom {
        height: 160px;
      }

      .story-gallery {
        grid-template-columns: 1fr;
      }

      .story-gallery img {
        height: 220px;
      }
    }