:root {
      --warm-gold: #d4b85a;
      --warm-gold-dark: #b0892d;
      --soft-cream: #fbf9f2;
      --paper: #f5efe0;
      --charcoal: #2b2b2b;
      --text-muted: #625c53;
      --card-shadow: 0 25px 50px rgba(28, 22, 14, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #fefefe, #f8f5e6);
      color: var(--charcoal);
      line-height: 1.7;
      font-size: 1rem;
      min-height: 100vh;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    section {
      padding: 4rem 1.5rem;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--charcoal);
      line-height: 1.2;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    }

    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: var(--warm-gold);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      z-index: 1000;
    }

    .skip-link:focus {
      top: 16px;
    }

    .floating-shapes {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .floating-shapes span {
      position: absolute;
      border-radius: 50%;
      opacity: 0.08;
      filter: blur(2px);
      animation: float 22s infinite alternate;
    }

    .floating-shapes .shape-primary {
      width: 120px;
      height: 120px;
      background: var(--warm-gold);
      top: 15vh;
      left: 12vw;
    }

    .floating-shapes .shape-secondary {
      width: 80px;
      height: 80px;
      background: #f0d9aa;
      bottom: 10vh;
      right: 10vw;
      animation-delay: 6s;
    }

    @keyframes float {
      0% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-18px) scale(1.05); }
      100% { transform: translateY(0) scale(1); }
    }

    .site-header {
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 20;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .brand img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .brand-title {
      font-size: 1.6rem;
      background: linear-gradient(120deg, var(--warm-gold), #f0d4a3);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
    }

    nav {
      display: flex;
      gap: 1.75rem;
      align-items: center;
    }

    nav a {
      font-weight: 600;
      color: var(--charcoal);
      position: relative;
      padding-bottom: 4px;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--warm-gold);
      transition: all 0.3s ease;
    }

    nav a:hover::after {
      left: 20%;
      width: 60%;
    }

    .mobile-menu-toggle {
      display: none;
      border: 1px solid rgba(0,0,0,0.12);
      background: #fff;
      color: var(--charcoal);
      border-radius: 999px;
      padding: 0.55rem 0.95rem;
      font-weight: 600;
      align-items: center;
      gap: 0.45rem;
      cursor: pointer;
    }

    .mobile-nav-checkbox {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .primary-btn,
    .cta-button {
      background: linear-gradient(120deg, var(--warm-gold), #f0d4a3);
      color: #fff;
      padding: 0.75rem 1.75rem;
      border-radius: 999px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 15px 35px rgba(212, 184, 90, 0.35);
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .primary-btn:hover,
    .cta-button:hover {
      transform: translateY(-2px);
    }

    .ghost-btn {
      border: 1px solid rgba(0,0,0,0.15);
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      font-weight: 600;
      color: var(--charcoal);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 0 3rem 0;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(212,184,90,0.2), transparent 55%);
      z-index: -1;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hero .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(212,184,90,0.12);
      color: var(--warm-gold-dark);
      padding: 0.35rem 1rem;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      margin-bottom: 1rem;
    }

    .hero p {
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }
    .hero-benefits {
      list-style: none;
      margin-top: 1.25rem;
      display: grid;
      gap: 0.75rem;
    }

    .hero-benefits li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .hero-benefits i {
      color: var(--warm-gold);
    }

    .hero-media {
      position: relative;
    }

    .hero-card {
      background: #fff;
      border-radius: 1.25rem;
      padding: 1.5rem;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card img {
      border-radius: 1rem;
      margin-bottom: 1rem;
    }

    .hero-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }

    .stat-grid,
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem 1.5rem;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--warm-gold-dark);
    }

    .trust-grid span {
      text-align: center;
      padding: 1rem;
      border: 1px dashed rgba(0,0,0,0.08);
      border-radius: 999px;
      font-weight: 600;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .section-heading {
      max-width: 760px;
      margin: 0 auto 2rem auto;
      text-align: center;
    }

    .brand-cred {
      max-width: 1200px;
      margin: 0 auto 3rem auto;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .brand-cred p {
      text-transform: uppercase;
      letter-spacing: 0.25rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      text-align: center;
    }

    .logo-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
      text-align: center;
    }

    .logo-row span {
      font-weight: 600;
      color: rgba(33, 30, 25, 0.65);
      letter-spacing: 0.05rem;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 8px;
      background: #fff;
    }

    .section-heading p {
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    .filter-bar {
      max-width: 1200px;
      margin: 0 auto 2rem auto;
      padding: 0 1.5rem;
      text-align: center;
    }

    .filter-controls {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .filter-controls input,
    .filter-controls select {
      padding: 0.75rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.12);
      min-width: 240px;
      font-size: 1rem;
      background: #fff;
    }

    .filter-hint {
      color: var(--text-muted);
      margin-top: 0.75rem;
      font-size: 0.9rem;
    }

    .product-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .featured-products {
      padding: 4rem 1.5rem;
    }

    .product {
      background: #fff;
      border-radius: 1.25rem;
      padding: 1.5rem;
      position: relative;
      box-shadow: 0 15px 30px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--warm-gold);
      color: #fff;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .product img {
      border-radius: 0.75rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .product ul {
      list-style: none;
      color: var(--text-muted);
      font-size: 0.95rem;
      display: grid;
      gap: 0.35rem;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--warm-gold-dark);
    }

    .product-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .article-list {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .article-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      text-align: left;
    }

    .article-card h3 a {
      color: var(--charcoal);
    }

    .article-card p {
      color: var(--text-muted);
    }

    .article-body {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border-radius: 1.25rem;
      padding: 2.5rem;
      box-shadow: 0 20px 45px rgba(0,0,0,0.07);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .article-body h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .article-body p {
      margin-bottom: 1rem;
      color: var(--text-muted);
    }

    .article-body ul {
      margin: 1rem 0 1rem 1.5rem;
      color: var(--text-muted);
    }


    .add-to-cart-btn {
      flex: 1;
      min-width: 160px;
      border: none;
      border-radius: 999px;
      padding: 0.75rem 1rem;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(120deg, var(--warm-gold), #f0d4a3);
      color: #fff;
      box-shadow: 0 12px 24px rgba(212,184,90,0.3);
    }

    .ghost-btn.outline {
      border-color: rgba(0,0,0,0.08);
      color: var(--text-muted);
    }

    .section-cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    .collections {
      background: var(--soft-cream);
    }

    .collection-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.25rem;
    }

    .collection-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 1.25rem;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .collection-card h3 {
      margin-bottom: 0.5rem;
    }

    .collection-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .shop-showcase {
      max-width: 1200px;
      margin: 0 auto;
    }

    .carousel-container {
      overflow: hidden;
      border-radius: 1.25rem;
      border: 1px solid rgba(0,0,0,0.05);
      background: #fff;
      box-shadow: var(--card-shadow);
    }

    .carousel-track {
      display: flex;
      gap: 1.5rem;
      padding: 2rem;
      animation: scroll-carousel 35s linear infinite;
      width: max-content;
    }

    .carousel-card {
      min-width: 320px;
      border-radius: 1rem;
      padding: 1.5rem;
      background: var(--soft-cream);
      border: 1px solid rgba(0,0,0,0.04);
    }

    .carousel-card h4 {
      margin-bottom: 0.5rem;
    }

    .carousel-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .carousel-container:hover .carousel-track {
      animation-play-state: paused;
    }

    @keyframes scroll-carousel {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .testimonials {
      background: #fff;
    }

    .testimonial-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--soft-cream);
      border-radius: 1.25rem;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    }

    .testimonial-card p {
      color: var(--charcoal);
      margin-bottom: 0.75rem;
    }

    .testimonial-card span {
      font-weight: 600;
      color: var(--text-muted);
    }

    .value-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1rem;
    }

    .brand-story {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      align-items: stretch;
    }

    .story-text {
      background: #fff7ea;
      padding: 2rem;
      border-radius: 1.25rem;
      box-shadow: 0 15px 30px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.03);
    }

    .story-text h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .story-text p {
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .story-points {
      display: grid;
      gap: 1rem;
    }

    .story-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    }

    .story-card h4 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      color: var(--warm-gold-dark);
    }

    .story-card p {
      color: var(--text-muted);
      margin: 0;
      font-size: 0.95rem;
    }

    .contact-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .contact-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      text-align: center;
    }

    .contact-form {
      background: #fff7ea;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 0.9rem 1rem;
      border-radius: 0.75rem;
      border: 1px solid rgba(0,0,0,0.1);
      font-family: inherit;
    }


    .value-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.25rem;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.05);
    }

    .value-card i {
      font-size: 1.8rem;
      color: var(--warm-gold);
      margin-bottom: 0.5rem;
    }

    .newsletter {
      background: var(--soft-cream);
      text-align: center;
    }

    .newsletter-form {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .newsletter input[type="email"] {
      padding: 0.9rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,0.1);
      min-width: 260px;
    }

    .cta-panel {
      max-width: 1100px;
      margin: 0 auto 4rem auto;
      background: linear-gradient(135deg, var(--warm-gold), #f0d4a3);
      border-radius: 1.5rem;
      padding: 3rem;
      color: #1f1708;
      box-shadow: 0 30px 60px rgba(212,184,90,0.35);
    }

    .cta-panel h2 {
      color: #1f1708;
      margin-bottom: 1rem;
    }

    .cta-panel p {
      color: #3d2f14;
      max-width: 640px;
    }

    .cta-panel .cta-actions {
      margin-top: 1.5rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    footer {
      padding: 2rem 1.5rem;
      text-align: center;
      background: #1f1b15;
      color: #f5f0e6;
    }

    #backToTop {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--warm-gold);
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 15px 25px rgba(0,0,0,0.2);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 30;
    }

    #backToTop.show {
      opacity: 1;
      pointer-events: auto;
    }
    .cart-container {
      position: relative;
      margin-left: 1.5rem;
    }

    .cart-icon-btn {
      border: none;
      background: rgba(0,0,0,0.05);
      border-radius: 999px;
      padding: 0.4rem 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
    }

    .cart-icon {
      font-size: 1.2rem;
    }

    .cart-count {
      background: var(--warm-gold);
      color: #fff;
      border-radius: 999px;
      padding: 0.1rem 0.45rem;
      font-size: 0.85rem;
      display: none;
    }

    .cart-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: none;
      z-index: 50;
      padding: 2rem 1rem;
    }

    .cart-modal-content {
      background: #fff;
      border-radius: 1rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: 2rem;
      padding: 1.5rem;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--card-shadow);
    }

    .cart-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .close-cart {
      border: none;
      background: transparent;
      font-size: 1.4rem;
      cursor: pointer;
    }

    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cart-item {
      display: flex;
      gap: 0.75rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding-bottom: 1rem;
    }

    .cart-item-image {
      width: 64px;
      height: 64px;
      border-radius: 0.5rem;
      object-fit: cover;
    }

    .cart-total {
      margin-top: 1rem;
      font-size: 1.2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-actions {
      margin-top: 1rem;
      display: flex;
      justify-content: flex-end;
    }

    .checkout-btn {
      border: none;
      border-radius: 999px;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      background: linear-gradient(120deg, var(--warm-gold), #f0d4a3);
      color: #fff;
      cursor: pointer;
    }

    .cart-notification {
      position: fixed;
      top: 16px;
      right: 16px;
      background: #fff;
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      box-shadow: var(--card-shadow);
      z-index: 60;
      animation: fadeOut 3s forwards;
    }

    @keyframes fadeOut {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(-10px); }
    }

    @media (max-width: 900px) {
      .site-header {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.95rem 1rem;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }

      nav {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.55rem;
        border-radius: 0.85rem;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.98);
      }

      nav.open {
        display: flex;
      }

      .mobile-nav-checkbox:checked ~ nav {
        display: flex;
      }

      nav a {
        padding: 0.55rem 0.75rem;
        border-radius: 0.6rem;
      }

      nav a::after {
        display: none;
      }

      nav a:hover {
        background: rgba(212,184,90,0.12);
      }

      .cart-container {
        order: 3;
        margin-left: auto;
        margin-right: 0.25rem;
      }

      .cart-modal-content {
        margin: 0 auto;
        width: 100%;
      }

    }

    @media (max-width: 640px) {
      section {
        padding: 3rem 1rem;
      }

      .hero {
        padding-top: 3rem;
      }

      .product-actions {
        flex-direction: column;
      }

      .site-header {
        padding: 1rem;
      }

      .hero h1 {
        font-size: clamp(2.1rem, 7.4vw, 2.55rem);
      }

      .carousel-card {
        min-width: 260px;
      }

      .cta-panel {
        padding: 2rem;
      }
    }
