/* ============================================================
   ARINOR® Juwelier — style.css
   Fonts loaded via Google Fonts in index.html
   ============================================================ */

/* ───── VARIABLES & RESET ───── */
:root {
  --gold: #C9A96E;
  --gold-light: #DFC090;
  --gold-dark: #A8854A;
  --offwhite: #FAF8F5;
  --cream: #F4F0E8;
  --parchment: #EDE8E0;
  --charcoal: #1A1A1A;
  --charcoal-mid: #3A3A3A;
  --gray: #888;
  --gray-light: #D9D4CA;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --pad: 100px;
  --tr: .35s cubic-bezier(.25, .46, .45, .94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--offwhite); color: var(--charcoal); font-family: var(--font-sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; letter-spacing: .01em; }

/* ───── UTILITIES ───── */
.section-label { font-family: var(--font-sans); font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--charcoal); margin-bottom: 1.5rem; }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.gold-line.left { margin: 1.5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.btn-primary { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 2.2rem; background: var(--charcoal); color: var(--offwhite); font-family: var(--font-sans); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: background var(--tr), transform var(--tr); }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 2.2rem; border: 1px solid var(--charcoal); color: var(--charcoal); font-family: var(--font-sans); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: border-color var(--tr), color var(--tr), transform var(--tr); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ───── REVEAL ANIMATIONS ───── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }

/* ───── HEADER ───── */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(250,248,245,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-light); transition: box-shadow var(--tr); }
#header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
/* Change "01-scaled.png" in index.html to match your logo filename */
.logo-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { font-size: .73rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--charcoal-mid); transition: color var(--tr); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--tr); transform-origin: left; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: 4px; background: rgba(250,248,245,.95); border: 1px solid var(--gray-light); cursor: pointer; flex-shrink: 0; }
.hamburger span { display: block; height: 1.5px; width: 100%; background: var(--charcoal); transition: var(--tr); border-radius: 2px; }
.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 Nav ── */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--offwhite); border-bottom: 1px solid var(--gray-light); padding: 1.8rem 2rem; z-index: 999; flex-direction: column; gap: 0; transform: translateY(-105%); opacity: 0; pointer-events: none; transition: transform .32s ease, opacity .32s ease; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal-mid); padding: .9rem 0; border-bottom: 1px solid rgba(217,212,202,.5); display: flex; align-items: center; gap: .6rem; transition: color var(--tr); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ───── HERO ───── */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 2rem 100px; position: relative; background-color: var(--offwhite); background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,169,110,.07) 0%, transparent 70%); overflow: hidden; }
.hero-deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(700px,90vw); height: min(700px,90vw); border: 1px solid rgba(201,169,110,.12); border-radius: 50%; pointer-events: none; }
.hero-deco::before { content: ''; position: absolute; inset: 30px; border: 1px solid rgba(201,169,110,.08); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-serif); font-size: clamp(3.2rem,8vw,6.5rem); font-weight: 300; line-height: 1.05; color: var(--charcoal); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold-dark); }
.hero-tagline { font-family: var(--font-serif); font-size: clamp(1rem,2vw,1.25rem); font-weight: 300; font-style: italic; color: var(--gray); margin-bottom: 3rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ───── CATEGORIES CAROUSEL ───── */
#categories { padding: var(--pad) 0; background: var(--offwhite); }
.cat-header { padding: 0 2.5rem; text-align: center; margin-bottom: 3rem; }
.cat-carousel-outer { position: relative; max-width: 1400px; margin: 0 auto; }
.cat-carousel-outer::before, .cat-carousel-outer::after { content: ''; position: absolute; top: 0; bottom: 1rem; width: 60px; z-index: 2; pointer-events: none; }
.cat-carousel-outer::before { left: 0; background: linear-gradient(to right, var(--offwhite), transparent); }
.cat-carousel-outer::after { right: 0; background: linear-gradient(to left, var(--offwhite), transparent); }
.cat-track { display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: .5rem 2.5rem 1.2rem; }
.cat-track::-webkit-scrollbar { display: none; }
.category-card { flex: 0 0 170px; scroll-snap-align: start; cursor: pointer; border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden; transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr); background: var(--offwhite); }
.category-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(201,169,110,.18); }
.category-bg { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .9rem; padding: 1.4rem 1rem 1rem; transition: background .35s; }
.category-card:hover .category-bg { background: rgba(201,169,110,.06); }
.cat-icon-wrap { width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid rgba(201,169,110,.4); background: rgba(201,169,110,.08); display: flex; align-items: center; justify-content: center; transition: all .45s; flex-shrink: 0; }
.category-card:hover .cat-icon-wrap { border-color: var(--gold); background: rgba(201,169,110,.18); transform: scale(1.1) rotate(-6deg); }
.cat-icon-wrap svg { width: 34px; height: 34px; color: var(--gold); }
.cat-label-inner { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--charcoal); letter-spacing: .03em; text-align: center; transition: color .3s; }
.cat-sub { font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); text-align: center; }
.cat-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; padding: 0 2.5rem; }
.cat-dots { display: flex; gap: .5rem; align-items: center; }
.cat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-light); border: none; cursor: pointer; transition: background var(--tr), transform var(--tr); }
.cat-dot.active { background: var(--gold); transform: scale(1.4); }
.cat-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gray-light); background: var(--offwhite); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--tr); color: var(--charcoal-mid); }
.cat-arrow:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.cat-arrow svg { width: 16px; height: 16px; }

/* ───── PRODUCTS (shared) ───── */
.product-card { flex: 0 0 260px; scroll-snap-align: start; cursor: pointer; transition: transform var(--tr); }
.product-card:hover { transform: translateY(-6px); }
.product-img { aspect-ratio: 3/4; background: var(--parchment); position: relative; overflow: hidden; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
.product-img-inner { position: absolute; inset: 0; background: linear-gradient(135deg,#ede8e0 0%,#e4ddd3 100%); transition: transform .5s ease; z-index: 0; }
.product-card:hover .product-img-inner { transform: scale(1.05); }
.prod-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; display: block; }
.product-img:has(.prod-img[src]:not([src=""])) .product-img-inner { display: none; }
.product-img:has(.prod-img[src]:not([src=""])) .product-img-inner::after { display: none; }
.product-info { padding: 0 .2rem; }
.product-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--charcoal); text-align: center; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.products-grid .product-card { flex: none; }

/* ───── BESTSELLERS ───── */
#bestsellers { padding: var(--pad) 2.5rem; background: var(--cream); }
.bestsellers-inner { max-width: 1400px; margin: 0 auto; }

/* ───── NEW ARRIVALS ───── */
#new-arrivals { padding: var(--pad) 0; background: var(--cream); }
.arrivals-inner { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
.arrivals-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.view-all-link { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color var(--tr); }
.view-all-link:hover { color: var(--gold-dark); }
.scroll-track { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold-light) var(--cream); }
.scroll-track::-webkit-scrollbar { height: 2px; }
.scroll-track::-webkit-scrollbar-thumb { background: var(--gold-light); }

/* ───── ABOUT ───── */
#about { padding: var(--pad) 0; background: var(--offwhite); }
.about-inner { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-title { font-family: var(--font-serif); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 2rem; }
.about-title em { font-style: italic; color: var(--gold-dark); }
.about-body { font-size: .9rem; color: var(--charcoal-mid); line-height: 1.95; margin-bottom: 2.5rem; }
.about-values { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.about-value-item { display: flex; align-items: flex-start; gap: .9rem; }
.about-value-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,169,110,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.about-value-icon svg { width: 16px; height: 16px; }
.about-value-text strong { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--charcoal); display: block; margin-bottom: .15rem; }
.about-value-text span { font-size: .82rem; color: var(--gray); line-height: 1.6; }
.about-img-side { position: relative; }
/* Store image — change src in index.html to your filename */
.store-img-wrap { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.store-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-img-wrap::before, .store-img-wrap::after { content: ''; position: absolute; width: 40px; height: 40px; z-index: 2; pointer-events: none; }
.store-img-wrap::before { top: 16px; left: 16px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.store-img-wrap::after { bottom: 16px; right: 16px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ───── INSTAGRAM ───── */
#instagram { padding: var(--pad) 2.5rem; background: var(--offwhite); }
.instagram-inner { max-width: 1200px; margin: 0 auto; }
.instagram-header { text-align: center; margin-bottom: 3rem; }
.instagram-handle { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; letter-spacing: .1em; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; margin-top: .8rem; transition: color var(--tr); }
.instagram-handle:hover { color: var(--gold-dark); }
.instagram-handle svg { width: 16px; height: 16px; }
.insta-single-wrap { display: flex; justify-content: center; }
.insta-single-wrap blockquote.instagram-media { margin: 0 auto !important; max-width: 540px !important; width: 100% !important; border-radius: 4px !important; box-shadow: 0 4px 32px rgba(0,0,0,.08) !important; }
.insta-cta { text-align: center; margin-top: 2.5rem; }

/* ───── CONTACT ───── */
#contact { padding: var(--pad) 0; background: var(--cream); }
.contact-inner { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: stretch; }
.contact-info-panel { background: var(--charcoal); color: rgba(250,248,245,.85); padding: 3rem 2.5rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.contact-info-panel::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border: 1px solid rgba(201,169,110,.12); border-radius: 50%; }
.contact-info-panel::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; border: 1px solid rgba(201,169,110,.08); border-radius: 50%; }
.contact-panel-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--offwhite); margin-bottom: .5rem; }
.contact-panel-sub { font-size: .8rem; color: rgba(250,248,245,.45); letter-spacing: .06em; margin-bottom: 2.5rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 2rem; position: relative; z-index: 1; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.c-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(201,169,110,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.c-icon svg { width: 18px; height: 18px; }
.c-label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.c-value { font-size: .88rem; line-height: 1.65; color: rgba(250,248,245,.8); }
.c-value a { color: rgba(250,248,245,.8); transition: color var(--tr); }
.c-value a:hover { color: var(--gold); }
.contact-map-side { display: flex; flex-direction: column; }
.map-wrap { width: 100%; flex: 1; min-height: 380px; border-radius: 2px; overflow: hidden; border: 1px solid var(--gray-light); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; position: absolute; inset: 0; }

/* ───── CONTACT STRIP ───── */
#contact-strip { padding: 3.5rem 2.5rem; background: var(--charcoal); color: rgba(250,248,245,.8); }
.contact-strip-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.contact-icon-circle { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(201,169,110,.35); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-icon-circle svg { width: 22px; height: 22px; }
.contact-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-value { font-size: .88rem; line-height: 1.6; }
.contact-value a { color: rgba(250,248,245,.8); transition: color var(--tr); }
.contact-value a:hover { color: var(--gold); }

/* ───── TESTIMONIALS ───── */
#testimonials { padding: var(--pad) 2.5rem; text-align: center; background: var(--cream); position: relative; overflow: hidden; }
#testimonials::before { content: '"'; position: absolute; top: 2rem; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-size: 20rem; color: rgba(201,169,110,.06); line-height: 1; pointer-events: none; user-select: none; }
.testimonials-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.carousel-wrap { position: relative; min-height: 220px; }
.testimonial-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.testimonial-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.stars { display: flex; gap: 4px; color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.testimonial-quote { font-family: var(--font-serif); font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--charcoal); }
.testimonial-author { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.carousel-dots { display: flex; gap: .6rem; justify-content: center; margin-top: 2.5rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-light); cursor: pointer; transition: background var(--tr), transform var(--tr); border: none; }
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ───── NEWSLETTER ───── */
#newsletter { padding: var(--pad) 2.5rem; background: #111; text-align: center; }
.newsletter-inner { max-width: 520px; margin: 0 auto; }
#newsletter .section-label { color: var(--gold-light); }
#newsletter .section-title { color: var(--offwhite); font-size: clamp(1.8rem,3.5vw,2.6rem); }
.newsletter-sub { font-size: .85rem; color: rgba(250,248,245,.55); margin-bottom: 2.5rem; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; padding: .9rem 1.2rem; background: rgba(255,255,255,.08); border: 1px solid rgba(201,169,110,.35); border-right: none; color: var(--offwhite); font-family: var(--font-sans); font-size: .82rem; font-weight: 300; outline: none; transition: border-color var(--tr); }
.newsletter-form input::placeholder { color: rgba(250,248,245,.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: .9rem 1.8rem; background: var(--gold); color: var(--charcoal); font-family: var(--font-sans); font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; transition: background var(--tr); }
.newsletter-form button:hover { background: var(--gold-light); }

/* ───── FOOTER ───── */
#footer { padding: 4rem 2.5rem 2.5rem; background: #0e0e0e; color: rgba(250,248,245,.6); }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; line-height: 1.7; max-width: 220px; }
.footer-col-title { font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-hours-row { display: flex; justify-content: space-between; gap: .8rem; font-size: .78rem; color: rgba(250,248,245,.5); padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row span:last-child { color: rgba(250,248,245,.75); white-space: nowrap; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(250,248,245,.55); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: .8rem; margin-top: .5rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,.25); display: flex; align-items: center; justify-content: center; color: rgba(250,248,245,.55); transition: all var(--tr); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .73rem; color: rgba(250,248,245,.3); }

/* ───── SCROLL TO TOP ───── */
#scrollTop { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; width: 46px; height: 46px; border-radius: 50%; background: var(--charcoal); border: 1px solid rgba(201,169,110,.4); color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s, background var(--tr), border-color var(--tr); box-shadow: 0 4px 16px rgba(0,0,0,.25); }
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
#scrollTop svg { width: 18px; height: 18px; }

/* ───── RESPONSIVE ───── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  :root { --pad: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cat-carousel-outer::before, .cat-carousel-outer::after { width: 24px; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 1.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  #bestsellers, #instagram, #newsletter, #footer, #contact-strip { padding-left: 1.2rem; padding-right: 1.2rem; }
  .arrivals-inner, .contact-inner, .about-inner { padding: 0 1.2rem; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(201,169,110,.35); border-bottom: none; }
  .cat-header { padding: 0 1.2rem; }
  .cat-track { padding: .5rem 1.2rem 1.2rem; }
  .map-wrap { height: 280px; }
  .contact-info-panel { padding: 2rem 1.5rem; }
  #scrollTop { bottom: 1.2rem; right: 1.2rem; }
}
