  :root {
    --gold: #B88A4A;
    --gold-light: #D4AA6B;
    --gold-dark: #8F6A35;
    --gold-soft: #E9D6B5;
    --gold-grad: linear-gradient(135deg, #B88A4A 0%, #D4AA6B 100%);
    --navy: #0B1220;
    --navy-2: #111A2C;
    --cream: #FAF6EF;
    --cream-warm: #F5EDE0;
    --border-soft: #EDE4D3;
    --text-body: #4A4A4A;
    --text-muted: #888078;
    --text-strong: #1A1D24;
    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --container: 1200px;
    --shadow-card: 0 1px 2px rgba(26,29,36,0.04), 0 8px 24px rgba(184,138,74,0.06), 0 18px 36px rgba(26,29,36,0.05);
    --shadow-hover: 0 4px 8px rgba(26,29,36,0.06), 0 16px 36px rgba(184,138,74,0.18), 0 28px 56px rgba(26,29,36,0.08);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; overflow-x: hidden; }
  body {
    font-family: var(--sans);
    color: var(--text-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
  img { display: block; max-width: 100%; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

  /* ===== Top Bar ===== */
  .topbar {
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 11px 16px;
    font-weight: 400;
  }

  /* ===== Header ===== */
  .header {
    background: #fff;
    padding: 18px 0;
    position: sticky; top: 0; z-index: 50;
    border-bottom: 1px solid rgba(237, 228, 211, 0.5);
  }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
  }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-mark {
    font-family: var(--serif);
    font-size: 56px;
    line-height: 0.9;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: -0.04em;
  }
  .brand-text { display: flex; flex-direction: column; line-height: 1; }
  .brand-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-strong);
    letter-spacing: 0.01em;
  }
  .brand-tag {
    font-size: 8.5px;
    letter-spacing: 0.22em;
    color: var(--text-strong);
    margin-top: 6px;
    font-weight: 500;
  }
  .nav { display: flex; gap: 44px; justify-content: center; }
  .nav a {
    font-size: 15px;
    color: var(--text-strong);
    padding: 6px 2px;
    position: relative;
    transition: color .25s ease;
  }
  .nav a.active { color: var(--gold); }
  .nav a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
    height: 1.5px; background: var(--gold);
  }
  .nav a:hover { color: var(--gold); }
  .nav a:not(.active):hover::after {
    content: ''; position: absolute; left: 50%; right: 50%; bottom: -3px;
    height: 1.5px; background: var(--gold);
    animation: underline .25s forwards;
  }
  @keyframes underline { to { left: 0; right: 0; } }
  .header-end { display: flex; align-items: center; gap: 22px; }
  .region {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; color: var(--text-strong);
  }
  .region svg { width: 10px; height: 10px; }
  .icon-btn {
    width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-strong);
    border-radius: 50%;
    transition: background .2s ease, color .2s ease;
    position: relative;
  }
  .icon-btn:hover { background: var(--cream-warm); color: var(--gold); }
  .icon-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
  .cart-count {
    position: absolute; top: -2px; right: -2px;
    background: var(--gold); color: #fff;
    font-size: 10px; font-weight: 600;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: #0a0a0a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1800&q=85');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(1.1) saturate(1.1);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%),
      radial-gradient(ellipse at 75% 50%, rgba(184,138,74,0.18) 0%, transparent 60%);
  }
  .hero-content {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 76px;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    max-width: 540px;
  }
  .hero-sub {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    color: var(--gold-light);
    margin: 0 0 36px 0;
    line-height: 1.3;
    max-width: 460px;
  }
  .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    padding: 13px 26px;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all .25s ease;
    box-shadow: 0 2px 12px rgba(184,138,74,0.35);
    position: relative;
    overflow: hidden;
  }
  .btn-gold::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: translateX(-101%);
    transition: transform .35s ease;
  }
  .btn-gold span { position: relative; z-index: 1; }
  .btn-gold:hover::before { transform: translateX(0); }
  .btn-gold:hover { box-shadow: 0 6px 20px rgba(184,138,74,0.5); transform: translateY(-1px); }
  .btn-gold.btn-sm {
    padding: 9px 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .btn-gold.btn-pill { border-radius: 999px; }

  .hero-cta { width: fit-content; }

  /* ===== Section Heading ===== */
  .section { padding: 70px 0 60px; }
  .section-title {
    text-align: center;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 36px;
    color: var(--text-strong);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
  }
  .section-title-rule {
    width: 50px; height: 1.5px; background: var(--gold);
    margin: 6px auto 38px;
  }

  /* ===== Categories ===== */
  .categories-wrap {
    margin-top: -2px;
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
  }
  .categories-card {
    max-width: var(--container);
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 40px 32px 28px;
    box-shadow: 0 1px 2px rgba(26,29,36,0.03), 0 12px 32px rgba(184,138,74,0.05);
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
  .cat-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform .3s ease;
  }
  .cat-item:hover { transform: translateY(-4px); }
  .cat-circle {
    width: 124px; height: 124px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    padding: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: box-shadow .3s ease, border-color .3s ease;
    background: #fff;
  }
  .cat-item:hover .cat-circle {
    box-shadow: 0 8px 24px rgba(184,138,74,0.2);
    border-color: var(--gold-light);
  }
  .cat-circle-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #0d0d0d;
    display: flex; align-items: center; justify-content: center;
  }
  .cat-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-strong);
    text-align: center;
    line-height: 1.3;
    max-width: 110px;
  }
  .cat-cta { display: flex; justify-content: center; margin-top: 36px; }

  /* ===== Products ===== */
  .products-section {
    background: #fff;
    padding: 50px 0 50px;
  }
  .slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .slider-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
  .slider-track.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 18px 16px 18px;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: pointer;
    min-width: 0;
  }
  .product-img svg { width: 100%; height: auto; max-width: 180px; max-height: 180px; }
  .cat-circle-inner svg { width: 100%; height: 100%; object-fit: contain; }
  .why-icon svg { width: 56px !important; height: 56px !important; }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,138,74,0.4);
  }
  .product-img {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .product-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-strong);
    text-align: center;
    line-height: 1.4;
    min-height: 38px;
    margin: 0 0 8px 0;
  }
  .product-price {
    font-size: 13.5px;
    color: var(--text-strong);
    text-align: center;
    margin: 0 0 14px 0;
    font-weight: 500;
  }
  .product-actions {
    display: flex; flex-direction: column; gap: 6px;
    margin-top: auto;
  }
  .btn-action {
    width: 100%;
    background: var(--gold);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 8px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background .2s ease, transform .15s ease;
  }
  .btn-action:hover { background: var(--gold-dark); }
  .btn-action:active { transform: scale(0.98); }
  .btn-action.added { background: #2A6F4D; }

  .product-card.style-b .product-name { color: var(--text-strong); font-weight: 600; text-align: left; }
  .product-card.style-b .product-price { text-align: left; color: var(--text-strong); }
  .product-card.style-b .product-img { background: #F8F6F1; }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--text-strong);
    display: flex; align-items: center; justify-content: center;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .slider-arrow:hover { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(184,138,74,0.4); }
  .slider-arrow.prev { left: 4px; }
  .slider-arrow.next { right: 4px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
  .slider-cta { display: flex; justify-content: center; margin-top: 28px; }

  /* ===== Why Choose ===== */
  .why-section {
    padding: 60px 0 70px;
    background: var(--cream);
    position: relative;
  }
  .why-section::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(75% 100% at 50% 100%);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
  }
  .why-item {
    padding: 40px 36px 44px;
    text-align: center;
    border-right: 1px solid var(--border-soft);
  }
  .why-item:last-child { border-right: 0; }
  .why-icon {
    height: 56px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
  }
  .why-icon svg { height: 56px; width: auto; }
  .why-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-strong);
    margin: 0 0 14px 0;
    text-transform: uppercase;
  }
  .why-text {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
    max-width: 280px;
    margin-left: auto; margin-right: auto;
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--navy);
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
  }
  .footer::before {
    content: '';
    position: absolute; top: -40px; left: 0; right: 0;
    height: 40px;
    background: var(--navy);
    clip-path: ellipse(80% 100% at 50% 100%);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 50px;
  }
  .footer .brand-mark { color: #fff; }
  .footer .brand-name { color: #fff; }
  .footer .brand-tag { color: var(--gold-light); }
  .footer-social {
    display: flex; gap: 10px;
    margin-top: 22px;
  }
  .footer-social a {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .25s ease, transform .25s ease;
  }
  .footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
  .footer-social svg { width: 14px; height: 14px; }
  .footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.01em;
  }
  .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color .2s ease;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 340px;
  }
  .newsletter-form {
    display: flex;
    max-width: 360px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 11px 14px;
    font-size: 13px;
    color: #fff;
    font-family: inherit;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
  .newsletter-form button {
    background: var(--gold);
    color: #fff;
    width: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease;
  }
  .newsletter-form button:hover { background: var(--gold-dark); }
  .newsletter-form button svg { width: 16px; height: 16px; }
  .payments {
    display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  }
  .pay-card {
    height: 22px; width: 34px;
    border-radius: 3px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    text-align: left;
  }
  .footer-credit {
    display: inline-block;
    margin-left: 12px;
    color: rgba(255,255,255,0.72);
    transition: color .2s ease;
  }
  .footer-credit:hover { color: var(--gold-light); }

  /* ===== Toast ===== */
  .toast {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--navy);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    font-size: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    z-index: 200;
    display: flex; align-items: center; gap: 10px;
    animation: slideUp .3s ease;
  }
  @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

  /* Cart drawer */
  .drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(11,18,32,0.5);
    z-index: 100;
    animation: fadeIn .25s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 380px; max-width: 90vw;
    background: #fff;
    z-index: 110;
    display: flex; flex-direction: column;
    animation: slideIn .35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .drawer-head {
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border-soft);
  }
  .drawer-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-strong); }
  .drawer-body { flex: 1; overflow-y: auto; padding: 14px 24px; }
  .drawer-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .drawer-item-img {
    width: 64px; height: 64px; border-radius: 6px;
    background: var(--cream-warm);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .drawer-item-info { flex: 1; }
  .drawer-item-name { font-size: 13.5px; color: var(--text-strong); font-weight: 500; margin-bottom: 4px; }
  .drawer-item-price { font-size: 13px; color: var(--gold); font-weight: 600; }
  .drawer-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
  .drawer-qty button {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--cream-warm); color: var(--text-strong);
    font-size: 14px; display: flex; align-items: center; justify-content: center;
  }
  .drawer-qty span { font-size: 13px; color: var(--text-strong); min-width: 18px; text-align: center; }
  .drawer-foot { padding: 20px 24px; border-top: 1px solid var(--border-soft); background: var(--cream); }
  .drawer-total { display: flex; justify-content: space-between; margin-bottom: 14px; }
  .drawer-total-label { font-size: 14px; color: var(--text-muted); }
  .drawer-total-amount { font-family: var(--serif); font-size: 20px; color: var(--text-strong); }
  .drawer-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }

  /* ===== Product Page ===== */
  .breadcrumb {
    max-width: var(--container);
    margin: 0 auto;
    padding: 24px 28px 0;
    font-size: 13px;
    color: var(--text-muted);
    display: flex; gap: 8px; align-items: center;
  }
  .breadcrumb a { color: var(--text-muted); transition: color .2s ease; cursor: pointer; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb .sep { color: var(--border-soft); }
  .breadcrumb .current { color: var(--text-strong); font-weight: 500; }

  .pd-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 28px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .pd-gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; align-self: start; }
  .pd-main-img {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    padding: 32px;
    transition: box-shadow .3s ease;
  }
  .pd-main-img svg { max-width: 100%; max-height: 100%; width: auto; height: auto; }
  .pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .pd-thumb {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
    cursor: pointer;
    transition: all .2s ease;
  }
  .pd-thumb:hover { transform: translateY(-2px); }
  .pd-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
  .pd-thumb svg { max-width: 100%; max-height: 100%; width: auto; height: auto; }

  .pd-tag {
    display: inline-block;
    background: var(--cream-warm);
    color: var(--gold-dark);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .pd-title {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1.15;
    color: var(--text-strong);
    margin: 0 0 10px 0;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .pd-sku { font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; letter-spacing: 0.06em; }
  .pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
  .pd-price-amount { font-family: var(--serif); font-size: 36px; color: var(--gold); font-weight: 600; }
  .pd-price-unit { font-size: 13px; color: var(--text-muted); }
  .pd-moq {
    display: flex; align-items: center; gap: 10px;
    background: rgba(184,138,74,0.08);
    border-left: 3px solid var(--gold);
    padding: 10px 14px;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: var(--text-strong);
    margin-bottom: 20px;
  }
  .pd-moq svg { width: 16px; height: 16px; color: var(--gold); }
  .pd-moq strong { color: var(--gold-dark); font-weight: 700; }
  .pd-desc { font-size: 14.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 22px; }

  .pd-tiers {
    margin-bottom: 22px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
  }
  .pd-tiers-head {
    background: var(--cream);
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-strong);
    font-weight: 700;
    border-bottom: 1px solid var(--border-soft);
  }
  .pd-tiers-table { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .pd-tier { padding: 14px 12px; border-right: 1px solid var(--border-soft); text-align: center; }
  .pd-tier:last-child { border-right: 0; }
  .pd-tier-qty { font-size: 11.5px; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.04em; }
  .pd-tier-price { font-size: 17px; color: var(--text-strong); font-weight: 600; font-family: var(--serif); }
  .pd-tier-save { font-size: 10px; color: var(--gold); margin-top: 3px; letter-spacing: 0.08em; font-weight: 600; }

  .pd-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .pd-qty-label { font-size: 13px; color: var(--text-strong); font-weight: 500; }
  .pd-qty-stepper { display: flex; align-items: center; border: 1px solid var(--border-soft); border-radius: 6px; overflow: hidden; }
  .pd-qty-stepper button { width: 36px; height: 40px; background: #fff; color: var(--text-strong); }
  .pd-qty-stepper button:hover { background: var(--cream-warm); color: var(--gold); }
  .pd-qty-stepper input {
    width: 56px; height: 40px;
    border: 0;
    border-left: 1px solid var(--border-soft);
    border-right: 1px solid var(--border-soft);
    text-align: center;
    font-size: 14px; font-weight: 600;
    color: var(--text-strong);
    font-family: inherit; outline: none;
  }

  .pd-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .btn-outline-gold {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.16em;
    padding: 14px 26px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all .25s ease;
    cursor: pointer;
  }
  .btn-outline-gold:hover { background: var(--gold); color: #fff; }
  .btn-outline-gold svg { width: 16px; height: 16px; }
  .btn-gold.btn-block { width: 100%; padding: 14px 26px; }

  .pd-meta {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
  }
  .pd-meta-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-body); }
  .pd-meta-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

  .pd-tabs { max-width: var(--container); margin: 0 auto; padding: 20px 28px 70px; }
  .pd-tabs-nav { display: flex; gap: 32px; border-bottom: 1px solid var(--border-soft); margin-bottom: 28px; }
  .pd-tab { padding: 14px 0; font-size: 14px; color: var(--text-muted); font-weight: 500; cursor: pointer; position: relative; transition: color .2s ease; }
  .pd-tab:hover { color: var(--text-strong); }
  .pd-tab.active { color: var(--text-strong); }
  .pd-tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); }
  .pd-tab-panel { font-size: 14.5px; line-height: 1.8; color: var(--text-body); max-width: 800px; }
  .pd-specs { display: grid; grid-template-columns: 220px 1fr; gap: 0; max-width: 700px; }
  .pd-specs > div { padding: 12px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
  .pd-specs > div:nth-child(odd) { color: var(--text-muted); }
  .pd-specs > div:nth-child(even) { color: var(--text-strong); font-weight: 500; }

  /* ===== Quote form modal ===== */
  .qf-overlay {
    position: fixed; inset: 0;
    background: rgba(11,18,32,0.55);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fadeIn .25s ease;
  }
  .qf-modal {
    background: #fff;
    width: 100%; max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    animation: slideUp .35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  }
  .qf-head {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-soft);
    display: flex; justify-content: space-between; align-items: center;
  }
  .qf-title { font-family: var(--serif); font-size: 24px; color: var(--text-strong); font-weight: 500; }
  .qf-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
  .qf-body { padding: 22px 28px; }
  .qf-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; color: var(--gold-dark); text-transform: uppercase; margin: 0 0 10px 0; }
  .qf-items { background: var(--cream); border-radius: 8px; padding: 4px 16px; margin-bottom: 22px; }
  .qf-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 13.5px; color: var(--text-strong); border-bottom: 1px dashed rgba(184,138,74,0.2); gap: 12px; }
  .qf-item:last-child { border-bottom: 0; }
  .qf-item-name { flex: 1; }
  .qf-item-qty { display: flex; align-items: center; gap: 6px; }
  .qf-item-qty button { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--text-strong); font-size: 13px; border: 1px solid var(--border-soft); }
  .qf-item-qty button:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
  .qf-item-qty span { font-size: 12.5px; min-width: 22px; text-align: center; }
  .qf-item-remove { color: var(--text-muted); cursor: pointer; font-size: 18px; line-height: 1; padding: 0 4px; transition: color .2s ease; }
  .qf-item-remove:hover { color: #c4373a; }
  .qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .qf-field { display: flex; flex-direction: column; gap: 5px; }
  .qf-field.full { grid-column: 1 / -1; }
  .qf-field label { font-size: 12px; color: var(--text-strong); font-weight: 500; }
  .qf-field label .req { color: #c4373a; }
  .qf-field input, .qf-field textarea, .qf-field select {
    border: 1px solid var(--border-soft);
    background: #fff;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--text-strong);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
  }
  .qf-field input:focus, .qf-field textarea:focus, .qf-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,138,74,0.12);
  }
  .qf-field textarea { resize: vertical; min-height: 90px; }
  .qf-field.error input, .qf-field.error textarea { border-color: #c4373a; }
  .qf-err-msg { color: #c4373a; font-size: 11.5px; }
  .qf-foot { padding: 16px 28px 24px; display: flex; gap: 12px; justify-content: flex-end; align-items: center; border-top: 1px solid var(--border-soft); background: #fafafa; }
  .btn-ghost { background: transparent; color: var(--text-muted); padding: 12px 18px; font-size: 13px; border-radius: 4px; transition: color .2s ease; cursor: pointer; }
  .btn-ghost:hover { color: var(--text-strong); }
  .qf-success { padding: 50px 30px; text-align: center; }
  .qf-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #fff;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
  }
  .qf-success-icon svg { width: 32px; height: 32px; stroke-width: 2.5; }
  .qf-success h3 { font-family: var(--serif); font-size: 26px; color: var(--text-strong); margin: 0 0 8px; font-weight: 500; }
  .qf-success p { font-size: 14px; color: var(--text-body); margin: 0 auto 22px; max-width: 380px; line-height: 1.6; }
  .qf-ref { background: var(--cream); padding: 10px 16px; border-radius: 6px; font-size: 13px; color: var(--text-strong); display: inline-block; letter-spacing: 0.04em; }
  .qf-ref strong { color: var(--gold); font-weight: 700; }

  /* Checkout (Add to Cart flow) */
  .checkout-overlay {
    position: fixed; inset: 0;
    background: rgba(11,18,32,0.55);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fadeIn .25s ease;
  }
  .checkout-modal {
    background: #fff;
    width: 100%; max-width: 720px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 12px;
    animation: slideUp .35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  }
  .checkout-body { padding: 22px 28px; }
  .co-section { margin-bottom: 24px; }
  .co-summary {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px dashed var(--border-soft);
  }
  .co-summary:last-of-type { border-bottom: 0; }
  .co-total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--border-soft); }
  .co-total-amount { font-family: var(--serif); font-size: 22px; color: var(--gold); font-weight: 600; }
  .pay-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pay-option {
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 12px 8px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-strong);
    transition: all .2s ease;
  }
  .pay-option:hover { border-color: var(--gold); }
  .pay-option.active { border-color: var(--gold); background: rgba(184,138,74,0.08); box-shadow: 0 0 0 1px var(--gold); }

  /* Header quote button */
  .quote-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px 7px 11px;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all .2s ease;
    margin-right: 4px;
    cursor: pointer;
  }
  .quote-btn:hover { background: var(--gold); color: #fff; }
  .quote-btn svg { width: 15px; height: 15px; }
  .quote-btn-count {
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 700;
    transition: all .2s ease;
  }
  .quote-btn:hover .quote-btn-count { background: #fff; color: var(--gold-dark); }

  @media (max-width: 900px) {
    .pd-wrap { grid-template-columns: 1fr; gap: 28px; padding: 24px 22px 50px; }
    .pd-gallery { position: static; }
    .pd-title { font-size: 30px; }
    .quote-btn .quote-btn-lbl { display: none; }
    .quote-btn { padding: 7px 10px; }
  }
  @media (max-width: 640px) {
    .pd-wrap { padding: 16px 16px 40px; gap: 22px; }
    .pd-title { font-size: 24px; }
    .pd-price-amount { font-size: 28px; }
    .pd-tag { font-size: 9.5px; padding: 4px 10px; }
    .pd-tiers-table { grid-template-columns: 1fr; }
    .pd-tier { border-right: 0; border-bottom: 1px solid var(--border-soft); padding: 10px; display: flex; justify-content: space-between; align-items: center; text-align: left; }
    .pd-tier:last-child { border-bottom: 0; }
    .pd-tier-qty { margin-bottom: 0; }
    .pd-tier-save { margin-top: 0; }
    .pd-qty { flex-wrap: wrap; gap: 12px; }
    .pd-qty-stepper button { width: 32px; height: 38px; }
    .pd-qty-stepper input { width: 48px; height: 38px; font-size: 13px; }
    .pd-meta { grid-template-columns: 1fr; gap: 10px; }
    .pd-tabs { padding: 12px 16px 50px; }
    .pd-tabs-nav { gap: 18px; overflow-x: auto; scrollbar-width: none; }
    .pd-tabs-nav::-webkit-scrollbar { display: none; }
    .pd-tab { white-space: nowrap; font-size: 13px; padding: 12px 0; }
    .pd-specs { grid-template-columns: 130px 1fr; }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .pd-main-img { padding: 22px; border-radius: 10px; }
    .breadcrumb { padding: 18px 16px 0; font-size: 12px; flex-wrap: wrap; gap: 6px; }

    .qf-overlay, .checkout-overlay { padding: 0; align-items: flex-end; }
    .qf-modal, .checkout-modal {
      max-height: 96vh;
      border-radius: 12px 12px 0 0;
      animation: slideUpMobile .35s cubic-bezier(0.4,0,0.2,1);
    }
    .qf-grid { grid-template-columns: 1fr; }
    .qf-head { padding: 18px 20px; }
    .qf-title { font-size: 20px; }
    .qf-body, .checkout-body { padding: 18px 20px; }
    .qf-foot { padding: 14px 20px 22px; flex-wrap: wrap; gap: 8px; }
    .qf-foot > span:first-child { flex-basis: 100%; order: -1; }
    .qf-foot .btn-gold { flex: 1; }
    .qf-success { padding: 40px 22px; }
    .qf-success h3 { font-size: 22px; }
    .pay-options { grid-template-columns: 1fr; gap: 6px; }
    .pay-option { padding: 10px; font-size: 12.5px; }
  }
  @keyframes slideUpMobile { from { transform: translateY(100%); } to { transform: translateY(0); } }

  /* ===== Catalog Page ===== */
  .catalog-hero {
    background: var(--navy);
    color: #fff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
  }
  .catalog-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(184,138,74,0.18) 0%, transparent 60%);
  }
  .catalog-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
  }
  .catalog-hero h1 {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  .catalog-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 28px;
    max-width: 540px;
    line-height: 1.6;
  }
  .catalog-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    max-width: 520px;
    backdrop-filter: blur(10px);
  }
  .catalog-search svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); }
  .catalog-search input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
  }
  .catalog-search input::placeholder { color: rgba(255,255,255,0.5); }
  .catalog-search button {
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background .2s ease;
  }
  .catalog-search button:hover { background: var(--gold-light); }

  .catalog-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 36px 28px 70px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
  }
  .catalog-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 22px 22px 12px;
  }
  .filter-group { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .filter-group:last-of-type { border-bottom: 0; }
  .filter-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-strong);
    margin: 0 0 12px;
  }
  .filter-opts { display: flex; flex-direction: column; gap: 9px; }
  .filter-opt {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px;
    color: var(--text-body);
    cursor: pointer;
    transition: color .2s ease;
  }
  .filter-opt:hover { color: var(--gold-dark); }
  .filter-opt input[type="checkbox"] {
    appearance: none;
    width: 16px; height: 16px;
    border: 1.5px solid var(--border-soft);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: all .15s ease;
    flex-shrink: 0;
  }
  .filter-opt input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
  }
  .filter-opt input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border: solid #fff;
    border-width: 0 1.8px 1.8px 0;
    transform: rotate(45deg);
  }
  .filter-opt-count { margin-left: auto; font-size: 12px; color: var(--text-muted); }
  .filter-clear {
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    padding: 6px 0 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }
  .filter-clear:hover { color: var(--gold); }

  .price-range { padding-top: 4px; }
  .price-inputs { display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
  .price-inputs input {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-strong);
    outline: none;
  }
  .price-inputs input:focus { border-color: var(--gold); }
  .price-inputs span { color: var(--text-muted); font-size: 12px; }
  .price-bar {
    height: 4px;
    background: var(--border-soft);
    border-radius: 2px;
    position: relative;
    margin: 8px 0 4px;
  }
  .price-bar-fill {
    position: absolute; top: 0; bottom: 0;
    background: var(--gold-grad);
    border-radius: 2px;
  }

  .catalog-main { min-width: 0; }
  .catalog-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .catalog-count { font-size: 14px; color: var(--text-muted); }
  .catalog-count strong { color: var(--text-strong); font-weight: 600; }
  .catalog-tools { display: flex; align-items: center; gap: 12px; }
  .catalog-select {
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 8px 32px 8px 14px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-strong);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 8px center / 14px no-repeat;
    appearance: none;
    cursor: pointer;
    outline: none;
  }
  .catalog-select:focus { border-color: var(--gold); }
  .view-toggle { display: flex; border: 1px solid var(--border-soft); border-radius: 6px; overflow: hidden; }
  .view-toggle button {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    background: #fff;
    transition: all .15s ease;
  }
  .view-toggle button.active { background: var(--gold); color: #fff; }
  .view-toggle button:not(.active):hover { color: var(--text-strong); background: var(--cream); }
  .view-toggle svg { width: 16px; height: 16px; }

  .filter-mobile-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-strong);
    cursor: pointer;
  }
  .filter-mobile-btn svg { width: 16px; height: 16px; }
  .filter-mobile-btn .badge { background: var(--gold); color: #fff; border-radius: 999px; padding: 1px 7px; font-size: 11px; font-weight: 700; }

  .active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--cream-warm);
    color: var(--gold-dark);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
  }
  .chip button { color: var(--gold-dark); font-size: 14px; line-height: 1; }
  .chip button:hover { color: var(--text-strong); }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .catalog-grid.list-view {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .catalog-grid.list-view .product-card {
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    gap: 22px;
  }
  .catalog-grid.list-view .product-img {
    width: 130px;
    aspect-ratio: 1;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .catalog-grid.list-view .product-name {
    text-align: left;
    min-height: 0;
    font-size: 16px;
    margin-bottom: 6px;
    flex: 1;
  }
  .catalog-grid.list-view .product-price {
    text-align: left;
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0;
    font-family: var(--serif);
  }
  .catalog-grid.list-view .product-card.style-b .product-name { color: var(--text-strong); }
  .catalog-grid.list-view .product-card > div:nth-child(2),
  .catalog-grid.list-view .product-card > div:nth-child(3) {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .catalog-grid.list-view .product-actions {
    flex-direction: row;
    margin-top: 0;
    flex-shrink: 0;
    width: auto;
    min-width: 240px;
  }
  .catalog-grid.list-view .btn-action { padding: 10px 16px; flex: 1; }

  .catalog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
  }
  .catalog-empty h3 { font-family: var(--serif); color: var(--text-strong); font-size: 26px; margin: 0 0 8px; font-weight: 500; }
  .catalog-empty p { font-size: 14px; margin: 0 0 22px; }

  .pagination { display: flex; justify-content: center; gap: 6px; margin-top: 50px; }
  .pagination button {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    background: #fff;
    color: var(--text-strong);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
  }
  .pagination button:hover:not(:disabled):not(.active) { border-color: var(--gold); color: var(--gold); }
  .pagination button.active { background: var(--gold); color: #fff; border-color: var(--gold); }
  .pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

  /* Filter drawer (mobile) */
  .filter-drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 340px; max-width: 90vw;
    background: #fff;
    z-index: 110;
    padding: 22px 22px 0;
    overflow-y: auto;
    animation: slideInLeft .3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 10px 0 40px rgba(0,0,0,0.15);
  }
  .filter-drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft); margin-bottom: 8px; }
  .filter-drawer-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text-strong); margin: 0; }
  .filter-drawer-foot {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 14px 0;
    margin-top: 16px;
    border-top: 1px solid var(--border-soft);
    display: flex; gap: 10px;
  }
  .filter-drawer-foot button { flex: 1; }

  @media (max-width: 960px) {
    .catalog-wrap { grid-template-columns: 1fr; padding: 24px 22px 60px; gap: 0; }
    .catalog-sidebar { display: none; }
    .filter-mobile-btn { display: inline-flex; }
    .catalog-hero { padding: 44px 0 50px; }
    .catalog-hero h1 { font-size: 42px; }
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-grid.list-view .product-actions { min-width: 200px; }
  }
  @media (max-width: 640px) {
    .catalog-hero { padding: 36px 0 38px; }
    .catalog-hero-inner { padding: 0 18px; }
    .catalog-hero h1 { font-size: 32px; }
    .catalog-hero p { font-size: 14px; margin-bottom: 20px; }
    .catalog-search input { font-size: 13px; padding: 10px 10px; }
    .catalog-search button { padding: 9px 16px; font-size: 10.5px; }
    .catalog-wrap { padding: 20px 16px 50px; }
    .catalog-toolbar { gap: 10px; }
    .catalog-count { font-size: 13px; width: 100%; order: -1; }
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .catalog-grid.list-view .product-card { flex-direction: column; align-items: stretch; padding: 12px; gap: 12px; }
    .catalog-grid.list-view .product-img { width: 100%; }
    .catalog-grid.list-view .product-name { text-align: center; font-size: 13.5px; }
    .catalog-grid.list-view .product-price { text-align: center; font-size: 14px; }
    .catalog-grid.list-view .product-actions { flex-direction: column; min-width: 0; }
    .view-toggle { display: none; }
    .catalog-select { font-size: 12.5px; padding: 7px 28px 7px 12px; }
    .pagination { gap: 4px; margin-top: 36px; }
    .pagination button { min-width: 34px; height: 34px; font-size: 12.5px; }
  }

  /* Mobile menu */
  .menu-btn { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--text-strong); border-radius: 6px; }
  .menu-btn svg { width: 22px; height: 22px; }
  .menu-btn:hover { background: var(--cream-warm); }
  .mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 320px; max-width: 85vw;
    background: #fff;
    z-index: 110;
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 4px;
    animation: slideInLeft .3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 10px 0 40px rgba(0,0,0,0.15);
  }
  @keyframes slideInLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
  .mobile-menu .brand {
    order: 0;
    width: fit-content;
    margin: 0 0 22px;
    padding: 0 46px 18px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: flex-start;
  }
  .mobile-menu .brand-logo {
    height: 46px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
  }
  .mobile-menu a {
    padding: 14px 6px;
    font-size: 16px;
    color: var(--text-strong);
    border-bottom: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: space-between;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu-close { position: absolute; top: 18px; right: 18px; }
  .mobile-region { margin-top: 20px; padding: 14px 6px; font-size: 14px; color: var(--text-muted); border-top: 1px solid var(--border-soft); display: flex; gap: 6px; align-items: center; }

  /* ===== Tablet (≤980) ===== */
  @media (max-width: 980px) {
    .container { padding: 0 22px; }
    .nav { display: none; }
    .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
    .menu-btn { display: inline-flex; }
    .brand { order: 2; justify-self: center; }
    .menu-btn { order: 1; }
    .header-end { order: 3; gap: 8px; }
    .region { display: none; }
    .brand-mark { font-size: 44px; }
    .brand-name { font-size: 17px; }
    .brand-tag { font-size: 7.5px; letter-spacing: 0.18em; }
    .hero { height: 440px; border-bottom-right-radius: 48px; }
    .hero h1 { font-size: 54px; }
    .hero-sub { font-size: 20px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 14px; }
    .cat-circle { width: 104px; height: 104px; }
    .slider-track, .slider-track.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .why-grid { grid-template-columns: 1fr; }
    .why-item { border-right: 0; border-bottom: 1px solid var(--border-soft); padding: 32px 28px 32px; }
    .why-item:last-child { border-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
    .footer .brand { flex-direction: column; gap: 8px; }
    .footer .brand-text { text-align: center; align-items: center; }
    .footer-social { justify-content: center; margin-top: 18px; }
    .footer-links { align-items: center; }
    .footer-desc { max-width: 420px; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .payments { justify-content: center; }
    .footer-bottom { text-align: center; }
    .section-title { font-size: 30px; }
  }

  /* ===== Mobile (≤640) ===== */
  @media (max-width: 640px) {
    .container { padding: 0 16px; }
    .topbar { font-size: 12px; padding: 9px 12px; }
    .header { padding: 12px 0; }
    .header-end > .icon-btn[aria-label="Search"],
    .header-end > .icon-btn[aria-label="Account"] { display: none; }
    .brand-mark { font-size: 38px; }
    .brand-name { font-size: 14px; line-height: 1.1; }
    .brand-tag { font-size: 6.5px; letter-spacing: 0.14em; margin-top: 4px; }

    .hero { height: 360px; border-bottom-right-radius: 32px; }
    .hero-content { padding: 0 18px; }
    .hero h1 { font-size: 40px; margin-bottom: 16px; max-width: 100%; }
    .hero-sub { font-size: 15px; margin-bottom: 22px; max-width: 100%; }
    .btn-gold { padding: 11px 22px; font-size: 10.5px; }

    .section { padding: 44px 0 40px; }
    .section-title { font-size: 24px; }
    .section-title-rule { margin-bottom: 26px; }

    .categories-wrap { padding: 32px 0 40px; }
    .categories-card { padding: 22px 0 18px; border-radius: 10px; position: relative; }
    .categories-scroller {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 6px 18px 14px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .categories-scroller::-webkit-scrollbar { display: none; }
    .categories-scroller .cat-item { flex: 0 0 auto; scroll-snap-align: center; }
    .cat-circle { width: 100px; height: 100px; padding: 4px; }
    .cat-label { font-size: 12px; max-width: 110px; }
    .cat-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 6px;
    }
    .cat-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border-soft);
      transition: all .25s ease;
      cursor: pointer;
      border: 0;
      padding: 0;
    }
    .cat-dot.active { background: var(--gold); width: 18px; border-radius: 4px; }
    .cat-cta { display: none; }

    .products-section { padding: 36px 0 36px; }
    .slider-wrap { padding: 0 28px; }
    .slider-track, .slider-track.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .slider-arrow { width: 30px; height: 30px; }
    .slider-arrow.prev { left: -2px; }
    .slider-arrow.next { right: -2px; }
    .product-card { padding: 12px 10px; border-radius: 8px; }
    .product-name { font-size: 12.5px; min-height: 34px; }
    .product-price { font-size: 12.5px; }
    .btn-action { font-size: 8.5px; padding: 7px 6px; letter-spacing: 0.12em; }

    .why-section { padding: 44px 0 56px; }
    .why-item { padding: 28px 22px 30px; }
    .why-title { font-size: 12px; letter-spacing: 0.16em; }
    .why-text { font-size: 13.5px; }

    .footer { padding: 50px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; text-align: center; }
    .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
    .footer .brand-mark { font-size: 40px; }
    .footer .brand-name { font-size: 16px; }
    .footer .brand-text { text-align: center; }
    .footer-links { align-items: center; }
    .footer-desc { max-width: 100%; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .footer-social { justify-content: center; }
    .payments { justify-content: center; }
    .footer-bottom { text-align: center; font-size: 11.5px; }
    .footer-credit { display: block; margin: 6px 0 0; }

    .toast { left: 16px; right: 16px; bottom: 16px; font-size: 13px; padding: 12px 16px; }
    .drawer { width: 100%; }
  }

  /* Hide categories grid on mobile, hide scroller on desktop */
  .categories-scroller { display: none; }
  .cat-dots { display: none; }
  @media (max-width: 640px) {
    .categories-grid { display: none; }
    .categories-scroller { display: flex; }
    .cat-dots { display: flex; }
  }

  /* Very small */
  @media (max-width: 380px) {
    .hero h1 { font-size: 34px; }
  }


/* ============================================================
   Heavenly Hospitality — Additional pages stylesheet
   About, Contact, Sign In/Up, Account, Cart, Checkout
   ============================================================ */

/* Shared page header (sub-pages other than home) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(184,138,74,0.20) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.page-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 600;
}
.page-eyebrow::before { content: '— '; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 580px;
  line-height: 1.65;
}

/* ===== About page ===== */
.about-wrap { max-width: var(--container); margin: 0 auto; padding: 60px 28px 70px; }
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-intro-img {
  aspect-ratio: 4/5;
  border-radius: 14px;
  background-image: url('https://images.unsplash.com/photo-1455587734955-081b22074882?w=900&q=85');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.about-intro-content h2 {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.15;
  color: var(--text-strong);
  font-weight: 500;
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
}
.about-intro-content p {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 16px;
}
.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}
.about-eyebrow::before { content: '— '; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--cream);
  border-radius: 14px;
  padding: 36px 12px;
  margin-bottom: 80px;
}
.about-stat { text-align: center; padding: 0 12px; border-right: 1px solid var(--border-soft); }
.about-stat:last-child { border-right: 0; }
.about-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 12.5px;
  color: var(--text-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-values {
  margin-bottom: 80px;
}
.about-values-head { text-align: center; margin-bottom: 40px; }
.about-values-head h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 8px 0 0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.about-value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(184,138,74,0.4);
}
.about-value-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(184,138,74,0.10);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.about-value-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.about-value h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-strong);
  margin: 0 0 10px;
  font-weight: 500;
}
.about-value p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.about-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,138,74,0.22) 0%, transparent 55%);
}
.about-cta > * { position: relative; z-index: 1; }
.about-cta h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 12px;
}
.about-cta p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 26px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ===== Contact page ===== */
.contact-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 28px 70px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--cream);
  border-radius: 14px;
  padding: 36px 32px;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 8px;
}
.contact-info-sub {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 24px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-soft);
}
.contact-info-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 14.5px;
  color: var(--text-strong);
  font-weight: 500;
  line-height: 1.5;
}
.contact-info-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0 20px;
}
.contact-socials { display: flex; gap: 10px; }
.contact-socials a {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.contact-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.contact-socials svg { width: 15px; height: 15px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.contact-form h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 6px;
}
.contact-form-sub { font-size: 13.5px; color: var(--text-muted); margin: 0 0 22px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field.full { grid-column: 1 / -1; }
.cf-field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-strong); font-weight: 700; }
.cf-field input, .cf-field textarea, .cf-field select {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-strong);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,138,74,0.12);
}
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-actions { margin-top: 22px; }
.cf-actions .btn-gold { width: 100%; padding: 14px; font-size: 11.5px; }
.cf-success {
  margin-top: 16px;
  background: rgba(42,111,77,0.08);
  border-left: 3px solid #2A6F4D;
  padding: 14px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  color: #1e553a;
}

/* ===== Auth pages (Sign In / Sign Up) ===== */
.auth-wrap {
  min-height: calc(100vh - 200px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.auth-side {
  position: relative;
  min-height: 460px;
  background-image: linear-gradient(135deg, rgba(11,18,32,0.92), rgba(11,18,32,0.70)), url('https://images.unsplash.com/photo-1551776235-dde6d482980b?w=1400&q=85');
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 50px 50px 56px;
  color: #fff;
}
.auth-side::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(184,138,74,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.auth-side-content { position: relative; z-index: 1; max-width: 420px; }
.auth-side h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.auth-side p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
}
.auth-form-side {
  padding: 60px 50px 70px;
  display: flex; align-items: center; justify-content: center;
}
.auth-card { width: 100%; max-width: 420px; }
.auth-card h1 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.auth-card-sub { font-size: 14px; color: var(--text-body); margin: 0 0 28px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-strong);
  font-weight: 700;
}
.auth-field input {
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-strong);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.auth-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,138,74,0.12);
}
.auth-field.error input { border-color: #c4373a; }
.auth-err { font-size: 11.5px; color: #c4373a; margin-top: 2px; }

.auth-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  margin: 4px 0 6px;
}
.auth-check { display: flex; align-items: center; gap: 8px; color: var(--text-body); cursor: pointer; }
.auth-check input[type="checkbox"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.auth-check input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold); }
.auth-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}
.auth-row a, .auth-link { color: var(--gold-dark); cursor: pointer; transition: color .2s ease; }
.auth-row a:hover, .auth-link:hover { color: var(--gold); }

.auth-form .btn-gold {
  width: 100%; padding: 14px;
  margin-top: 8px;
}
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 18px;
  color: var(--text-muted);
  font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}
.auth-social {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.auth-social-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-strong);
  cursor: pointer;
  transition: all .2s ease;
}
.auth-social-btn:hover { border-color: var(--gold); background: var(--cream); }
.auth-social-btn svg { width: 18px; height: 18px; }
.auth-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-body);
}

/* ===== Account page ===== */
.account-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 28px 70px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.account-sidebar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 22px 18px;
  position: sticky;
  top: 100px;
}
.account-user {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.account-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.account-user-name { font-size: 15px; font-weight: 600; color: var(--text-strong); margin: 0 0 2px; line-height: 1.2; }
.account-user-email { font-size: 12.5px; color: var(--text-muted); word-break: break-all; }

.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav button {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-body);
  display: flex; align-items: center; gap: 10px;
  transition: all .15s ease;
  font-weight: 500;
}
.account-nav button:hover { background: var(--cream); color: var(--text-strong); }
.account-nav button.active { background: rgba(184,138,74,0.10); color: var(--gold-dark); }
.account-nav button svg { width: 16px; height: 16px; stroke-width: 1.6; }
.account-nav .signout { margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--border-soft); color: var(--text-muted); }
.account-nav .signout:hover { color: #c4373a; background: transparent; }

.account-main {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 36px 36px 32px;
}
.account-head { margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.account-head h1 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.account-head p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

.account-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 28px;
}
.account-stat-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 18px 20px;
}
.account-stat-card-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.account-stat-card-val { font-family: var(--serif); font-size: 26px; color: var(--text-strong); font-weight: 500; }
.account-stat-card-val .unit { font-size: 13px; color: var(--text-muted); margin-left: 4px; font-family: var(--sans); font-weight: 500; }

.account-section { margin-bottom: 28px; }
.account-section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.account-section-head h2 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0;
}
.account-section-link { font-size: 13px; color: var(--gold-dark); cursor: pointer; }
.account-section-link:hover { color: var(--gold); }

.order-card {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
}
.order-num { font-size: 13.5px; color: var(--text-strong); font-weight: 600; }
.order-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.order-items-summary { font-size: 13px; color: var(--text-body); }
.order-total { font-family: var(--serif); font-size: 17px; color: var(--gold); font-weight: 600; }
.order-status {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.order-status.delivered { background: rgba(42,111,77,0.10); color: #2A6F4D; }
.order-status.shipped { background: rgba(184,138,74,0.12); color: var(--gold-dark); }
.order-status.processing { background: rgba(70,90,130,0.10); color: #465A82; }

.account-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.account-form-grid .full { grid-column: 1 / -1; }

/* ===== Cart Page ===== */
.cart-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 28px 70px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}
.cart-head { margin-bottom: 22px; }
.cart-head h1 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cart-head p { font-size: 14px; color: var(--text-muted); margin: 0; }

.cart-list {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto 28px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row-img {
  width: 96px; height: 96px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.cart-row-img svg { width: 100%; height: 100%; }
.cart-row-name { font-size: 14.5px; color: var(--text-strong); font-weight: 500; margin: 0 0 4px; line-height: 1.4; }
.cart-row-meta { font-size: 12.5px; color: var(--text-muted); }
.cart-row-qty { display: flex; align-items: center; border: 1px solid var(--border-soft); border-radius: 6px; overflow: hidden; }
.cart-row-qty button { width: 30px; height: 32px; background: #fff; color: var(--text-strong); transition: all .2s; }
.cart-row-qty button:hover { background: var(--cream-warm); color: var(--gold); }
.cart-row-qty input { width: 44px; height: 32px; border: 0; border-left: 1px solid var(--border-soft); border-right: 1px solid var(--border-soft); text-align: center; font-size: 13px; font-weight: 600; color: var(--text-strong); font-family: inherit; outline: none; }
.cart-row-total { font-family: var(--serif); font-size: 18px; color: var(--gold); font-weight: 600; min-width: 80px; text-align: right; }
.cart-row-remove { background: transparent; color: var(--text-muted); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.cart-row-remove:hover { color: #c4373a; background: rgba(196,55,58,0.08); }
.cart-row-remove svg { width: 16px; height: 16px; stroke-width: 1.8; }

.cart-empty {
  text-align: center;
  padding: 80px 30px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}
.cart-empty-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.cart-empty-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.cart-empty h3 { font-family: var(--serif); color: var(--text-strong); font-size: 26px; margin: 0 0 6px; font-weight: 500; }
.cart-empty p { font-size: 14px; color: var(--text-muted); margin: 0 0 22px; }

.cart-actions-row { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; flex-wrap: wrap; gap: 10px; }
.cart-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--text-body); cursor: pointer; transition: color .2s; }
.cart-back:hover { color: var(--gold-dark); }
.cart-back svg { width: 16px; height: 16px; }

.cart-summary {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px 24px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.cs-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-body); }
.cs-row.muted { color: var(--text-muted); font-size: 13px; }
.cs-row.total { padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--border-soft); font-size: 15px; color: var(--text-strong); font-weight: 600; }
.cs-row.total .cs-amt { font-family: var(--serif); font-size: 22px; color: var(--gold); font-weight: 600; }
.cs-promo {
  display: flex; gap: 8px; margin: 16px 0 6px;
}
.cs-promo input {
  flex: 1;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-strong);
  font-family: inherit;
  outline: none;
}
.cs-promo input:focus { border-color: var(--gold); }
.cs-promo button {
  background: var(--cream-warm);
  color: var(--gold-dark);
  border-radius: 6px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .2s;
}
.cs-promo button:hover { background: var(--gold); color: #fff; }
.cs-checkout-btn { width: 100%; padding: 14px; margin-top: 18px; }
.cs-trust {
  display: flex; gap: 14px; justify-content: center; margin-top: 16px;
  font-size: 11px; color: var(--text-muted);
}
.cs-trust span { display: inline-flex; gap: 5px; align-items: center; }
.cs-trust svg { width: 13px; height: 13px; color: var(--gold); }

/* ===== Checkout Page ===== */
.checkout-page-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 28px 70px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}
.checkout-steps {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
}
.checkout-step {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted);
}
.checkout-step.active { color: var(--gold-dark); font-weight: 600; }
.checkout-step.done { color: var(--text-strong); }
.checkout-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  border: 1px solid var(--border-soft);
}
.checkout-step.active .checkout-step-num { background: var(--gold); color: #fff; border-color: var(--gold); }
.checkout-step.done .checkout-step-num { background: rgba(42,111,77,0.10); color: #2A6F4D; border-color: rgba(42,111,77,0.3); }
.checkout-step-sep { width: 30px; height: 1px; background: var(--border-soft); }

.checkout-block {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px 30px;
  margin-bottom: 16px;
}
.checkout-block h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-strong);
  font-weight: 500;
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.checkout-block h3 .num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
}
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.checkout-fields .full { grid-column: 1 / -1; }
.checkout-fields label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-strong);
  font-weight: 700;
  margin-bottom: 4px;
}
.checkout-fields input, .checkout-fields select {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: #fff;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-strong);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.checkout-fields input:focus, .checkout-fields select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,138,74,0.12);
}
.pay-method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 16px;
}
.pay-method {
  border: 1.5px solid var(--border-soft);
  background: #fff;
  border-radius: 8px;
  padding: 14px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-strong);
}
.pay-method:hover { border-color: var(--gold); }
.pay-method.active { border-color: var(--gold); background: rgba(184,138,74,0.06); box-shadow: 0 0 0 1px var(--gold); }
.pay-method svg { width: 26px; height: 26px; color: var(--gold); }

.checkout-success {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 70px 40px 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.checkout-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #fff;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(184,138,74,0.3);
}
.checkout-success-icon svg { width: 38px; height: 38px; stroke-width: 2.5; }
.checkout-success h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text-strong);
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.checkout-success p { font-size: 15px; color: var(--text-body); margin: 0 0 24px; line-height: 1.6; }
.checkout-success-ref { background: var(--cream); padding: 14px 22px; border-radius: 8px; display: inline-block; font-size: 14px; color: var(--text-strong); }
.checkout-success-ref strong { color: var(--gold); font-weight: 700; letter-spacing: 0.04em; }
.checkout-success-actions { display: flex; gap: 10px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ===== Footer mobile fix (social icons under logo, centered) ===== */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer .brand { flex-direction: column; gap: 8px; }
  .footer .brand-text { text-align: center; align-items: center; }
  .footer-social { justify-content: center; margin-top: 18px; }
  .footer-links { align-items: center; }
  .footer-desc { max-width: 420px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .payments { justify-content: center; }
  .footer-bottom { text-align: center; }
}

/* ===== Responsive — sub-pages ===== */
@media (max-width: 980px) {
  .page-hero { padding: 44px 0 50px; }
  .page-hero h1 { font-size: 42px; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
  .about-intro-img { aspect-ratio: 16/10; max-height: 380px; }
  .about-intro-content h2 { font-size: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 0; padding: 26px 12px; }
  .about-stat { border-right: 0; padding: 12px 8px; }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 44px 28px; }
  .about-cta h2 { font-size: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .auth-wrap { grid-template-columns: 1fr; min-height: auto; }
  .auth-side { min-height: 220px; padding: 36px 32px; justify-content: center; text-align: center; }
  .auth-side-content { max-width: 100%; }
  .auth-side h2 { font-size: 30px; }
  .auth-form-side { padding: 40px 32px 50px; }
  .account-wrap { grid-template-columns: 1fr; gap: 18px; }
  .account-sidebar { position: static; padding: 18px 18px 8px; }
  .account-nav { flex-direction: row; overflow-x: auto; gap: 2px; scrollbar-width: none; padding-bottom: 4px; }
  .account-nav::-webkit-scrollbar { display: none; }
  .account-nav button { white-space: nowrap; flex-shrink: 0; padding: 10px 14px; }
  .account-nav .signout { border-top: 0; padding-top: 10px; margin-top: 0; }
  .account-stats-row { grid-template-columns: 1fr; }
  .account-main { padding: 26px 22px 22px; }
  .account-head h1 { font-size: 26px; }
  .order-card { grid-template-columns: 1fr; gap: 10px; }
  .order-card > * { text-align: left; }
  .account-form-grid { grid-template-columns: 1fr; }
  .cart-wrap { grid-template-columns: 1fr; gap: 22px; }
  .cart-summary { position: static; }
  .cart-row { grid-template-columns: 80px 1fr auto; gap: 12px; padding: 14px 16px; }
  .cart-row-img { width: 80px; height: 80px; }
  .cart-row-qty { grid-column: 2; grid-row: 2; justify-self: start; }
  .cart-row-total { grid-column: 3; grid-row: 2; }
  .cart-row-remove { grid-column: 3; grid-row: 1; justify-self: end; }
  .checkout-page-wrap { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 36px 0 38px; }
  .page-hero-inner { padding: 0 18px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 14px; }
  .about-wrap, .contact-wrap, .account-wrap, .cart-wrap, .checkout-page-wrap { padding-left: 16px; padding-right: 16px; padding-top: 30px; padding-bottom: 50px; }
  .about-intro-content h2 { font-size: 26px; }
  .about-stats { grid-template-columns: 1fr; padding: 8px 0; }
  .about-stat { border-right: 0 !important; border-bottom: 1px solid var(--border-soft); padding: 14px 0; }
  .about-stat:last-child { border-bottom: 0; }
  .about-stat-num { font-size: 38px; }
  .about-values-head h2 { font-size: 26px; }
  .about-value { padding: 24px 22px; }
  .about-cta { padding: 32px 22px; border-radius: 10px; }
  .about-cta h2 { font-size: 24px; }
  .contact-info, .contact-form { padding: 24px 20px; border-radius: 10px; }
  .cf-grid { grid-template-columns: 1fr; }
  .auth-form-side { padding: 30px 22px 40px; }
  .auth-card h1 { font-size: 28px; }
  .auth-social { grid-template-columns: 1fr; }
  .checkout-fields { grid-template-columns: 1fr; }
  .pay-method-grid { grid-template-columns: 1fr 1fr; }
  .checkout-success { padding: 50px 24px 40px; }
  .checkout-success h2 { font-size: 28px; }
  .checkout-steps { gap: 6px; font-size: 11.5px; }
  .checkout-step-sep { width: 14px; }
  .checkout-block { padding: 22px 20px; border-radius: 10px; }
  .cart-head h1 { font-size: 28px; }
  .cart-summary { padding: 20px 18px; border-radius: 10px; }
}


/* ============================================================
   WordPress integration overrides
   ============================================================ */

/* Admin bar offset for the sticky header */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .header { top: 0; } }

/* Primary nav as a wp_nav_menu (ul > li > a) */
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 44px; align-items: center; }
.nav li { position: relative; }
.nav .current-menu-item > a,
.nav .current_page_item > a { color: var(--gold); }
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--gold);
}

/* Product image as a link + featured-image fallback */
.product-img { text-decoration: none; }
.product-img img,
.cat-circle-inner img { width: 100%; height: 100%; object-fit: contain; }
.cart-row-img img, .drawer-item-img img { width: 100%; height: 100%; object-fit: contain; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--gold); }

/* Mobile menu links rendered manually keep the chevrons aligned */
.mobile-menu a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Generic page content (page.php / single post) */
.hh-content-wrap { max-width: 820px; margin: 0 auto; padding: 50px 28px 70px; }
.hh-content-wrap h1.entry-title { font-family: var(--serif); font-weight: 500; font-size: 40px; color: var(--text-strong); margin: 0 0 18px; }
.hh-content-wrap .entry-content { font-size: 16px; line-height: 1.8; color: var(--text-body); }
.hh-content-wrap .entry-content a { color: var(--gold-dark); text-decoration: underline; }
.hh-content-wrap img { border-radius: 10px; }

/* Hide the cart/quote toast helper is in JS; ensure it stacks above modals */
.toast { z-index: 300; }

/* Quantity helper used by add-to-cart on product card grids */
.product-card .product-actions .btn-action.added { background: #2A6F4D; }

/* RTL niceties (auto-applies when site language is RTL) */
.rtl .breadcrumb,
.rtl .pd-meta-row,
.rtl .cs-trust span { direction: rtl; }


/* Drawer open/close states (drawers are always in the DOM in WP) */
.mobile-menu { transform: translateX(-100%); animation: none; transition: transform .32s cubic-bezier(.4,0,.2,1); }
.mobile-menu.open { transform: translateX(0); }
.drawer-backdrop.menu-backdrop { display: none; }
.drawer-backdrop.menu-backdrop.open { display: block; }
.filter-drawer { transform: translateX(-100%); animation: none; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.filter-drawer.open { transform: translateX(0); }
.filter-backdrop { position: fixed; inset: 0; background: rgba(11,18,32,.5); z-index: 100; display: none; }
.filter-backdrop.open { display: block; }


/* ============================================================
   Hero slider (Ken Burns zoom + crossfade), taller hero,
   and footer social hidden on phones
   ============================================================ */
.hero { height: 640px; }
.hero-slider { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.1) saturate(1.1);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: hh-kenburns 12s ease-in-out infinite alternate;
}
@keyframes hh-kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active { animation: none; transform: scale(1.04); }
}

@media (max-width: 980px) { .hero { height: 560px; } }
@media (max-width: 640px) {
  .hero { height: 480px; }
  /* Hide social icons in the footer on phones */
  .footer-social { display: none !important; }
}

/* ----- Hero slider dots ----- */
.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 3;
  display: flex; justify-content: center; gap: 9px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: 0; padding: 0; cursor: pointer;
  transition: all .25s ease;
}
.hero-dot:hover { background: rgba(255,255,255,0.75); }
.hero-dot.active { background: var(--gold); width: 26px; }
@media (max-width: 640px) { .hero-dots { bottom: 16px; } }


/* ============================================================
   Logo, bigger desktop cards, and redesigned footer
   ============================================================ */

/* ----- Brand logo image (wide ~2.8:1 logo) ----- */
.brand-logo { height: 54px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer .brand-logo { height: 60px; max-width: 240px; }
@media (max-width: 980px) { .brand-logo { height: 48px; } }
@media (max-width: 640px) { .brand-logo { height: 42px; } }

/* WooCommerce's global image rule is more specific than .brand-logo on shop
   pages, so restate the header logo sizing inside WooCommerce contexts. */
.woocommerce .header .brand-logo,
.woocommerce-page .header .brand-logo { height: 54px; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 980px) {
  .woocommerce .header .brand-logo,
  .woocommerce-page .header .brand-logo { height: 48px; }
}
@media (max-width: 640px) {
  .woocommerce .header .brand-logo,
  .woocommerce-page .header .brand-logo { height: 42px; }
}

/* ----- Bigger product cards on desktop ----- */
@media (min-width: 981px) {
  .product-card { padding: 22px 20px 20px; }
  .product-img { margin-bottom: 20px; }
  .product-img svg, .product-img img { max-width: 210px; max-height: 210px; }
  .product-name { font-size: 15px; min-height: 42px; }
  .product-price { font-size: 15px; }
  .btn-action { font-size: 10px; padding: 9px 8px; }
  .slider-track { gap: 22px; }
}

/* ----- Footer: brand description ----- */
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 16px 0 0; max-width: 320px; }

/* ----- Footer: proper 4-column desktop layout (fixes the cramped look) ----- */
@media (min-width: 981px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.7fr; gap: 44px; align-items: start; }
  .footer-col-body { display: block; }
  .footer-chev { display: none; }
}

/* ----- Footer: mobile accordion (tap a heading to expand) ----- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; gap: 0; text-align: left; }
  .footer-grid > div { align-items: stretch; }
  .footer-brand-col { text-align: center; align-items: center; padding-bottom: 24px; }
  .footer-brand-col .brand { justify-content: center; }
  .footer-brand-desc { margin: 14px auto 0; max-width: 360px; }
  .footer-col { border-top: 1px solid rgba(255,255,255,0.10); }
  .footer-col:last-child { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .footer-heading.footer-toggle {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; margin: 0; padding: 16px 2px; font-size: 14px; user-select: none; text-align: center;
  }
  .footer-chev { display: inline-flex; align-items: center; transition: transform .25s ease; color: rgba(255,255,255,0.55); }
  .footer-chev svg { width: 18px; height: 18px; }
  .footer-col.open .footer-chev { transform: rotate(180deg); }
  .footer-col-body { display: none; text-align: center; }
  .footer-col.open .footer-col-body { display: block; animation: hh-fold .28s ease; }
  .footer-links { align-items: center; text-align: center; gap: 14px; padding-bottom: 16px; }
  .footer-col-body .footer-desc { text-align: center; }
  .footer-col-body .footer-desc,
  .footer-col-body .newsletter-form,
  .footer-col-body .payments { margin: 0 auto 16px; }
  .footer-col-body .newsletter-form { max-width: 100%; }
  .footer-col-body .payments { justify-content: center; }
}
@keyframes hh-fold { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }


/* ============================================================
   Scroll-reveal content animations
   (Gated under .js-reveal — set in <head> only when JS is on
   and motion is allowed, so content stays visible otherwise.)
   ============================================================ */
.js-reveal .categories-card,
.js-reveal .products-section,
.js-reveal .about-intro,
.js-reveal .about-values-head,
.js-reveal .about-cta,
.js-reveal .contact-grid,
.js-reveal .pd-wrap,
.js-reveal .pd-tabs,
.js-reveal .why-section .section-title,
.js-reveal .page-hero-inner,
.js-reveal .why-item,
.js-reveal .about-value,
.js-reveal .about-stat {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js-reveal .is-visible { opacity: 1; transform: none; }

/* Hero text entrance on load */
.js-reveal .hero-content > h1,
.js-reveal .hero-content > .hero-sub,
.js-reveal .hero-content > .hero-cta {
  opacity: 0;
  animation: hh-rise .85s cubic-bezier(.2,.7,.2,1) forwards;
}
.js-reveal .hero-content > h1 { animation-delay: .12s; }
.js-reveal .hero-content > .hero-sub { animation-delay: .28s; }
.js-reveal .hero-content > .hero-cta { animation-delay: .44s; }
@keyframes hh-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .hero-content > *,
  .js-reveal .categories-card,
  .js-reveal .products-section,
  .js-reveal .about-intro,
  .js-reveal .about-values-head,
  .js-reveal .about-cta,
  .js-reveal .contact-grid,
  .js-reveal .pd-wrap,
  .js-reveal .pd-tabs,
  .js-reveal .why-section .section-title,
  .js-reveal .page-hero-inner,
  .js-reveal .why-item,
  .js-reveal .about-value,
  .js-reveal .about-stat {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}


/* ============================================================
   Navy header (matches the live brand), footer order, categories swipe
   ============================================================ */
.topbar { background: var(--navy-2); }
.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header .menu-btn { color: #fff; }
.header .menu-btn:hover { background: rgba(255,255,255,0.08); }

/* Nav links light on navy */
.nav a, .nav ul a { color: rgba(255,255,255,0.92); }
.nav a:hover { color: var(--gold-light); }
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav a.active { color: var(--gold-light); }

/* Brand text (when no logo image) reads on navy */
.header .brand-mark { color: #fff; }
.header .brand-name { color: #fff; }
.header .brand-tag { color: var(--gold-light); }

/* Plain icon buttons → light */
.header .icon-btn { color: #fff; }
.header .icon-btn:hover { background: rgba(255,255,255,0.10); color: var(--gold-light); }

/* Quote button on navy */
.header .quote-btn { border-color: var(--gold); color: #fff; }
.header .quote-btn:hover { background: var(--gold); color: #fff; }

/* Gold cart pill (like the live site) */
.cart-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  position: relative; transition: background .2s ease, transform .15s ease;
}
.cart-pill:hover { background: var(--gold-dark); transform: translateY(-1px); }
.cart-pill svg { width: 18px; height: 18px; }
.cart-pill .cart-count {
  position: static; width: auto; min-width: 18px; height: 18px;
  padding: 0 5px; background: #fff; color: var(--gold-dark); font-weight: 700;
}

/* Header social cluster (dark rounded squares) */
.header-social { display: flex; align-items: center; gap: 8px; }
.header-social a {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.08); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.header-social a:hover { background: var(--gold); color: #fff; }
.header-social svg { width: 16px; height: 16px; }

/* Gold circular account icon */
.account-circle { background: var(--gold); color: #fff !important; }
.account-circle:hover { background: var(--gold-dark) !important; color: #fff !important; }

@media (max-width: 980px) {
  .header-social { display: none; }
}
@media (max-width: 640px) {
  .cart-pill .cart-pill-label { display: none; }
  .cart-pill { padding: 8px 12px; }
}

/* Footer (mobile): force LOGO above DESCRIPTION above social */
@media (max-width: 980px) {
  .footer-brand-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand-col .brand { order: 0; margin-bottom: 6px; }
  .footer-brand-col .footer-brand-desc { order: 1; }
  .footer-brand-col .footer-social { order: 2; }
}

/* Categories: make the mobile carousel reliably swipeable */
@media (max-width: 640px) {
  .categories-scroller {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }
  .categories-scroller .cat-item { flex: 0 0 auto; }
}


/* ============================================================
   WooCommerce styling (shop, single, cart, checkout, account)
   matched to the gold / navy design
   ============================================================ */
.hh-woo-page { background: var(--cream); }
.hh-woo.container { padding-top: 40px; padding-bottom: 70px; }
.woocommerce .hh-woo.container,
.woocommerce-page .hh-woo.container { max-width: var(--container); margin: 0 auto; }

/* Product loop → reuse the card grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0; padding: 0; list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; display: none; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; float: none !important;
}
.woocommerce ul.products li.product.product-card { padding: 18px 16px; }
.woocommerce ul.products li.product .product-img { position: relative; }
.hh-sale-flag {
  position: absolute; top: 8px; left: 8px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
}
.woocommerce .product-card .price,
.woocommerce ul.products li.product .product-price .price { color: var(--text-strong); font-weight: 500; }
.woocommerce .product-card del { color: var(--text-muted); font-weight: 400; margin-right: 6px; }
.woocommerce .product-card ins { text-decoration: none; color: var(--gold-dark); }

/* The WC loop add-to-cart link styled as our gold action button */
.woocommerce .product-actions a.button,
.woocommerce a.add_to_cart_button,
.woocommerce .product-actions .added_to_cart {
  display: block; width: 100%;
  background: var(--gold); color: #fff;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 8px; border-radius: 3px; text-align: center;
  transition: background .2s ease; margin: 0;
}
.woocommerce .product-actions a.button:hover,
.woocommerce a.add_to_cart_button:hover { background: var(--gold-dark); color: #fff; }
.woocommerce .product-actions a.button.loading::after { margin-left: 6px; }
.woocommerce .product-actions .added_to_cart { margin-top: 6px; background: #2A6F4D; }

/* Generic WC buttons → gold */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce button.button.alt {
  background: var(--gold); color: #fff; border-radius: 4px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 12px 22px; font-size: 12px; transition: background .2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover { background: var(--gold-dark); color: #fff; }

/* Single product */
.single-product .hh-woo div.product { max-width: var(--container); margin: 0 auto; }
.single-product .product_title { font-family: var(--serif); font-weight: 500; color: var(--text-strong); }
.single-product .woocommerce-Price-amount { color: var(--gold-dark); }
.single-product div.product .price { color: var(--gold-dark); font-family: var(--serif); }
.woocommerce div.product form.cart .button { padding: 14px 26px; }
.woocommerce .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--gold); }
.woocommerce span.onsale {
  background: var(--gold); color: #fff; border-radius: 999px; min-height: auto;
  min-width: auto; padding: 4px 12px; font-weight: 700; line-height: 1.4;
}

/* Cart / checkout / account pages run through page.php — widen them */
.woocommerce-cart .hh-content-wrap,
.woocommerce-checkout .hh-content-wrap,
.woocommerce-account .hh-content-wrap,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content { max-width: var(--container); }
.woocommerce-cart .hh-content-wrap,
.woocommerce-checkout .hh-content-wrap,
.woocommerce-account .hh-content-wrap { padding-top: 36px; }

.woocommerce table.shop_table { border-radius: 12px; overflow: hidden; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details { border: 1px solid var(--border-soft); border-radius: 12px; padding: 18px 20px; background: #fff; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout .form-row input,
.select2-container .select2-selection { border: 1px solid var(--border-soft); border-radius: 6px; }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-MyAccount-navigation li.is-active a { color: var(--gold-dark); font-weight: 600; }

/* Header cart-pill fragment (WC) */
.cart-pill .hh-cart-frag { display: inline-flex; align-items: center; gap: 8px; }
.cart-pill .cart-pill-total { font-weight: 700; }
.cart-pill .cart-pill-total .woocommerce-Price-amount { color: #fff; }

@media (max-width: 980px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cart-pill .cart-pill-total { display: none; }
}


/* ============================================================
   Categories as a single-row carousel with arrows
   (same behaviour on desktop and mobile; swipeable)
   ============================================================ */
.cat-carousel { position: relative; padding: 0 46px; }
.cat-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 6px 2px 8px;
}
.cat-track::-webkit-scrollbar { display: none; }
.cat-track .cat-item {
  flex: 0 0 auto;
  width: 150px;
  scroll-snap-align: start;
  margin: 0;
}
.cat-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--text-strong);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: all .2s ease; z-index: 2; border: 1px solid var(--border-soft);
}
.cat-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cat-arrow:disabled { opacity: .3; cursor: not-allowed; }
.cat-arrow svg { width: 18px; height: 18px; }
.cat-arrow.prev { left: 2px; }
.cat-arrow.next { right: 2px; }

@media (max-width: 640px) {
  .cat-carousel { padding: 0 36px; }
  .cat-track { gap: 14px; }
  .cat-track .cat-item { width: 116px; }
  .cat-arrow { width: 32px; height: 32px; }
}

/* WooCommerce shop toolbar polish */
.woocommerce .woocommerce-result-count { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.woocommerce .woocommerce-ordering select.orderby,
.woocommerce-page .woocommerce-ordering select {
  border: 1px solid var(--border-soft); border-radius: 6px; padding: 8px 12px;
  font-family: inherit; color: var(--text-strong); background: #fff;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
  border-radius: 6px; color: var(--text-strong);
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--gold); color: #fff; }


/* ----- Category circle: real photos fill the circle; clean initial fallback ----- */
.cat-circle-inner .cat-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-initial {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 44px;
  color: var(--gold-light); background: #0d0d0d;
}
/* Defensive: guarantee the categories stay a single horizontal row */
.cat-track { flex-direction: row !important; flex-wrap: nowrap !important; }


/* Price-on-request label (products with no price set) */
.price-on-request { color: var(--gold-dark); font-style: italic; font-weight: 600; }
.woocommerce div.product .price-on-request { font-family: var(--serif); font-size: 22px; font-style: normal; }
/* Single-product summary quote button spacing */
.woocommerce div.product .btn-outline-gold.hh-add-quote { display: inline-flex; align-items: center; gap: 8px; }


/* ============================================================
   Single product tidy-up: hide the duplicate image inside the
   short description, and hide the third-party Quote-Cart plugin
   output (theme's own quote system is used instead).
   ============================================================ */
.woocommerce div.product .woocommerce-product-details__short-description img { display: none !important; }
#stqc-quote,
.stqc-quote-section,
.stqc-quote-form,
[id^="stqc"],
[class^="stqc-"] { display: none !important; }


/* ============================================================
   Fixes: oversized button icon, sticky nav bar
   ============================================================ */
/* Size icons inside buttons (fixes the giant star in the quote button) */
.btn-gold svg,
.btn-outline-gold svg,
.btn-action svg,
.pd-actions svg { width: 16px; height: 16px; flex-shrink: 0; vertical-align: middle; }
.btn-gold.hh-add-quote span,
.btn-gold.btn-block.hh-add-quote span { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* Sticky/fixed nav bar: the original `overflow-x:hidden` on <body> breaks
   position:sticky. `overflow-x:clip` prevents horizontal scroll WITHOUT
   breaking sticky, so the header now stays pinned while scrolling. */
html, body { overflow-x: clip; }
.header { position: sticky; top: 0; z-index: 50; }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* ------------------------------------------------------------------ *
 * Premium product-image frame
 *
 * Demo products ship with hand-drawn SVG illustrations (no photos yet).
 * On a stark white card the light-coloured ones (towels, bath mat, luggage
 * rack, door hanger, apron) almost vanished and the cards looked empty. A
 * warm cream backdrop + a soft inner ring + a subtle drop-shadow makes every
 * illustration read clearly and the cards feel intentional and luxurious.
 * Real uploaded photos sit on the same frame and look great too.
 * ------------------------------------------------------------------ */
.product-card .product-img,
.woocommerce ul.products li.product .product-img {
  background: linear-gradient(155deg, #FCF9F3 0%, #F1E7D6 100%);
  border: 1px solid rgba(184, 138, 74, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 14px;
}
.product-card .product-img svg,
.woocommerce ul.products li.product .product-img svg {
  max-width: 86%;
  max-height: 86%;
  filter: drop-shadow(0 8px 16px rgba(60, 40, 10, 0.12));
}
/* Photos fill the frame edge-to-edge (no inner padding squeeze). */
.product-card .product-img img,
.woocommerce ul.products li.product .product-img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
}

/* ============================================================
   Mobile polish pass: commerce toolbar, account, product pages
   ============================================================ */
.woocommerce .hh-woo.container {
  display: flow-root;
}

.woocommerce-shop .hh-woo-page,
.tax-product_cat .hh-woo-page,
.tax-product_tag .hh-woo-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 28px 70px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
}

.woocommerce-account .hh-content-wrap {
  background: var(--cream);
}

.woocommerce-account .hh-content-wrap article {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(11, 18, 32, 0.06);
}

.woocommerce-account .hh-content-wrap h1.entry-title {
  margin-bottom: 22px;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 22px;
  background: var(--cream);
}

.woocommerce form.login label,
.woocommerce form.register label,
.woocommerce form.lost_reset_password label {
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 600;
}

.woocommerce form.login input.input-text,
.woocommerce form.register input.input-text,
.woocommerce form.lost_reset_password input.input-text {
  min-height: 44px;
  padding: 10px 12px;
  background: #fff;
}

.woocommerce form.login .show-password-input {
  top: 0.75em;
}

.single-product .hh-product {
  background: var(--cream);
}

.single-product .breadcrumb {
  min-width: 0;
}

@media (max-width: 640px) {
  .woocommerce .hh-woo.container {
    padding: 18px 16px 52px;
  }

  .woocommerce-shop .hh-woo-page,
  .tax-product_cat .hh-woo-page,
  .tax-product_tag .hh-woo-page {
    padding: 18px 16px 52px;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    width: 100%;
    margin: 0;
  }

  .woocommerce .woocommerce-result-count {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .woocommerce .woocommerce-ordering {
    margin-bottom: 18px;
  }

  .woocommerce .woocommerce-ordering select.orderby,
  .woocommerce-page .woocommerce-ordering select {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 12px;
  }

  .woocommerce ul.products li.product.product-card {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .woocommerce ul.products li.product .product-img {
    margin-bottom: 12px;
  }

  .woocommerce ul.products li.product .product-name {
    min-height: 40px;
    font-size: 12.5px;
  }

  .woocommerce .product-actions a.button,
  .woocommerce a.add_to_cart_button,
  .woocommerce .product-actions .added_to_cart,
  .woocommerce ul.products li.product .btn-action {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    font-size: 9px;
    line-height: 1.2;
  }

  .woocommerce-account .hh-content-wrap {
    padding: 28px 16px 54px;
  }

  .woocommerce-account .hh-content-wrap article {
    padding: 22px 16px;
    border-radius: 10px;
  }

  .woocommerce-account .hh-content-wrap h1.entry-title {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .woocommerce form.login,
  .woocommerce form.register,
  .woocommerce form.lost_reset_password {
    padding: 16px;
  }

  .woocommerce form.login .form-row,
  .woocommerce form.register .form-row {
    width: 100%;
  }

  .woocommerce form.login .button {
    width: 100%;
    margin-top: 10px;
  }

  .pd-main-img {
    max-height: 330px;
  }

  .pd-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pd-actions .btn-outline-gold,
  .pd-actions .btn-gold {
    width: 100%;
    min-height: 46px;
    padding-left: 14px;
    padding-right: 14px;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .pd-specs {
    grid-template-columns: 1fr;
  }

  .pd-specs > div:nth-child(odd) {
    padding-bottom: 4px;
    border-bottom: 0;
    font-weight: 600;
  }

  .pd-specs > div:nth-child(even) {
    padding-top: 0;
  }
}