:root {
  --gold: #C6A94D;
  --gold-light: #D4BC6A;
  --gold-dark: #A08030;
  --gold-pale: #2A2416;
  --gold-subtle: #1E1A12;
  --bg-primary: #0D0B08;
  --bg-secondary: #13100B;
  --bg-card: #181410;
  --bg-card-hover: #1E1A12;
  --white: #F5EDD6;
  --off-white: #0D0B08;
  --cream: #13100B;
  --text-dark: #F5EDD6;
  --text-muted: #A09680;
  --text-light: #6B6050;
  --border: #2A2416;
  --shadow: rgba(198,169,77,0.06);
  --ease-out-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-height: 60px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body {
  font-family:'Nunito Sans',sans-serif;
  font-weight:300;
  color:var(--text-dark);
  background:var(--bg-primary);
  line-height:1.7;
  overflow-x:hidden;
  width:100%;
  -webkit-text-size-adjust:100%;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  font-feature-settings:"kern" 1, "liga" 1;
}
img,svg { max-width:100%; height:auto; }
h1,h2,h3,h4 {
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  letter-spacing:0.02em;
}

/* NAVBAR */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(13,11,8,0.88);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--border);
  transition:all 0.4s ease;
}
.navbar.scrolled { box-shadow:0 2px 40px rgba(198,169,77,0.08); }
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; height:60px;
}
.nav-logo {
  height:40px; cursor:pointer; transition:transform 0.3s ease; flex-shrink:0;
  mix-blend-mode:lighten;
}
.nav-logo:hover { transform:scale(1.05); }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a {
  text-decoration:none; color:var(--text-muted); font-size:11px; font-weight:400;
  letter-spacing:0.18em; text-transform:uppercase; position:relative;
  transition:color 0.3s ease; white-space:nowrap;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold); transition:width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-right { display:flex; align-items:center; gap:16px; flex-shrink:0; }
.cart-icon {
  position:relative; cursor:pointer; color:var(--text-muted);
  transition:color 0.3s ease; -webkit-tap-highlight-color:transparent;
}
.cart-icon:hover { color:var(--gold); }
.cart-icon svg { width:20px; height:20px; display:block; }
.cart-badge {
  position:absolute; top:-5px; right:-7px; background:var(--gold);
  color:var(--bg-primary); font-size:9px; font-weight:600;
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  padding:8px 4px; -webkit-tap-highlight-color:transparent;
}
.hamburger span { display:block; width:20px; height:1px; background:var(--gold); transition:all 0.3s ease; }

/* HERO */
.hero {
  min-height:100vh; min-height:100dvh;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background:var(--bg-primary);
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 40%, rgba(198,169,77,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.hero-content {
  position:relative; z-index:2; text-align:center;
  padding:0 24px; animation:fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.hero-logo-wrap {
  width:160px; height:160px; margin:0 auto 24px;
  border-radius:50%; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(198,169,77,0.2);
}
.hero-logo-wrap img { width:100%; height:100%; object-fit:cover; }
.hero-tagline {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(20px,4vw,36px); font-weight:300; font-style:italic;
  color:var(--gold); margin-bottom:12px; letter-spacing:0.06em;
}
.hero-subtitle {
  font-size:13px; color:var(--text-muted); max-width:440px;
  margin:0 auto 32px; line-height:1.9; padding:0 8px;
}
.hero-cta {
  display:inline-block; padding:13px 40px;
  border:1px solid var(--gold); color:var(--gold);
  text-decoration:none; font-size:10px; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  transition:all 0.4s ease; -webkit-tap-highlight-color:transparent;
}
.hero-cta:hover, .hero-cta:active { background:var(--gold); color:var(--bg-primary); }

/* FEATURED STRIP */
.featured-strip {
  display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  max-width:100%; overflow:hidden;
}
.featured-strip img {
  width:100%; aspect-ratio:1; object-fit:cover; display:block;
  filter:brightness(0.7); transition:all 0.5s ease;
}
.featured-strip img:hover { filter:brightness(0.9); }

/* GOLD DIVIDER LINE */
.gold-line {
  height:1px; background:linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  max-width:200px; margin:0 auto;
}

/* SECTIONS */
.section { padding:56px 20px; max-width:1200px; margin:0 auto; width:100%; }
.section-title {
  text-align:center; margin-bottom:10px;
  font-size:clamp(24px,3.5vw,36px); color:var(--text-dark);
}
.section-divider { width:40px; height:1px; background:var(--gold); margin:0 auto 10px; }
.section-desc {
  text-align:center; color:var(--text-muted); font-size:13px;
  max-width:520px; margin:0 auto 36px; padding:0 8px;
}

/* ABOUT */
.about-section { background:var(--bg-secondary); width:100%; }
.about-inner { max-width:1200px; margin:0 auto; padding:56px 20px; }
.about-text {
  max-width:680px; margin:0 auto 40px; text-align:center;
  font-size:14px; color:var(--text-muted); line-height:2;
}
.about-text p { margin-bottom:16px; }
.about-text em { color:var(--gold); font-style:italic; }
.about-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.about-card {
  text-align:center; padding:28px 16px;
  border:1px solid var(--border); background:var(--bg-card);
  transition:all 0.3s ease;
}
.about-card:hover { border-color:rgba(198,169,77,0.3); }
.about-icon { width:36px; height:36px; margin:0 auto 16px; color:var(--gold); }
.about-card h3 { font-size:18px; margin-bottom:8px; color:var(--text-dark); }
.about-card p { font-size:12px; color:var(--text-muted); line-height:1.8; }

/* PRODUCTS */
.products-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px; width:100%;
}
.product-card {
  background:var(--bg-card); border:1px solid var(--border);
  cursor:pointer; transition:all 0.4s ease; overflow:hidden;
  -webkit-tap-highlight-color:transparent;
}
.product-card:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 40px var(--shadow);
  border-color:rgba(198,169,77,0.3);
}
.product-card-img-wrap { width:100%; aspect-ratio:1; overflow:hidden; background:#1a1710; }
.product-card-img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.6s ease;
}
.product-card:hover .product-card-img { transform:scale(1.04); }
.product-card-body { padding:16px; }
.product-card-category {
  font-size:9px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gold); margin-bottom:5px;
}
.product-card-name {
  font-family:'Cormorant Garamond',serif; font-size:17px;
  color:var(--text-dark); margin-bottom:5px;
}
.product-card-price { font-size:14px; color:var(--gold); font-weight:600; }
.product-card-size { font-size:11px; color:var(--text-light); margin-top:3px; }

/* MODAL */
.modal-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.7); z-index:2000;
  align-items:center; justify-content:center;
  padding:16px; overflow-y:auto; -webkit-overflow-scrolling:touch;
}
.modal-overlay.active { display:flex; }
.modal {
  background:var(--bg-secondary); border:1px solid var(--border);
  max-width:860px; width:100%;
  max-height:92vh; max-height:92dvh;
  overflow-y:auto; -webkit-overflow-scrolling:touch;
  position:relative; animation:modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.96) translateY(12px); }
  to { opacity:1; transform:scale(1) translateY(0); }
}
.modal-close {
  position:absolute; top:12px; right:12px; width:36px; height:36px;
  border:1px solid var(--border); background:var(--bg-secondary);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  font-size:18px; color:var(--text-muted); transition:all 0.3s ease; z-index:10;
}
.modal-close:hover { border-color:var(--gold); color:var(--gold); }
.modal-body { display:grid; grid-template-columns:1fr 1fr; }
.modal-img { width:100%; height:100%; object-fit:cover; min-height:340px; }
.modal-info { padding:32px 28px; display:flex; flex-direction:column; justify-content:center; }
.modal-category { font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.modal-name { font-size:26px; color:var(--text-dark); margin-bottom:5px; line-height:1.3; }
.modal-code { font-size:11px; color:var(--text-light); letter-spacing:0.1em; margin-bottom:14px; }
.modal-desc { font-size:13px; color:var(--text-muted); line-height:1.8; margin-bottom:20px; }
.modal-specs {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
  margin-bottom:20px; padding:14px 0;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.modal-spec-label { font-size:9px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-light); margin-bottom:2px; }
.modal-spec-value { font-size:13px; color:var(--text-dark); }
.modal-price { font-family:'Cormorant Garamond',serif; font-size:30px; color:var(--gold); margin-bottom:20px; }
.modal-price span { font-size:14px; color:var(--text-muted); font-family:'Nunito Sans',sans-serif; font-weight:300; }
.modal-qty { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.modal-qty label { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); }
.qty-controls { display:flex; align-items:center; border:1px solid var(--border); }
.qty-btn {
  width:34px; height:34px; border:none; background:transparent; cursor:pointer;
  font-size:15px; color:var(--text-muted); transition:all 0.2s ease;
}
.qty-btn:active { color:var(--gold); background:var(--gold-subtle); }
.qty-value { width:38px; text-align:center; font-size:13px; border-left:1px solid var(--border); border-right:1px solid var(--border); line-height:34px; color:var(--text-dark); }
.modal-actions { display:flex; gap:8px; }
.btn-cart {
  flex:1; padding:13px 14px; border:1px solid var(--gold); background:transparent;
  color:var(--gold); font-size:10px; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; cursor:pointer; transition:all 0.3s ease;
  font-family:'Nunito Sans',sans-serif;
}
.btn-cart:active { background:var(--gold-subtle); }
.btn-buy {
  flex:1; padding:13px 14px; border:1px solid var(--gold); background:var(--gold);
  color:var(--bg-primary); font-size:10px; font-weight:600; letter-spacing:0.14em;
  text-transform:uppercase; cursor:pointer; transition:all 0.3s ease;
  font-family:'Nunito Sans',sans-serif;
}
.btn-buy:active { background:var(--gold-dark); border-color:var(--gold-dark); }

/* CART DRAWER */
.cart-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:3000; }
.cart-overlay.active { display:block; }
.cart-drawer {
  position:fixed; top:0; right:-100%; bottom:0;
  width:340px; max-width:88vw; background:var(--bg-secondary);
  border-left:1px solid var(--border);
  z-index:3001; transition:right 0.4s ease;
  display:flex; flex-direction:column;
}
.cart-drawer.active { right:0; }
.cart-header {
  padding:20px; border-bottom:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-shrink:0;
}
.cart-header h3 { font-size:20px; color:var(--text-dark); }
.cart-close { cursor:pointer; border:none; background:none; font-size:20px; color:var(--text-muted); }
.cart-items { flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch; padding:12px 20px; }
.cart-empty { text-align:center; padding:40px 0; color:var(--text-light); font-size:13px; }
.cart-item { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--border); }
.cart-item-img { width:56px; height:56px; object-fit:cover; flex-shrink:0; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-name { font-family:'Cormorant Garamond',serif; font-size:14px; margin-bottom:2px; color:var(--text-dark); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.cart-item-price { font-size:12px; color:var(--gold); font-weight:600; }
.cart-item-qty { font-size:10px; color:var(--text-muted); margin-top:2px; }
.cart-item-remove { font-size:10px; color:var(--text-light); cursor:pointer; border:none; background:none; text-decoration:underline; margin-top:2px; }
.cart-footer {
  padding:20px; border-top:1px solid var(--border); flex-shrink:0;
  padding-bottom:max(20px, env(safe-area-inset-bottom, 20px));
}
.cart-total { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.cart-total-label { font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); }
.cart-total-value { font-family:'Cormorant Garamond',serif; font-size:24px; color:var(--gold); }
.btn-checkout {
  width:100%; padding:13px; background:var(--gold); border:none;
  color:var(--bg-primary); font-size:10px; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase; cursor:pointer;
  font-family:'Nunito Sans',sans-serif;
}

/* CONTACT */
.contact-section { background:var(--bg-secondary); width:100%; }
.contact-inner { max-width:1200px; margin:0 auto; padding:56px 20px; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:36px; }
.contact-info h3 { font-size:22px; margin-bottom:14px; color:var(--text-dark); }
.contact-info p { color:var(--text-muted); font-size:13px; line-height:1.8; margin-bottom:18px; }
.contact-detail { display:flex; align-items:center; gap:10px; margin-bottom:12px; color:var(--text-muted); font-size:13px; word-break:break-word; }
.contact-detail a { color:var(--text-muted); text-decoration:none; transition:color 0.3s; }
.contact-detail a:hover { color:var(--gold); }
.contact-detail svg { width:18px; height:18px; color:var(--gold); flex-shrink:0; }
.social-links { display:flex; gap:16px; margin-top:20px; }
.social-links a {
  width:40px; height:40px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); transition:all 0.3s ease; text-decoration:none;
}
.social-links a:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-subtle); }
.social-links a svg { width:18px; height:18px; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:4px; }
.form-group label { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); }
.form-group input, .form-group textarea {
  padding:11px 14px; border:1px solid var(--border); background:var(--bg-card);
  font-family:'Nunito Sans',sans-serif; font-size:13px; font-weight:300;
  color:var(--text-dark); outline:none; border-radius:0; -webkit-appearance:none; width:100%;
  transition:border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { resize:vertical; min-height:90px; }
.btn-send {
  padding:13px 36px; background:var(--gold); border:none;
  color:var(--bg-primary); font-size:10px; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase; cursor:pointer;
  font-family:'Nunito Sans',sans-serif; align-self:flex-start;
}

/* FOOTER */
.footer {
  background:#080705; border-top:1px solid var(--border);
  padding:40px 20px 20px; text-align:center; width:100%;
  padding-bottom:max(20px, env(safe-area-inset-bottom, 20px));
}
.footer-logo { height:48px; margin-bottom:16px; mix-blend-mode:lighten; }
.footer-links { display:flex; justify-content:center; gap:20px; margin-bottom:16px; flex-wrap:wrap; }
.footer-links a {
  color:var(--text-light); text-decoration:none; font-size:10px;
  letter-spacing:0.12em; text-transform:uppercase; transition:color 0.3s ease;
}
.footer-links a:hover { color:var(--gold); }
.footer-social { display:flex; justify-content:center; gap:14px; margin-bottom:16px; }
.footer-social a {
  color:var(--text-light); transition:color 0.3s; text-decoration:none;
}
.footer-social a:hover { color:var(--gold); }
.footer-social svg { width:18px; height:18px; }
.footer-text { font-size:11px; color:var(--text-light); opacity:0.5; margin-top:16px; padding-top:16px; border-top:1px solid var(--border); }

/* NOTIFICATION */
.notification {
  position:fixed; bottom:max(16px, env(safe-area-inset-bottom, 16px));
  left:16px; right:16px; background:var(--gold); color:var(--bg-primary);
  padding:12px 20px; font-size:12px; font-weight:600; z-index:5000;
  transform:translateY(100px); opacity:0; transition:all 0.4s ease; text-align:center;
  letter-spacing:0.04em;
}
.notification.show { transform:translateY(0); opacity:1; }

/* FILTER */
.filter-bar { display:flex; justify-content:center; gap:6px; margin-bottom:32px; flex-wrap:wrap; padding:0 4px; }
.filter-btn {
  padding:8px 16px; border:1px solid var(--border); background:transparent;
  font-family:'Nunito Sans',sans-serif; font-size:10px; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--text-muted); cursor:pointer;
  transition:all 0.3s ease; white-space:nowrap;
}
.filter-btn:hover, .filter-btn.active {
  border-color:var(--gold); color:var(--gold); background:var(--gold-subtle);
}

/* RESPONSIVE */
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-links.mobile-open {
    display:flex; flex-direction:column; position:absolute;
    top:60px; left:0; right:0; background:rgba(13,11,8,0.97);
    backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
    padding:20px; gap:16px; border-bottom:1px solid var(--border);
  }
  .hamburger { display:flex; }
  .hero { min-height:80vh; min-height:80dvh; }
  .hero-logo-wrap { width:120px; height:120px; }
  .featured-strip { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; gap:12px; }
  .products-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .product-card-body { padding:12px; }
  .product-card-name { font-size:14px; }
  .product-card-price { font-size:12px; }
  .product-card-size { font-size:10px; }
  .modal-body { grid-template-columns:1fr; }
  .modal-img { min-height:220px; max-height:280px; }
  .modal-info { padding:20px 18px; }
  .modal-name { font-size:22px; }
  .modal-price { font-size:26px; }
  .contact-grid { grid-template-columns:1fr; gap:28px; }
  .btn-send { align-self:stretch; text-align:center; }
  .section { padding:40px 16px; }
  .about-inner,.contact-inner { padding:40px 16px; }
}
@media (max-width:380px) {
  .products-grid { grid-template-columns:1fr; gap:12px; }
  .modal-actions { flex-direction:column; }
  .filter-btn { padding:6px 10px; font-size:9px; }
}

.reveal { opacity:0; transform:translateY(20px); transition:all 0.6s var(--ease-out-soft); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   REFINEMENTS — light aesthetic polish layered on the base
   ============================================================ */

/* Anchor scroll offset so fixed navbar doesn't overlap titles */
section[id], div[id] { scroll-margin-top: calc(var(--nav-height) + 12px); }

/* Thin gold scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--gold-dark) var(--bg-primary); }
::-webkit-scrollbar { width:8px; height:8px; }
::-webkit-scrollbar-track { background:var(--bg-primary); }
::-webkit-scrollbar-thumb { background:var(--gold-dark); border-radius:4px; border:2px solid var(--bg-primary); }
::-webkit-scrollbar-thumb:hover { background:var(--gold); }

/* Accessible focus rings */
:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
  transition: outline-offset 0.15s ease;
}
.filter-btn:focus-visible, .hero-cta:focus-visible,
.btn-cart:focus-visible, .btn-buy:focus-visible,
.btn-send:focus-visible, .btn-checkout:focus-visible {
  outline-offset: 2px;
}

/* Hero: richer radial ambience + soft halo around logo */
.hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(198,169,77,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(198,169,77,0.03) 0%, transparent 45%);
}
.hero-logo-wrap {
  box-shadow:
    0 0 0 1px rgba(198,169,77,0.18) inset,
    0 8px 32px rgba(198,169,77,0.08),
    0 0 80px rgba(198,169,77,0.05);
  position: relative;
}
.hero-logo-wrap::after {
  content:''; position:absolute; inset:-10px;
  border:1px solid rgba(198,169,77,0.12);
  border-radius:50%; pointer-events:none;
  animation: halo-breath 6s var(--ease-in-out-soft) infinite;
}
@keyframes halo-breath {
  0%, 100% { opacity:0.35; transform:scale(1); }
  50%      { opacity:0.7;  transform:scale(1.04); }
}

/* Section divider: fading gradient line */
.section-divider {
  width:80px; height:1px; margin:0 auto 14px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.85;
}

/* Smoother easing + subtle lift on interactive elements */
.hero-cta,
.btn-cart, .btn-buy, .btn-send, .btn-checkout,
.filter-btn {
  transition: background 0.35s var(--ease-out-soft),
              color 0.35s var(--ease-out-soft),
              border-color 0.35s var(--ease-out-soft),
              letter-spacing 0.35s var(--ease-out-soft),
              transform 0.35s var(--ease-out-soft);
}
.hero-cta:hover { letter-spacing: 0.28em; transform: translateY(-1px); }
.btn-send:hover, .btn-checkout:hover { letter-spacing: 0.2em; }

/* Product & about cards: softer motion */
.product-card {
  transition: transform 0.45s var(--ease-out-soft),
              border-color 0.35s ease,
              box-shadow 0.45s var(--ease-out-soft);
}
.product-card:hover { transform: translateY(-4px); }
.product-card-img { transition: transform 0.8s var(--ease-out-soft), filter 0.4s ease; }
.product-card:hover .product-card-img { transform: scale(1.06); filter: brightness(1.06); }

.about-card { transition: transform 0.4s var(--ease-out-soft), border-color 0.35s ease, background 0.35s ease; }
.about-card:hover { transform: translateY(-2px); background: var(--bg-card-hover); }

/* Subtle image base tint while loading */
.product-card-img-wrap,
.featured-strip img,
.modal-img { background: #181410; }

/* Featured strip: slower, richer hover */
.featured-strip img { transition: filter 0.7s var(--ease-out-soft), transform 0.7s var(--ease-out-soft); }
.featured-strip img:hover { filter: brightness(1); transform: scale(1.02); }

/* Form polish */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light); opacity: 0.55; font-style: italic;
}
.form-group input, .form-group textarea {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { background: var(--bg-card-hover); }

/* Cart drawer edge shadow */
.cart-drawer { box-shadow: -20px 0 60px rgba(0,0,0,0.35); }

/* Nav logo subtle glow on hover */
.nav-logo { transition: transform 0.35s var(--ease-out-soft), filter 0.35s ease; }
.nav-logo:hover { filter: drop-shadow(0 0 8px rgba(198,169,77,0.2)); }

/* Cart badge: gentle pulse when it first appears */
.cart-badge { box-shadow: 0 0 0 0 rgba(198,169,77,0.5); }

/* Modal: deeper backdrop */
.modal-overlay { background: rgba(5,4,3,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal { box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-logo-wrap::after { animation: none; }
}
