    /* ===================== VARIABLES ===================== */
    :root {
      --walnut: #3E2723;
      --walnut-light: #5D4037;
      --beige: #D7CCC8;
      --cream: #F5F5F5;
      --black: #1C1C1C;
      --gold: #C6A75E;
      --gold-light: #DFC07E;
      --white: #FFFFFF;
      --text-muted: #8D7B75;
      --shadow-soft: 0 8px 40px rgba(62, 39, 35, 0.10);
      --shadow-hover: 0 20px 60px rgba(62, 39, 35, 0.18);
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', sans-serif;
    }

    /* ===================== RESET & BASE ===================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
      font-weight: 300;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--serif);
      font-weight: 400;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===================== LOADING SCREEN ===================== */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--walnut);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-inner {
      text-align: center;
      color: var(--gold);
    }

    .loader-logo {
      font-family: var(--serif);
      font-size: 2.5rem;
      letter-spacing: 0.15em;
      color: var(--white);
      margin-bottom: 8px;
    }

    .loader-tagline {
      font-family: var(--sans);
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .loader-bar {
      width: 120px;
      height: 1px;
      background: rgba(198, 167, 94, 0.3);
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .loader-bar::after {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: var(--gold);
      animation: loaderAnim 1.8s ease forwards;
    }

    @keyframes loaderAnim {
      to {
        left: 100%;
      }
    }

    /* ===================== SCROLL ANIMATIONS ===================== */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in {
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
    }

    /* ===================== NAVBAR ===================== */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: var(--transition);
    }

    #navbar.scrolled {
      background: rgba(28, 28, 28, 0.97);
      backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.6rem;
      color: var(--white);
      letter-spacing: 0.05em;
      font-weight: 500;
    }

    .nav-logo span {
      color: var(--gold);
    }

    .navbar-nav .nav-link {
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8) !important;
      padding: 8px 16px !important;
      transition: color 0.3s ease;
      font-weight: 400;
    }

    .navbar-nav .nav-link:hover {
      color: var(--gold) !important;
    }

    .nav-cta {
      border: 1px solid var(--gold) !important;
      color: var(--gold) !important;
      border-radius: 0 !important;
      padding: 8px 22px !important;
      transition: var(--transition) !important;
    }

    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--black) !important;
    }

    .navbar-toggler {
      border-color: rgba(198, 167, 94, 0.5);
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28198,167,94,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ===================== HERO ===================== */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(28, 28, 28, 0.85) 0%, rgba(62, 39, 35, 0.75) 60%, rgba(28, 28, 28, 0.6) 100%),
        url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?w=1800&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(198, 167, 94, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-family: var(--sans);
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      opacity: 0;
      animation: heroFadeUp 1s ease 0.3s forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 7vw, 6.5rem);
      color: var(--white);
      line-height: 1.05;
      font-weight: 300;
      margin-bottom: 24px;
      opacity: 0;
      animation: heroFadeUp 1s ease 0.5s forwards;
    }

    .hero-title em {
      color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: 0.95rem;
      color: rgba(215, 204, 200, 0.85);
      max-width: 480px;
      line-height: 1.8;
      margin-bottom: 44px;
      letter-spacing: 0.03em;
      opacity: 0;
      animation: heroFadeUp 1s ease 0.7s forwards;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: heroFadeUp 1s ease 0.9s forwards;
    }

    .btn-luxury {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 16px 40px;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      transition: var(--transition);
      cursor: pointer;
      display: inline-block;
    }

    .btn-luxury:hover {
      background: var(--gold-light);
      color: var(--black);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(198, 167, 94, 0.35);
    }

    .btn-luxury-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.5);
      padding: 16px 40px;
      font-family: var(--sans);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 400;
      transition: var(--transition);
      cursor: pointer;
      display: inline-block;
    }

    .btn-luxury-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: heroFadeUp 1s ease 1.2s forwards;
    }

    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(198, 167, 94, 0.8), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }

      from {
        opacity: 0;
        transform: translateY(30px);
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    /* ===================== SECTION LABELS ===================== */
    .section-eyebrow {
      font-family: var(--sans);
      font-size: 0.62rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--walnut);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-title em {
      color: var(--gold);
      font-style: italic;
    }

    .section-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 500px;
      line-height: 1.9;
      letter-spacing: 0.02em;
    }

    /* ===================== CATEGORIES ===================== */
    #categories {
      padding: 100px 0;
      background: var(--cream);
    }

    .category-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
      height: 360px;
      box-shadow: var(--shadow-soft);
    }

    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .category-card:hover img {
      transform: scale(1.1);
    }

    .category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.2) 60%, transparent 100%);
      transition: var(--transition);
    }

    .category-card:hover .category-overlay {
      background: linear-gradient(to top, rgba(62, 39, 35, 0.9) 0%, rgba(62, 39, 35, 0.4) 60%, rgba(62, 39, 35, 0.1) 100%);
    }

    .category-border {
      position: absolute;
      inset: 0;
      border: 0px solid var(--gold);
      transition: border-width 0.4s ease;
      pointer-events: none;
    }

    .category-card:hover .category-border {
      border-width: 2px;
    }

    .category-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px 28px;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .category-card:hover .category-content {
      transform: translateY(0);
    }

    .category-label {
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .category-name {
      font-family: var(--serif);
      font-size: 1.6rem;
      color: var(--white);
      font-weight: 400;
    }

    .category-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0);
      margin-top: 8px;
      transition: var(--transition);
    }

    .category-card:hover .category-arrow {
      color: var(--gold);
    }

    /* ===================== PRODUCTS ===================== */
    #products {
      padding: 100px 0;
      background: var(--white);
    }

    .product-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--beige);
      margin-bottom: 50px;
    }

    .ptab {
      font-family: var(--sans);
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 12px 28px;
      cursor: pointer;
      color: var(--text-muted);
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: var(--transition);
      font-weight: 400;
    }

    .ptab.active,
    .ptab:hover {
      color: var(--walnut);
      border-bottom-color: var(--gold);
    }

    .product-card {
      background: var(--white);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: var(--transition);
      position: relative;
    }

    .product-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-6px);
    }

    .product-img-wrap {
      overflow: hidden;
      height: 280px;
      position: relative;
      background: var(--cream);
    }

    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-img-wrap img {
      transform: scale(1.08);
    }

    .product-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--walnut);
      color: var(--gold);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 10px;
      font-family: var(--sans);
    }

    .product-wish {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .product-wish:hover {
      background: var(--gold);
    }

    .product-wish i {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .product-wish:hover i {
      color: var(--white);
    }

    .product-wish.active i {
      color: #c0392b;
    }

    .product-body {
      padding: 22px 20px 24px;
    }

    .product-cat {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
      font-weight: 400;
    }

    .product-name {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--walnut);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .product-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-price {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--walnut);
    }

    .product-price span {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-left: 6px;
      font-family: var(--sans);
    }

    .btn-view {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--walnut);
      border-bottom: 1px solid var(--walnut);
      padding-bottom: 2px;
      transition: var(--transition);
      font-weight: 500;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      cursor: pointer;
    }

    .btn-view:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    /* product tabs display */
    .product-grid {
      display: none;
    }

    .product-grid.active {
      display: flex;
    }

    /* ===================== PROMO BANNER ===================== */
    #promo {
      min-height: 600px;
      background: linear-gradient(to right, rgba(28, 28, 28, 0.9) 0%, rgba(62, 39, 35, 0.7) 50%, rgba(28, 28, 28, 0.4) 100%),
        url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1800&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    #promo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(198, 167, 94, 0.06) 0%, transparent 60%);
    }

    .promo-eyebrow {
      font-size: 0.62rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      font-family: var(--sans);
    }

    .promo-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 5rem);
      color: var(--white);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .promo-title em {
      color: var(--gold);
      font-style: italic;
    }

    .promo-sub {
      font-size: 0.9rem;
      color: rgba(215, 204, 200, 0.8);
      max-width: 400px;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .promo-deco {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      background: linear-gradient(to left, rgba(198, 167, 94, 0.04), transparent);
    }

    /* ===================== ABOUT ===================== */
    #about {
      padding: 120px 0;
      background: var(--cream);
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-main {
      height: 550px;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: var(--shadow-hover);
    }

    .about-img-accent {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border: 6px solid var(--white);
      border-radius: 2px;
      box-shadow: var(--shadow-hover);
    }

    .about-content {
      padding-left: 40px;
    }

    .about-stats {
      display: flex;
      gap: 40px;
      margin-top: 44px;
      padding-top: 44px;
      border-top: 1px solid var(--beige);
    }

    .about-stat-num {
      font-family: var(--serif);
      font-size: 2.8rem;
      color: var(--walnut);
      line-height: 1;
    }

    .about-stat-num span {
      color: var(--gold);
    }

    .about-stat-label {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* ===================== TESTIMONIALS ===================== */
    #testimonials {
      padding: 100px 0;
      background: var(--walnut);
      position: relative;
      overflow: hidden;
    }

    #testimonials::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 6%;
      font-family: var(--serif);
      font-size: 30rem;
      color: rgba(255, 255, 255, 0.02);
      line-height: 1;
      pointer-events: none;
    }

    #testimonials .section-title {
      color: var(--white);
    }

    #testimonials .section-eyebrow::before,
    #testimonials .section-eyebrow::after {
      background: var(--gold);
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(198, 167, 94, 0.2);
      padding: 40px 36px;
      border-radius: 2px;
      transition: var(--transition);
      height: 100%;
    }

    .testimonial-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(198, 167, 94, 0.5);
      transform: translateY(-4px);
    }

    .testi-stars {
      color: var(--gold);
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .testi-quote {
      font-family: var(--serif);
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 28px;
    }

    .testi-client {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
    }

    .testi-name {
      font-family: var(--serif);
      font-size: 1rem;
      color: var(--white);
    }

    .testi-role {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }

    /* ===================== GALLERY ===================== */
    #gallery {
      padding: 100px 0;
      background: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
    }

    .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
      height: 480px;
    }

    .gallery-item:not(:nth-child(1)) {
      height: 234px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(62, 39, 35, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(62, 39, 35, 0.5);
    }

    .gallery-overlay i {
      color: var(--white);
      font-size: 1.8rem;
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay i {
      opacity: 1;
      transform: scale(1);
    }

    .gallery-overlay i {
      transform: scale(0.7);
    }

    /* ===================== NEWSLETTER / FOOTER ===================== */
    #newsletter {
      padding: 80px 0;
      background: var(--black);
      text-align: center;
    }

    .newsletter-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      margin-bottom: 10px;
    }

    .newsletter-sub {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 36px;
      letter-spacing: 0.05em;
    }

    .newsletter-form {
      display: flex;
      gap: 0;
      max-width: 480px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(198, 167, 94, 0.3);
      border-right: none;
      color: var(--white);
      padding: 14px 20px;
      font-family: var(--sans);
      font-size: 0.82rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .newsletter-input:focus {
      border-color: var(--gold);
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .newsletter-btn {
      background: var(--gold);
      color: var(--black);
      border: none;
      padding: 14px 28px;
      font-family: var(--sans);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background: var(--gold-light);
    }

    footer {
      background: var(--black);
      padding: 80px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-logo {
      font-family: var(--serif);
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: var(--gold);
    }

    .footer-about {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.8;
      max-width: 280px;
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      transition: var(--transition);
      border-radius: 50%;
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-3px);
    }

    .footer-heading {
      font-family: var(--sans);
      font-size: 0.62rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
      font-weight: 500;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer-contact-item i {
      color: var(--gold);
      font-size: 0.85rem;
      margin-top: 2px;
      width: 16px;
    }

    .footer-contact-item span {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.6;
    }

    .footer-divider {
      border-color: rgba(255, 255, 255, 0.07);
      margin: 40px 0 24px;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.05em;
    }

    /* ===================== FLOATING BUTTONS ===================== */
    .float-btns {
      position: fixed;
      bottom: 30px;
      right: 24px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .float-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      border: none;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
      transition: var(--transition);
      text-decoration: none;
    }

    .float-call {
      background: var(--walnut);
      color: var(--gold);
    }

    .float-call:hover {
      background: var(--walnut-light);
      color: var(--gold-light);
      transform: scale(1.1);
    }

    .float-wa {
      background: #25D366;
      color: var(--white);
      animation: waBounce 2s ease infinite;
    }

    .float-wa:hover {
      background: #1da851;
      transform: scale(1.1);
      animation: none;
    }

    @keyframes waBounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    /* ===================== MISC ===================== */
    .gold-line {
      width: 50px;
      height: 2px;
      background: var(--gold);
      margin: 20px auto;
    }

    .gold-line.left {
      margin: 20px 0;
    }

    .divider-ornament {
      text-align: center;
      color: var(--gold);
      font-size: 1rem;
      opacity: 0.6;
      margin: 40px 0;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 992px) {
      .about-content {
        padding-left: 0;
        margin-top: 50px;
      }

      .about-img-accent {
        display: none;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item:nth-child(1) {
        grid-column: span 2;
        height: 320px;
      }

      .gallery-item:not(:nth-child(1)) {
        height: 180px;
      }
    }

    @media (max-width: 768px) {
      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-input {
        border-right: 1px solid rgba(198, 167, 94, 0.3);
      }

      .hero-btns {
        flex-direction: column;
      }

      .btn-luxury,
      .btn-luxury-outline {
        text-align: center;
      }

      .product-tabs {
        overflow-x: auto;
        white-space: nowrap;
      }

      .about-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .footer-bottom {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-item:nth-child(1) {
        grid-column: span 1;
        height: 260px;
      }

      .category-card {
        height: 280px;
      }
    }
  