 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dark: #8a6a1f;
    --bg-dark: #1a1612;
    --bg-mid: #221e19;
    --bg-card: #2a2520;
    --text-primary: #f0e8d8;
    --text-muted: #a09070;
    --border: rgba(201,168,76,0.2);
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

/* NAVBAR */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-icon:hover { color: var(--gold-light); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE */
@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 12px 0 4px;
    order: 3; /* pushes below logo + icons row */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 12px;
  }

  .nav-links a::after {
    display: none;
  }
}
.nav-logo-img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 32px;
  }
}
  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/Header-bg.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,22,18,0.3) 0%,
      rgba(26,22,18,0.5) 40%,
      rgba(26,22,18,0.75) 75%,
      rgba(26,22,18,1) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeUp 1.2s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 9vw, 110px);
    font-weight: 500;
    line-height: 0.95;
    color: var(--gold-light);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }

  .hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(240,232,216,0.85);
    max-width: 600px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 18px 40px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.25);
  }

  .btn-outline {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 17px 40px;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-outline:hover {
    background: rgba(201,168,76,0.1);
    transform: translateY(-2px);
  }

  /* SECTION COMMON */
  section { padding: 100px 48px; }

  .section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    color: var(--gold-light);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 60px;
    position: relative;
  }

  .divider::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

  /* CATEGORIES */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 31px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .category-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    cursor: pointer;
  }

  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

  .category-card:hover img { transform: scale(1.07); }

  .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,22,18,0.9) 0%, rgba(26,22,18,0.1) 60%);
    transition: background 0.4s ease;
  }

  .category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(26,22,18,0.95) 0%, rgba(26,22,18,0.3) 60%);
  }

  .category-info {
    position: absolute;
    bottom: 28px;
    left: 24px;
    right: 24px;
  }

  .category-count {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }

  .category-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
  }

  /* ABOUT */
  .about-section {
    background: var(--bg-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .about-section.full-bleed {
    max-width: none;
    padding: 100px 10%;
  }

  .about-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .about-heading em {
    color: var(--gold-light);
    font-style: italic;
  }

  .about-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
  }

  .about-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(240,232,216,0.75);
    margin-bottom: 20px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .service-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
  }

  .service-card:hover { border-color: rgba(201,168,76,0.5); }

  .service-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
    color: var(--gold);
  }

  .service-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 8px;
  }

  .service-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* FEATURED COLLECTION */
  .featured-section {
    background: var(--bg-dark);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-card {
    position: relative;
    background: var(--bg-card);
    overflow: hidden;
    cursor: pointer;
  }

  .product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

  .product-card:hover .product-image img { transform: scale(1.05); }

  .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--bg-dark);
    background: var(--gold);
    padding: 6px 12px;
    text-transform: uppercase;
  }

  .product-info {
    padding: 24px;
    border-top: 1px solid var(--border);
  }

  .product-category {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .product-origin {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .product-price {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 500;
  }

  /* NEWSLETTER */
  .newsletter-section {
    background: var(--bg-mid);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 16px;
  }

  .newsletter-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.6;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
  }

  .newsletter-input {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    outline: none;
    transition: border-color 0.3s;
  }

  .newsletter-input:focus { border-color: var(--gold); }
  .newsletter-input::placeholder { color: var(--text-muted); }

  .newsletter-btn {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 500;
    padding: 18px 32px;
    background: var(--gold);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    white-space: nowrap;
  }

  .newsletter-btn:hover { background: var(--gold-light); }

  /* FOOTER */
  footer {
    background: var(--bg-dark);
    padding: 80px 48px 40px;
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 60px;
  }

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: block;
  }

  .footer-tagline {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 300;
  }

  .footer-links a:hover { color: var(--gold-light); }

  .footer-contact p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.5;
  }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    section { padding: 70px 24px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section.full-bleed { grid-template-columns: 1fr; padding: 70px 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { gap: 20px; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid var(--border); }
  }

/*================Collection style===========*/
  
/* LAYOUT */
.page-wrap{margin-top:68px;display:grid;grid-template-columns:280px 1fr;min-height:calc(100vh - 68px)}

/* SIDEBAR */
.sidebar{border-right:1px solid var(--border);padding:52px 32px 80px 44px;position:sticky;top:68px;height:calc(100vh - 68px);overflow-y:auto;flex-shrink:0}
.sidebar::-webkit-scrollbar{width:3px}
.sidebar::-webkit-scrollbar-thumb{background:var(--border)}
.sb-header{margin-bottom:44px}
.sb-eyebrow{font-family:'Cinzel',serif;font-size:9.5px;letter-spacing:.42em;color:var(--gold);text-transform:uppercase;display:block;margin-bottom:14px;margin-top: 14%;}

.sb-title{font-family:'Playfair Display',serif;font-size:52px;font-weight:400;color:var(--gold-light);line-height:1.0;margin-bottom:16px}
.sb-rule{width:44px;height:2px;background:var(--gold)}
.cat-label{font-family:'Cinzel',serif;font-size:9px;letter-spacing:.38em;color:var(--text-muted);text-transform:uppercase;margin-bottom:16px;margin-top:36px;display:block;background:none;border:none;width:auto;padding:0;cursor:default;}
@media (max-width: 960px) {
  .page-wrap { grid-template-columns: 1fr; }

  .sidebar {
    position: static;
    height: auto;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    overflow: visible;
  }

  .sb-header { display: none; }

  .cat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    margin: 0;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: .32em;
    color: var(--gold);
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    text-align: left;
  }

  .sidebar-arrow {
    transition: transform .3s ease;
    color: var(--gold);
    flex-shrink: 0;
  }

  .sidebar.open .sidebar-arrow {
    transform: rotate(180deg);
  }

  .cat-list {
    display: none;
    padding: 8px 0 16px;
  }

  .sidebar.open .cat-list {
    display: flex;
  }

  .cat-item { font-size: 16px; padding: 10px 24px; }
  .cat-item.sub { font-size: 14px; padding: 8px 24px 8px 40px; }
  .main-content { padding: 32px 20px 60px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}
/* CAT LIST */
.cat-list{list-style:none;display:flex;flex-direction:column}
.cat-item{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border:none;background:none;cursor:pointer;width:100%;text-align:left;font-family:'Cormorant Garamond',serif;font-size:17.5px;font-weight:400;color: var(--text-primary);transition:color .2s;border-bottom:1px solid transparent}
.cat-item:hover{color:var(--text-primary)}
.cat-item.active{color:var(--gold-light);font-weight:500}
.cat-item.sub{font-size:15.5px;padding:6px 0 6px 18px;color:var(--text-muted)}
.cat-item.sub:hover{color: var(--text-primary)}
.cat-item.sub.active{color:var(--gold-light)}
.cat-arrow{flex-shrink:0;transition:transform .25s;color:var(--text-muted);display:flex;align-items:center}
.cat-item.expanded .cat-arrow{transform:rotate(90deg)}
.sub-list{list-style:none;display:flex;flex-direction:column;overflow:hidden;max-height:0;transition:max-height .35s ease}
.sub-list.open{max-height:700px}

/* MAIN */
.main-content{padding:52px 44px 80px}
.toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:36px}
.product-count{font-family:'Cormorant Garamond',serif;font-size:17px;color:var(--text-muted);font-weight:300}
.sort-select{font-family:'Cormorant Garamond',serif;font-size:17px;color:var(--text-primary);background:#2a2520;border:1px solid var(--border);padding:10px 44px 10px 16px;outline:none;cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;transition:border-color .2s;min-width:160px}
.sort-select:focus{border-color:var(--gold)}

/* GRID */
.product-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px}

/* CARD */
.product-card{cursor:pointer;background:var(--bg);transition:background .25s;position:relative}
.product-card:hover{background:var(--bg2)}
.product-img{position:relative;aspect-ratio:4/3;overflow:hidden}
.product-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s cubic-bezier(.25,.46,.45,.94)}
.product-card:hover .product-img img{transform:scale(1.04)}
.prod-badge{position:absolute;top:16px;left:16px;z-index:2;font-family:'Cinzel',serif;font-size:9px;letter-spacing:.18em;font-weight:500;text-transform:uppercase;padding:6px 12px}
.b-bs{background:rgba(26,22,12,.9);color:var(--gold-light);border:1px solid var(--gold)}
.b-rare{background:rgba(26,22,12,.9);color: var(--text-primary);border:1px solid rgba(201,168,76,.4)}
.b-feat{background:var(--gold);color:var(--bg)}
.b-new{background:rgba(26,22,12,.9);color:var(--text-primary);border:1px solid rgba(240,232,216,.3)}
.product-info{padding:20px 2px 32px}
.product-circa{font-family:'Cinzel',serif;font-size:9.5px;letter-spacing:.28em;color:var(--text-muted);text-transform:uppercase;margin-bottom:8px;display:block}
.product-name{font-family:'Playfair Display',serif;font-size:26px;font-weight:400;color:var(--text-primary);line-height:1.2;margin-bottom:10px;transition:color .2s}
.product-card:hover .product-name{color:var(--gold-light)}
.product-price{font-family:'Cormorant Garamond',serif;font-size:20px;color:var(--gold-light);font-weight:400;letter-spacing:.02em}

/* EMPTY */
.empty-state{grid-column:1/-1;text-align:center;padding:80px 24px;display:none}
.empty-icon{font-size:52px;display:block;margin-bottom:20px;opacity:.25}
.empty-title{font-family:'Playfair Display',serif;font-size:28px;color: var(--text-primary);margin-bottom:10px}
.empty-sub{font-size:18px;color:var(--text-muted)}

/* LOAD MORE */
.load-more-wrap{margin-top:60px;text-align:center;padding-top:48px;border-top:1px solid var(--border)}
.load-more-label{font-family:'Cinzel',serif;font-size:9.5px;letter-spacing:.28em;color:var(--text-muted);text-transform:uppercase;display:block;margin-bottom:8px}
.progress-bar{width:180px;height:1px;background:var(--border);margin:0 auto 28px;position:relative}
.progress-fill{position:absolute;top:0;left:0;height:100%;width:50%;background:var(--gold)}
.load-more-btn{font-family:'Cinzel',serif;font-size:10px;letter-spacing:.22em;padding:15px 44px;background:transparent;color:var(--gold-light);border:1px solid var(--gold);cursor:pointer;text-transform:uppercase;transition:all .25s;display:inline-flex;align-items:center;gap:10px}
.load-more-btn:hover{background:rgba(201,168,76,.08);transform:translateY(-2px)}

/* REVEAL FIXED */
.rev {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.rev.animate {
  opacity: 0;
  transform: translateY(16px);
}

.rev.animate.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .06s }
.d2 { transition-delay: .12s }
.d3 { transition-delay: .18s }
.d4 { transition-delay: .24s }
/* RESPONSIVE */
@media(max-width:960px){
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { position:static; height:auto; padding:0; border-right:none; border-bottom:1px solid var(--gold-dark); overflow:visible; }
  .sb-header { display:none; }
  .cat-label { display:flex; align-items:center; justify-content:space-between; width:100%; padding:16px 24px; margin:0; cursor:pointer; font-size:10px; letter-spacing:.32em; color:var(--gold); background:none; border:none; border-bottom:1px solid var(--gold-dark); text-transform:uppercase; text-align:left; }
  .sidebar-arrow { transition:transform .3s ease; color:var(--gold); flex-shrink:0; }
  .sidebar.open .sidebar-arrow { transform:rotate(180deg); }
  .cat-list { display:none; padding:8px 0 16px; }
  .sidebar.open .cat-list { display:flex; }
  .cat-item { font-size:16px; padding:10px 24px; }
  .cat-item.sub { font-size:14px; padding:8px 24px 8px 40px; }
  .main-content { padding:32px 20px 60px; }
  .sb-title { font-size:38px; }
  nav { padding:0 20px; }
  .nav-links { gap:20px; }
}
@media(max-width:560px){
  .product-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .cart-drawer { width:100vw; }
  .toast-wrap { bottom:16px; right:16px; left:16px; }
  .toast { max-width:100%; }
}
/* ═══════════════════════════════════════════
   CART & SHIPPING SYSTEM
═══════════════════════════════════════════ */
.cart-nav-btn { position:relative; background:none; border:none; cursor:pointer; padding:6px; display:flex; align-items:center; color:var(--text-primary); }
.cart-nav-btn:hover .nav-icon { color:var(--gold-light); }
.cart-badge { position:absolute; top:-2px; right:-4px; min-width:18px; height:18px; background:var(--gold); border-radius:9px; font-family:'Cinzel',serif; font-size:9px; font-weight:600; color:var(--bg-dark); display:flex; align-items:center; justify-content:center; padding:0 4px; transform:scale(0); transition:transform .25s cubic-bezier(.34,1.56,.64,1); pointer-events:none; }
.cart-badge.visible { transform:scale(1); }

.card-overlay { position:absolute; inset:0; background:rgba(26,22,18,0); display:flex; align-items:flex-end; justify-content:center; padding-bottom:20px; opacity:0; transition:opacity .3s,background .3s; z-index:3; }
.product-card:hover .card-overlay { opacity:1; background:rgba(26,22,18,.42); }
.card-atc-btn { font-family:'Cinzel',serif; font-size:9px; letter-spacing:.18em; background:rgba(26,22,18,.9); color:var(--gold-light); border:1px solid var(--gold); padding:11px 22px; cursor:pointer; display:inline-flex; align-items:center; gap:8px; transform:translateY(10px); transition:transform .25s,background .2s,color .2s; white-space:nowrap; text-transform:uppercase; }
.product-card:hover .card-atc-btn { transform:translateY(0); }
.card-atc-btn:hover, .card-atc-btn.added { background:var(--gold); color:var(--bg-dark); }

.product-footer { display:flex; align-items:center; justify-content:space-between; }
.product-atc-icon { width:32px; height:32px; border:1px solid var(--border); background:none; color:var(--text-muted); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .2s,color .2s,border-color .2s; flex-shrink:0; }
.product-atc-icon:hover, .product-atc-icon.added { background:var(--gold); color:var(--bg-dark); border-color:var(--gold); }

.cart-overlay { position:fixed; inset:0; background:rgba(26,22,18,0); z-index:200; pointer-events:none; transition:background .35s; }
.cart-overlay.open { pointer-events:auto; background:rgba(26,22,18,.65); }

.cart-drawer { position:fixed; top:0; right:0; bottom:0; width:420px; max-width:100vw; background:var(--bg-mid); transform:translateX(100%); transition:transform .42s cubic-bezier(.4,0,.2,1); z-index:201; display:flex; flex-direction:column; border-left:1px solid var(--border); }
.cart-drawer.open { transform:translateX(0); }

.drawer-head { display:flex; align-items:center; justify-content:space-between; padding:26px 28px 22px; border-bottom:1px solid var(--border); background:var(--bg-dark); flex-shrink:0; }
.drawer-head-left { display:flex; flex-direction:column; gap:4px; }
.drawer-title { font-family:'Cinzel',serif; font-size:11px; letter-spacing:.26em; color:var(--gold-light); }
.drawer-count { font-family:'Cormorant Garamond',serif; font-size:14px; color:var(--text-muted); font-weight:300; }
.drawer-close { background:none; border:none; cursor:pointer; color:var(--text-muted); padding:6px; transition:color .2s; display:flex; }
.drawer-close:hover { color:var(--gold-light); }

.drawer-items { flex:1; overflow-y:auto; padding:0; }
.drawer-items::-webkit-scrollbar { width:3px; }
.drawer-items::-webkit-scrollbar-thumb { background:var(--border); }

.cart-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; padding:64px 32px; text-align:center; }
.cart-empty-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:400; color:var(--text-primary); }
.cart-empty-sub { font-size:15px; color:var(--text-muted); font-weight:300; line-height:1.65; max-width:280px; }

.drawer-item { display:grid; grid-template-columns:88px 1fr; gap:16px; padding:20px 24px; border-bottom:1px solid var(--border); animation:diIn .28s ease forwards; }
@keyframes diIn { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }
.di-img { width:88px; height:88px; object-fit:cover; border:1px solid var(--border); }
.di-circa { font-family:'Cinzel',serif; font-size:8.5px; letter-spacing:.22em; color:var(--text-muted); text-transform:uppercase; display:block; margin-bottom:5px; }
.di-name { font-family:'Playfair Display',serif; font-size:15px; color:var(--text-primary); line-height:1.3; margin-bottom:6px; }
.di-price { font-family:'Cormorant Garamond',serif; font-size:17px; color:var(--gold-light); margin-bottom:12px; }
.di-controls { display:flex; align-items:center; justify-content:space-between; }
.qty-wrap { display:flex; align-items:center; border:1px solid var(--border); }
.qty-btn { width:28px; height:28px; background:none; border:none; cursor:pointer; font-size:16px; color:var(--text-muted); display:flex; align-items:center; justify-content:center; transition:background .15s,color .15s; font-family:'Cormorant Garamond',serif; }
.qty-btn:hover { background:rgba(201,168,76,.12); color:var(--gold-light); }
.qty-num { width:30px; text-align:center; font-family:'Cinzel',serif; font-size:11px; color:var(--text-primary); border-left:1px solid var(--border); border-right:1px solid var(--border); line-height:28px; user-select:none; }
.di-remove { background:none; border:none; cursor:pointer; font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--text-muted); text-decoration:underline; transition:color .2s; padding:0; }
.di-remove:hover { color:#c05c5c; }

.drawer-footer { border-top:1px solid var(--border); padding:20px 24px 28px; background:var(--bg-dark); flex-shrink:0; }

/* Shipping Calculator */
.shipping-calc { margin-bottom:16px; border:1px solid var(--border); }
.shipping-toggle { display:flex; align-items:center; gap:8px; padding:12px 16px; font-family:'Cinzel',serif; font-size:9px; letter-spacing:.2em; color:var(--text-muted); cursor:pointer; transition:color .2s; user-select:none; }
.shipping-toggle:hover { color:var(--gold-light); }
.shipping-arrow { margin-left:auto; transition:transform .25s; color:var(--text-muted); }
.shipping-panel { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.shipping-panel.open { max-height:200px; }
.ship-select { width:100%; background:var(--bg-mid); border:none; border-top:1px solid var(--border); color:var(--text-primary); font-family:'Cormorant Garamond',serif; font-size:15px; padding:12px 16px; outline:none; cursor:pointer; }
.ship-select option { background:var(--bg-mid); }
.ship-result { padding:10px 16px 14px; }
.ship-rate { font-family:'Playfair Display',serif; font-size:18px; color:var(--gold-light); margin-bottom:3px; }
.ship-note { font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--text-muted); }

.drawer-subtotal-row, .drawer-shipping-row, .drawer-total-row { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px; }
.drawer-subtotal-label, .drawer-total-label { font-family:'Cinzel',serif; font-size:9px; letter-spacing:.28em; color:var(--text-muted); }
.drawer-subtotal-amount { font-family:'Playfair Display',serif; font-size:22px; color:var(--gold-light); }
.drawer-shipping-amount { font-family:'Cormorant Garamond',serif; font-size:17px; color:var(--text-primary); }
.drawer-total-label { color:var(--gold); }
.drawer-total-amount { font-family:'Playfair Display',serif; font-size:26px; color:var(--gold-light); }
.drawer-subtotal-note { font-size:12px; color:var(--text-muted); font-weight:300; line-height:1.6; margin:10px 0 18px; }
.drawer-checkout-btn { width:100%; background:var(--gold); color:var(--bg-dark); border:1px solid var(--gold); font-family:'Cinzel',serif; font-size:10px; letter-spacing:.22em; padding:16px; cursor:pointer; transition:background .2s; margin-bottom:10px; }
.drawer-checkout-btn:hover { background:var(--gold-light); border-color:var(--gold-light); }
.drawer-continue-btn { width:100%; background:none; border:none; color:var(--text-muted); font-family:'Cormorant Garamond',serif; font-size:15px; cursor:pointer; padding:8px; text-decoration:underline; transition:color .2s; }
.drawer-continue-btn:hover { color:var(--text-primary); }

.toast-wrap { position:fixed; bottom:28px; right:28px; z-index:300; display:flex; flex-direction:column; gap:10px; pointer-events:none; }
.toast { display:flex; align-items:center; gap:14px; background:var(--bg-mid); border:1px solid var(--border); border-left:3px solid var(--gold); padding:14px 16px; max-width:320px; box-shadow:0 8px 32px rgba(0,0,0,.4); animation:toastIn .3s ease forwards; pointer-events:auto; }
.toast.out { animation:toastOut .3s ease forwards; }
@keyframes toastIn { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes toastOut { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(40px); } }
.toast-img { width:44px; height:44px; object-fit:cover; border:1px solid var(--border); flex-shrink:0; }
.toast-body { flex:1; display:flex; flex-direction:column; gap:2px; min-width:0; }
.toast-name { font-family:'Playfair Display',serif; font-size:13px; color:var(--gold-light); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.toast-msg { font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--text-muted); }
.toast-view { font-family:'Cinzel',serif; font-size:8.5px; letter-spacing:.16em; background:none; border:1px solid var(--gold); color:var(--gold); padding:6px 12px; cursor:pointer; transition:background .2s,color .2s; white-space:nowrap; flex-shrink:0; }
.toast-view:hover { background:var(--gold); color:var(--bg-dark); }

@media (max-width:560px) {
  .cart-drawer { width:100vw; }
  .toast-wrap { bottom:16px; right:16px; left:16px; }
  .toast { max-width:100%; }
}

.coming-soon-box {
  text-align: center;
  padding: 100px 20px;
}

.coming-soon-box h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-dark);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.coming-soon-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  opacity: 0.7;
}

.coming-soon-home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  text-align: center;
}

.coming-soon-content {
  max-width: 600px;
  padding: 60px 20px;
}

.coming-soon-title {
  font-family:'Cormorant Garamond', serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color:#e2c47a
}

.coming-soon-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  opacity: 0.75;
  margin-bottom: 20px;
}

.coming-soon-line {
  width: 80px;
  height: 1px;
  background: #c9a84c;
  margin: 0 auto 20px;
}

.coming-soon-sub {
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
  font-size: 14px;
  color: #c9a84c;
}