/** Shopify CDN: Minification failed

Line 42:0 All "@import" rules must come first

**/
/* ═══════════════════════════════════════════════════════
   Basque & Co — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

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

:root {
  --gold:       #c4a46b;
  --gold-dark:  #a8893a;
  --espresso:   #3d2b1f;
  --cream:      #f9f6f2;
  --sand:       #ddd5c8;
  --taupe:      #b0a090;
  --brown:      #7a6555;
  --white:      #ffffff;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Jost', system-ui, sans-serif;
  --max-w:      1100px;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--espresso);
  overflow-x: hidden;
  background-color: #f8f6f3;
  background-image: url('marble-bg.jpg');
  background-repeat: repeat;
  background-size: auto;
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ═══ NAV ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196,164,107,0.2);
  transition: padding .3s;
}

.nav-logo {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.nav-logo img { width: 72px; height: 72px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 400;
  letter-spacing: .1em; color: var(--gold);
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .72rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--espresso); text-decoration: none;
  opacity: .6; transition: opacity .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }

.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 1.5px; background: var(--espresso); transition: all .3s;
}

.nav-cart {
  display: flex; align-items: center; gap: .4rem; position: relative;
  color: var(--espresso); text-decoration: none; opacity: .7; transition: opacity .2s, color .2s;
  margin-left: 1rem;
}
.nav-cart:hover { opacity: 1; color: var(--gold); }
.nav-cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: #fff; border-radius: 50%;
  width: 16px; height: 16px; font-size: .55rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0;
}

/* ═══ FOOTER ════════════════════════════════════════════ */
footer {
  background: #261710; padding: 2rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: .55rem; }
.footer-logo img { width: 26px; opacity: .5; object-fit: contain; }
.footer-logo span { font-family: var(--ff-serif); font-size: .95rem; color: rgba(249,246,242,.5); letter-spacing: .1em; }
.footer-nav { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(249,246,242,.35); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
footer .copyright { font-size: .65rem; color: rgba(249,246,242,.25); letter-spacing: .08em; }

/* ═══ SHARED UTILITIES ══════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; }
section { padding: var(--section-pad) 5%; }

.section-label {
  font-size: .65rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: .7rem;
}
.section-title {
  font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.15; color: var(--espresso); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.divider { width: 44px; height: 1.5px; background: var(--gold); margin: 1.2rem 0 1.8rem; }

/* Page hero (inner pages) */
.page-hero {
  padding: 9rem 5% 4rem;
  text-align: center;
  background: rgba(249,246,242,0.7);
  border-bottom: 1px solid rgba(196,164,107,0.15);
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.6) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner { position: relative; }
.breadcrumb {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--taupe); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .5rem; opacity: .5; }
.page-title {
  font-family: var(--ff-serif); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; color: var(--espresso); line-height: 1.1;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-subtitle {
  margin-top: .8rem; font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--brown); max-width: 500px; margin-left: auto; margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block; padding: .85rem 2.4rem;
  font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 400; text-decoration: none;
  border: 1.5px solid var(--espresso); color: var(--espresso);
  transition: background .22s, color .22s; cursor: pointer;
}
.btn:hover { background: var(--espresso); color: #fff; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--espresso); border-color: var(--espresso); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ═══ PRODUCT CARD (shop listing) ════════════════════════ */
.product-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(196,164,107,0.18);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
  position: relative; cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(61,43,31,.08); }
.product-card:hover .product-img-inner { transform: scale(1.04); }

.product-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(145deg, #ede8e0 0%, #ddd5c8 100%);
}
.product-img-inner {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; transition: transform .5s ease;
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold); color: #fff; padding: .28rem .75rem; font-weight: 400;
}

.product-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 400; color: var(--espresso); margin-bottom: .25rem; }
.product-tagline { font-size: .75rem; color: var(--gold); letter-spacing: .06em; margin-bottom: .8rem; }
.product-desc-short { font-size: .83rem; color: var(--taupe); line-height: 1.65; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.4rem; flex-wrap: wrap; gap: .8rem; }
.product-price { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--espresso); font-weight: 400; }
.product-price .from { font-family: var(--ff-sans); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--taupe); display: block; }

.btn-view {
  display: inline-block; padding: .6rem 1.4rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  text-decoration: none; border: 1.5px solid var(--espresso); color: var(--espresso);
  transition: background .22s, color .22s;
}
.btn-view:hover { background: var(--espresso); color: #fff; }

/* Stretched link — .btn-view::after covers the whole .product-card (which has position:relative) */
.btn-view::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ═══ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: .85rem 5%; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.97); padding: 1.5rem 5%; border-bottom: 1px solid var(--sand); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-mobile-btn { display: flex; }
}

@media (max-width: 540px) {
  .page-hero { padding: 7.5rem 5% 3rem; }
  .contact-form { padding: 1.5rem 1rem; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* ── Global overflow fix for mobile ── */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; }
