
    :root {
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dark: #8f6a1e;
      --black: #0a0a0a;
      --dark: #111111;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --dark4: #2c2c2c;
      --gray: #888888;
      --light-gray: #cccccc;
      --white: #f5f0e8;
      --whatsapp: #25d366;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ── SELECTION ── */
    ::selection { background: var(--gold); color: var(--black); }

    /* ── TYPOGRAPHY ── */
    .display-font { font-family: 'Playfair Display', serif; }
    .serif { font-family: 'Cormorant Garamond', serif; }
    .gold { color: var(--gold); }
    .gold-light { color: var(--gold-light); }

    /* ── GOLD LINE DIVIDER ── */
    .gold-line {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 1rem auto;
    }
    .gold-line-left {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 1rem 0;
    }

    /* ── BUTTONS ── */
    .btn-gold {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
      color: var(--black);
      border: none;
      font-family: 'Jost', sans-serif;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 0.75rem;
      padding: 0.75rem 2rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-gold::before {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      transition: left 0.4s ease;
    }
    .btn-gold:hover::before { left: 0; }
    .btn-gold span { position: relative; z-index: 1; }
    .btn-gold:hover { color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }

    .btn-outline-gold {
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 0.75rem;
      padding: 0.75rem 2rem;
      transition: all 0.3s ease;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--black);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(201,168,76,0.3);
    }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed;
      bottom: 30px; right: 30px;
      z-index: 9999;
      width: 60px; height: 60px;
      background: var(--whatsapp);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .whatsapp-float:hover {
      transform: scale(1.15);
      box-shadow: 0 8px 30px rgba(37,211,102,0.7);
    }
    .whatsapp-float i { color: #fff; font-size: 1.8rem; }
    .whatsapp-tooltip {
      position: fixed;
      bottom: 42px; right: 100px;
      z-index: 9998;
      background: var(--dark2);
      color: var(--white);
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      font-size: 0.8rem;
      white-space: nowrap;
      border: 1px solid var(--gold);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .whatsapp-float:hover + .whatsapp-tooltip { opacity: 1; }

    /* ── NAVBAR ── */
    #mainNav {
      background: rgba(10,10,10,0.0);
      transition: all 0.5s ease;
      padding: 1.2rem 0;
    }
    #mainNav.scrolled {
      background: rgba(10,10,10,0.97);
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.2);
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--gold) !important;
      letter-spacing: 3px;
      text-transform: uppercase;
    }
    .navbar-brand span { color: var(--white); }
    .nav-link {
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 0.72rem;
      color: var(--light-gray) !important;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 1px; background: var(--gold);
      transition: all 0.3s;
    }
    .nav-link:hover::after, .nav-link.active::after { left: 10%; right: 10%; }
    .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
    .navbar-toggler { border-color: var(--gold); }
    .navbar-toggler-icon { filter: invert(1); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -1px;
    }
    .hero-title .outline-text {
      -webkit-text-stroke: 1px var(--gold);
      color: transparent;
    }
    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.4rem);
      color: var(--gray);
      letter-spacing: 4px;
      text-transform: uppercase;
      font-weight: 300;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      font-family: 'Jost', sans-serif;
      margin-bottom: 1.5rem;
    }
    .hero-watch-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .watch-ring {
      width: 380px; height: 380px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.15);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      animation: rotateRing 20s linear infinite;
    }
    .watch-ring::before {
      content: '';
      position: absolute; inset: 15px;
      border-radius: 50%;
      border: 1px dashed rgba(201,168,76,0.1);
    }
    @keyframes rotateRing { to { transform: rotate(360deg); } }
    .watch-face {
      width: 240px; height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #2a2218, #0d0c0a);
      border: 8px solid #2a2010;
      box-shadow:
        0 0 0 2px rgba(201,168,76,0.3),
        0 0 60px rgba(201,168,76,0.1),
        inset 0 0 30px rgba(0,0,0,0.5);
      position: relative;
      display: flex; align-items: center; justify-content: center;
      animation: counterRotate 20s linear infinite;
    }
    @keyframes counterRotate { to { transform: rotate(-360deg); } }
    .watch-crown {
      width: 12px; height: 30px;
      background: linear-gradient(var(--gold-dark), var(--gold));
      border-radius: 2px;
      position: absolute;
      right: -18px; top: 50%;
      transform: translateY(-50%);
    }
    .watch-hand-hour, .watch-hand-min, .watch-hand-sec {
      position: absolute;
      bottom: 50%; left: 50%;
      transform-origin: bottom center;
      border-radius: 2px;
    }
    .watch-hand-hour {
      width: 3px; height: 60px;
      background: var(--white);
      margin-left: -1.5px;
    }
    .watch-hand-min {
      width: 2px; height: 80px;
      background: var(--light-gray);
      margin-left: -1px;
    }
    .watch-hand-sec {
      width: 1px; height: 90px;
      background: var(--gold);
      margin-left: -0.5px;
    }
    .watch-center-dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      z-index: 10;
    }
    .tick-marks {
      position: absolute; inset: 10px; border-radius: 50%;
    }
    .tick {
      position: absolute; width: 100%; height: 100%;
      display: flex; align-items: flex-start; justify-content: center;
    }
    .tick span {
      display: block;
      width: 1px; height: 8px;
      background: rgba(201,168,76,0.5);
    }
    .tick.major span {
      width: 2px; height: 14px;
      background: var(--gold);
    }

    /* ── SECTION BASE ── */
    section { padding: 6rem 0; }
    .section-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
    }

    /* ── STATS BAR ── */
    #stats {
      background: var(--dark2);
      padding: 3rem 0;
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .stat-item { text-align: center; padding: 1rem; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 0.3rem;
    }
    .stat-divider {
      width: 1px;
      background: rgba(201,168,76,0.2);
      align-self: stretch;
    }

    /* ── CATEGORIES ── */
    #categories { background: var(--dark); }
    .category-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid rgba(201,168,76,0.1);
      transition: all 0.4s ease;
      background: var(--dark2);
    }
    .category-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.1);
    }
    .category-icon-wrap {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--dark3), var(--dark4));
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      margin: 2rem auto 1rem;
      transition: all 0.4s;
    }
    .category-card:hover .category-icon-wrap {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      border-color: var(--gold);
    }
    .category-icon-wrap i { font-size: 2rem; color: var(--gold); transition: color 0.4s; }
    .category-card:hover .category-icon-wrap i { color: var(--black); }
    .category-card .card-body { text-align: center; padding: 1rem 1.5rem 2rem; }
    .category-card .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .category-card .card-text { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
    .category-count {
      display: inline-block;
      background: rgba(201,168,76,0.1);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      font-size: 0.65rem;
      letter-spacing: 2px;
      padding: 0.2rem 0.7rem;
      margin-top: 0.8rem;
      text-transform: uppercase;
    }

    /* ── PRODUCTS ── */
    #products { background: var(--black); }
    .filter-tabs { border-bottom: 1px solid rgba(201,168,76,0.15); margin-bottom: 3rem; }
    .filter-tab {
      background: none; border: none; outline: none;
      color: var(--gray);
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.8rem 1.5rem;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }
    .filter-tab.active, .filter-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }

    .product-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.08);
      transition: all 0.4s ease;
      overflow: hidden;
      position: relative;
    }
    .product-card:hover {
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    }
    .product-img-wrap {
      background: linear-gradient(135deg, #1a1812, #0f0e0c);
      padding: 2rem;
      display: flex; align-items: center; justify-content: center;
      min-height: 200px;
      position: relative;
      overflow: hidden;
    }
    .product-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.05), transparent 70%);
    }
    .product-emoji { font-size: 5rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
    .product-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--gold);
      color: var(--black);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 0.25rem 0.6rem;
      text-transform: uppercase;
    }
    .product-badge.sale { background: #c0392b; color: #fff; }
    .product-badge.new { background: var(--gold); }
    .product-info { padding: 1.5rem; }
    .product-brand {
      font-size: 0.65rem;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .product-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; margin-bottom: 1rem; }
    .product-price .current { font-size: 1.2rem; color: var(--gold); font-weight: 600; }
    .product-price .old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; margin-left: 0.5rem; }
    .product-stars { color: var(--gold); font-size: 0.75rem; }
    .btn-whatsapp {
      background: linear-gradient(135deg, #128c7e, #25d366);
      color: #fff;
      border: none;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.6rem 1.2rem;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.4rem;
      width: 100%; justify-content: center;
    }
    .btn-whatsapp:hover {
      color: #fff; transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    }

    /* ── PROMOTIONS ── */
    #promotions { background: var(--dark); }
    .promo-card {
      background: linear-gradient(135deg, var(--dark2), var(--dark3));
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }
    .promo-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%;
      background: linear-gradient(var(--gold-dark), var(--gold-light));
    }
    .promo-card:hover { border-color: var(--gold); transform: translateY(-3px); }
    .promo-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .promo-tag {
      display: inline-block;
      background: rgba(201,168,76,0.1);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 2px;
      padding: 0.3rem 0.8rem;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .promo-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.5rem; }
    .promo-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
    .promo-discount {
      position: absolute; top: 1.5rem; right: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      opacity: 0.15;
    }

    /* ── COMPARE ── */
    #compare { background: var(--black); }
    .compare-table {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      overflow: hidden;
    }
    .compare-table table { margin: 0; }
    .compare-table thead th {
      background: var(--dark3);
      color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-color: rgba(201,168,76,0.15);
      padding: 1rem;
      font-weight: 500;
    }
    .compare-table tbody tr { transition: background 0.2s; }
    .compare-table tbody tr:hover { background: rgba(201,168,76,0.04); }
    .compare-table td {
      color: var(--light-gray);
      border-color: rgba(201,168,76,0.08);
      font-size: 0.9rem;
      padding: 0.9rem 1rem;
      vertical-align: middle;
    }
    .compare-table td.feature-name { color: var(--gray); font-size: 0.8rem; letter-spacing: 1px; }
    .compare-table td i.bi-check-circle-fill { color: #2ecc71; }
    .compare-table td i.bi-x-circle-fill { color: #e74c3c; }
    .watch-selector select {
      background: var(--dark3);
      color: var(--white);
      border: 1px solid rgba(201,168,76,0.3);
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      padding: 0.7rem 1rem;
      width: 100%;
    }
    .watch-selector select:focus { outline: none; border-color: var(--gold); box-shadow: none; }
    .watch-selector label { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

    /* ── ABOUT ── */
    #about { background: var(--dark); }
    .about-img-wrap {
      position: relative;
      padding: 2rem;
    }
    .about-img-wrap::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 70%; height: 70%;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
    }
    .about-img-wrap::after {
      content: '';
      position: absolute; bottom: 0; right: 0;
      width: 70%; height: 70%;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }
    .about-inner {
      background: linear-gradient(135deg, var(--dark2), var(--dark3));
      border: 1px solid rgba(201,168,76,0.1);
      padding: 3rem;
      position: relative; z-index: 1;
    }
    .about-inner-emoji { font-size: 8rem; text-align: center; margin-bottom: 1rem; }
    .value-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
    .value-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .value-title { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.2rem; }
    .value-desc { color: var(--gray); font-size: 0.83rem; }

    /* ── FEEDBACK ── */
    #feedback { background: var(--black); }
    .review-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.08);
      padding: 2rem;
      position: relative;
      transition: all 0.3s;
    }
    .review-card:hover { border-color: rgba(201,168,76,0.25); }
    .review-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      color: rgba(201,168,76,0.08);
      position: absolute; top: -10px; left: 1rem;
      line-height: 1;
    }
    .reviewer-avatar {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--black);
      font-weight: 700; font-size: 1.1rem;
      font-family: 'Playfair Display', serif;
    }
    .reviewer-name { font-family: 'Playfair Display', serif; font-size: 1rem; }
    .reviewer-date { font-size: 0.75rem; color: var(--gray); }
    .review-text { color: var(--light-gray); font-size: 0.88rem; line-height: 1.7; }

    /* ── FEEDBACK FORM ── */
    .feedback-form-wrap {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2.5rem;
    }
    .form-control-dark {
      background: var(--dark3) !important;
      border: 1px solid rgba(201,168,76,0.2) !important;
      color: var(--white) !important;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      padding: 0.8rem 1rem;
      border-radius: 0;
      transition: border-color 0.3s;
    }
    .form-control-dark:focus {
      border-color: var(--gold) !important;
      box-shadow: 0 0 0 2px rgba(201,168,76,0.1) !important;
      outline: none;
    }
    .form-control-dark::placeholder { color: var(--gray); }
    .form-label-dark {
      color: var(--gold);
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }
    .star-rating { display: flex; gap: 0.3rem; flex-direction: row-reverse; justify-content: flex-end; }
    .star-rating input { display: none; }
    .star-rating label {
      font-size: 1.5rem; color: var(--dark4); cursor: pointer;
      transition: color 0.2s;
    }
    .star-rating label:hover, .star-rating label:hover ~ label,
    .star-rating input:checked ~ label { color: var(--gold); }
    .invalid-feedback { font-size: 0.75rem; color: #e74c3c !important; display: none; }
    .form-control-dark.is-invalid { border-color: #e74c3c !important; }
    .form-control-dark.is-invalid ~ .invalid-feedback { display: block; }
    .was-validated .form-control-dark:invalid { border-color: #e74c3c !important; }
    .success-msg { display: none; background: rgba(46,204,113,0.1); border: 1px solid #2ecc71; color: #2ecc71; padding: 1rem; font-size: 0.88rem; }

    /* ── CONTACT ── */
    #contact { background: var(--dark); }
    .contact-info-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.1);
      padding: 2rem;
      display: flex; gap: 1rem; align-items: flex-start;
      transition: all 0.3s;
      margin-bottom: 1rem;
    }
    .contact-info-card:hover { border-color: var(--gold); }
    .contact-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem;
    }
    .contact-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
    .contact-value { color: var(--white); font-size: 0.9rem; margin-top: 0.2rem; }
    .contact-form-wrap {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.15);
      padding: 2.5rem;
    }

    /* ── LOCATIONS ── */
    .location-card {
      background: var(--dark3);
      border: 1px solid rgba(201,168,76,0.1);
      padding: 1.5rem;
      margin-bottom: 0.8rem;
      transition: all 0.3s;
    }
    .location-card:hover { border-color: var(--gold); }
    .location-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
    .location-addr { color: var(--gray); font-size: 0.83rem; margin-top: 0.3rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark2);
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 4rem 0 1.5rem;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: 3px;
    }
    .footer-tagline { color: var(--gray); font-size: 0.83rem; margin-top: 0.5rem; }
    .footer-heading {
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: var(--gray); font-size: 0.85rem; text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .social-links { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray); font-size: 1rem;
      transition: all 0.3s; text-decoration: none;
    }
    .social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
    .footer-bottom {
      border-top: 1px solid rgba(201,168,76,0.1);
      padding-top: 1.5rem; margin-top: 2.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p { color: var(--gray); font-size: 0.8rem; margin: 0; }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: all 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-in { opacity: 0; transition: opacity 0.7s ease; }
    .fade-in.visible { opacity: 1; }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed; bottom: 100px; right: 30px;
      width: 44px; height: 44px;
      background: var(--dark2);
      border: 1px solid var(--gold);
      color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      z-index: 999;
      transition: all 0.3s;
      opacity: 0; pointer-events: none;
    }
    #backToTop.visible { opacity: 1; pointer-events: all; }
    #backToTop:hover { background: var(--gold); color: var(--black); }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .watch-ring { width: 280px; height: 280px; }
      .watch-face { width: 180px; height: 180px; }
      .watch-hand-hour { height: 45px; }
      .watch-hand-min { height: 60px; }
      .watch-hand-sec { height: 68px; }
    }
    @media (max-width: 767px) {
      section { padding: 4rem 0; }
      .hero-watch-visual { margin-top: 3rem; }
      .watch-ring { width: 220px; height: 220px; }
      .watch-face { width: 140px; height: 140px; }
      .watch-hand-hour { height: 35px; }
      .watch-hand-min { height: 48px; }
      .watch-hand-sec { height: 55px; }
      .watch-emoji-size { font-size: 3.5rem !important; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .filter-tabs { overflow-x: auto; white-space: nowrap; }
      .compare-table { overflow-x: auto; display: block; }
    }
    @media (max-width: 575px) {
      .promo-discount { display: none; }
      .feedback-form-wrap, .contact-form-wrap { padding: 1.5rem; }
    }

    /* ── MODAL ── */
    .modal-content {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 0;
      color: var(--white);
    }
    .modal-header { border-bottom: 1px solid rgba(201,168,76,0.15); }
    .modal-title { font-family: 'Playfair Display', serif; color: var(--gold); }
    .btn-close { filter: invert(1) brightness(0.7); }
    .modal-body .product-detail-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--white);
    }
    .modal-body .detail-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; align-items: baseline; }
    .modal-body .detail-label { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; min-width: 100px; }
    .modal-body .detail-val { color: var(--light-gray); font-size: 0.88rem; }

    /* Newsletter */
    #newsletter { background: linear-gradient(135deg, #0f0e0c, #1a1710); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 4rem 0; }
    .newsletter-input-wrap { display: flex; max-width: 500px; }
    .newsletter-input {
      flex: 1;
      background: var(--dark3);
      border: 1px solid rgba(201,168,76,0.3);
      border-right: none;
      color: var(--white);
      padding: 0.8rem 1.2rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      outline: none;
    }
    .newsletter-input:focus { border-color: var(--gold); }
    .newsletter-input::placeholder { color: var(--gray); }
  


.cat-btn {
  border: 2px solid;
  padding: 5px 10px;
  color: rgba(201,168,76,0.3) ;
  text-decoration: none;   /* underline remove */
  border-radius: 6px;
  display: inline-block;
}

.cat-btn:hover {
  background: rgba(201,168,76,0.3) ;
  color: #947216  ;
}