/** Shopify CDN: Minification failed

Line 271:0 Unexpected "}"
Line 327:1 Expected "}" to go with "{"

**/
/* ══════════════════════════════════════
   CASELLO — casello means quality
   White Theme CSS
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --bg:     #f4f4f2;
  --fg:     #080808;
  --grey1:  #ebebea;
  --grey2:  #e0e0de;
  --grey3:  #ccccca;
  --muted:  #888;
  --border: rgba(8,8,8,0.1);
  --display:'Cormorant Garamond', serif;
  --ui:     'Inter', sans-serif;
  --stamp:  'Bebas Neue', sans-serif;
}
html { scroll-behavior:smooth; }
body { background:var(--bg); color:var(--fg); font-family:var(--ui); overflow-x:hidden; }
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--fg); }
img { display:block; max-width:100%; }
a  { color:inherit; text-decoration:none; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 48px;
  transition:background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
nav.scrolled {
  background:rgba(244,244,242,.92);
  backdrop-filter:blur(20px);
  border-color:var(--border);
}
.nav-logo { display:flex; flex-direction:column; align-items:center; gap:3px; }
.nav-logo-name { font-family:var(--display); font-size:22px; font-weight:500; letter-spacing:8px; text-transform:uppercase; }
.nav-logo-line { width:100%; height:1px; background:var(--fg); opacity:.3; }
.nav-logo-tag  { font-size:8px; font-weight:400; letter-spacing:4px; text-transform:lowercase; opacity:.45; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:11px; font-weight:500; letter-spacing:2px; text-transform:uppercase; opacity:.5; transition:opacity .2s; }
.nav-links a:hover { opacity:1; }
.nav-icons { display:flex; gap:12px; align-items:center; }
.nav-icon-btn {
  width:36px; height:36px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:border-color .2s, background .2s; position:relative;
}
.nav-icon-btn:hover { border-color:rgba(8,8,8,.4); background:rgba(8,8,8,.04); }
.nav-cart-count {
  position:absolute; top:-6px; right:-6px;
  width:16px; height:16px; border-radius:50%;
  background:var(--fg); color:var(--bg);
  font-size:9px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}

/* ── HERO ── */
.hero { position:relative; height:100vh; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; }
.hero-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.hero-placeholder { position:absolute; inset:0; z-index:0; background:#f0f0ee; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.hero-placeholder-text { font-family:var(--stamp); font-size:clamp(120px,25vw,300px); letter-spacing:8px; text-transform:uppercase; color:rgba(8,8,8,.045); white-space:nowrap; animation:bgSlide 20s linear infinite; user-select:none; }
@keyframes bgSlide { 0%{transform:translateX(0)} 100%{transform:translateX(-20%)} }
.hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(to top, rgba(244,244,242,.97) 0%, rgba(244,244,242,.25) 55%, transparent 100%); }
.hero-content { position:relative; z-index:2; padding:0 48px 72px; }
.hero-eyebrow { font-size:10px; font-weight:600; letter-spacing:5px; text-transform:uppercase; opacity:0; margin-bottom:20px; animation:fadeUp .8s ease .2s forwards; }
.hero-title { font-family:var(--display); font-size:clamp(60px,9vw,120px); font-weight:300; line-height:.9; letter-spacing:4px; text-transform:uppercase; margin-bottom:8px; opacity:0; animation:fadeUp .9s ease .4s forwards; }
.hero-title-accent { font-family:var(--display); font-size:clamp(14px,2vw,22px); font-weight:300; letter-spacing:12px; text-transform:lowercase; margin-bottom:40px; opacity:0; animation:fadeUp .9s ease .5s forwards; color:rgba(8,8,8,.4); }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; opacity:0; animation:fadeUp .8s ease .7s forwards; }
.btn-primary { display:inline-block; background:var(--fg); color:var(--bg); font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; padding:14px 36px; cursor:pointer; transition:transform .2s, box-shadow .2s; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 40px rgba(8,8,8,.18); }
.btn-outline { display:inline-block; border:1px solid rgba(8,8,8,.25); color:var(--fg); font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; padding:14px 36px; cursor:pointer; transition:border-color .2s, background .2s; }
.btn-outline:hover { border-color:rgba(8,8,8,.6); background:rgba(8,8,8,.04); }
.hero-scroll { position:absolute; bottom:30px; right:48px; z-index:2; display:flex; align-items:center; gap:10px; font-size:10px; letter-spacing:3px; text-transform:uppercase; opacity:.3; }
.hero-scroll-line { width:50px; height:1px; background:var(--fg); }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── MARQUEE ── */
.marquee-wrap { overflow:hidden; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:14px 0; background:var(--bg); }
.marquee-track { display:flex; animation:marquee 22s linear infinite; white-space:nowrap; }
.marquee-item { display:inline-flex; align-items:center; gap:20px; padding:0 20px; font-family:var(--display); font-size:18px; font-weight:700; letter-spacing:6px; text-transform:lowercase; color:rgba(8,8,8,.85); }.marquee-diamond { font-size:8px; opacity:.4; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STORIES ── */
.stories { overflow-x:auto; padding:28px 48px; background:var(--bg); }
.stories::-webkit-scrollbar { display:none; }
.stories-inner { display:flex; gap:10px; min-width:max-content; }
.story-pill { display:flex; align-items:center; gap:10px; border:1px solid var(--border); padding:9px 20px; cursor:pointer; white-space:nowrap; transition:border-color .2s, background .2s; }
.story-pill:hover { border-color:rgba(8,8,8,.35); background:rgba(8,8,8,.04); }
.story-ring { width:28px; height:28px; border-radius:50%; border:1px solid rgba(8,8,8,.2); display:flex; align-items:center; justify-content:center; font-size:12px; }
.story-label { font-size:11px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase; }

/* ── SECTION HEADERS ── */
.sec-head { display:flex; align-items:baseline; justify-content:space-between; padding:72px 48px 36px; }
.sec-title { font-family:var(--display); font-size:clamp(32px,5vw,56px); font-weight:300; letter-spacing:3px; text-transform:uppercase; }
.sec-link { font-size:10px; font-weight:600; letter-spacing:3px; text-transform:uppercase; border-bottom:1px solid rgba(8,8,8,.3); padding-bottom:2px; opacity:.5; transition:opacity .2s; }
.sec-link:hover { opacity:1; }

/* ── LATEST DROP ── */

/* ── SHOP BY FEED ── */
.feed-section { padding:0 0 80px; }
.feed-track-wrap { position:relative; overflow:hidden; padding:0 48px; }
.feed-track { display:flex; gap:3px; transition:transform .5s cubic-bezier(.25,.46,.45,.94); }
.feed-slide { flex:0 0 calc(25% - 2.25px); position:relative; aspect-ratio:9/16; overflow:hidden; background:var(--grey1); cursor:pointer; }
.feed-video-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px; }
.feed-play { width:52px; height:52px; border-radius:50%; border:1.5px solid rgba(8,8,8,.35); display:flex; align-items:center; justify-content:center; font-size:18px; padding-left:4px; color:var(--fg); transition:background .2s, border-color .2s; }
.feed-slide:hover .feed-play { background:var(--fg); border-color:var(--fg); color:var(--bg); }
.feed-slide-label { position:absolute; bottom:16px; left:16px; right:16px; font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--fg); opacity:.55; }
.feed-nav { display:flex; justify-content:center; gap:8px; margin-top:24px; }
.feed-dot { width:20px; height:2px; background:var(--grey3); cursor:pointer; transition:background .3s, width .3s; }
.feed-dot.active { background:var(--fg); width:40px; }
.feed-arrows { position:absolute; top:50%; transform:translateY(-50%); width:100%; left:0; padding:0 52px; display:flex; justify-content:space-between; pointer-events:none; }
.feed-arrow { width:44px; height:44px; border:1px solid rgba(8,8,8,.15); display:flex; align-items:center; justify-content:center; font-size:16px; cursor:pointer; pointer-events:all; background:rgba(244,244,242,.8); backdrop-filter:blur(8px); transition:border-color .2s, background .2s; color:var(--fg); }
.feed-arrow:hover { border-color:rgba(8,8,8,.5); background:rgba(244,244,242,.98); }

/* ── COLLECTIONS ── */
.coll-track-wrap { padding:0 48px 80px; }
.coll-track { display:flex; gap:3px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.coll-track::-webkit-scrollbar { display:none; }
.coll-card { flex:0 0 320px; height:500px; position:relative; overflow:hidden; scroll-snap-align:start; cursor:pointer; background:var(--grey1); }
.coll-bg { width:100%; height:100%; transition:transform .8s cubic-bezier(.25,.46,.45,.94); display:flex; align-items:center; justify-content:center; }
.coll-card:hover .coll-bg { transform:scale(1.07); }
.coll-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(8,8,8,.88) 0%,rgba(8,8,8,.05) 50%,transparent 100%); transition:background .4s; }
.coll-card:hover .coll-overlay { background:linear-gradient(to top,rgba(8,8,8,.95) 0%,rgba(8,8,8,.25) 60%,transparent 100%); }
.coll-number { position:absolute; top:18px; right:18px; font-family:var(--stamp); font-size:48px; color:rgba(8,8,8,.07); line-height:1; user-select:none; }
.coll-label { position:absolute; bottom:28px; left:24px; right:24px; }
.coll-eyebrow { font-size:9px; font-weight:600; letter-spacing:4px; text-transform:uppercase; opacity:0; transform:translateY(6px); transition:opacity .4s ease .1s, transform .4s ease .1s; margin-bottom:6px; color:rgba(244,244,242,.5); }
.coll-card:hover .coll-eyebrow { opacity:1; transform:translateY(0); }
.coll-name { font-family:var(--display); font-size:36px; font-weight:400; letter-spacing:2px; text-transform:uppercase; line-height:.95; margin-bottom:18px; color:#f4f4f2; }
.coll-cta { display:inline-flex; align-items:center; gap:10px; font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; opacity:0; transform:translateY(8px); color:#f4f4f2; transition:opacity .4s ease .15s, transform .4s ease .15s; }
.coll-card:hover .coll-cta { opacity:1; transform:translateY(0); }
.coll-arrow-icon { transition:transform .2s; }
.coll-cta:hover .coll-arrow-icon { transform:translateX(4px); }

/* ── SHOP THE LOOK ── */
.look-section { padding:0 0 80px; }
.look-track-wrap { position:relative; overflow:hidden; padding:0 48px; }
.look-track { display:flex; gap:3px; transition:transform .55s cubic-bezier(.25,.46,.45,.94); }
.look-slide { flex:0 0 calc(33.333% - 2px); position:relative; overflow:hidden; background:var(--grey1); cursor:pointer; aspect-ratio:4/5; }
.look-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:48px; transition:transform .7s cubic-bezier(.25,.46,.45,.94); }
.look-slide:hover .look-img-placeholder,
.look-slide:hover .look-img { transform:scale(1.05); }
.look-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(8,8,8,.7) 0%,transparent 50%); opacity:0; transition:opacity .4s; }
.look-slide:hover .look-overlay { opacity:1; }
.look-tag { position:absolute; bottom:0; left:0; right:0; padding:20px 20px 18px; transform:translateY(6px); transition:transform .4s; }
.look-slide:hover .look-tag { transform:translateY(0); }
.look-tag-title { font-family:var(--display); font-size:22px; font-weight:400; letter-spacing:1px; text-transform:uppercase; color:#f4f4f2; margin-bottom:6px; }
.look-tag-sub { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:rgba(244,244,242,.6); margin-bottom:12px; }
.look-shop-btn { display:inline-block; background:#f4f4f2; color:#080808; font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:8px 20px; border:none; cursor:pointer; opacity:0; transition:opacity .3s; }
.look-slide:hover .look-shop-btn { opacity:1; }
.look-hotspot { position:absolute; width:24px; height:24px; border-radius:50%; background:rgba(244,244,242,.9); border:2px solid var(--fg); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:var(--fg); cursor:pointer; animation:hotPulse 2s ease infinite; transition:transform .2s; }
.look-hotspot:hover { transform:scale(1.3); }
@keyframes hotPulse { 0%,100%{box-shadow:0 0 0 0 rgba(8,8,8,.3)} 50%{box-shadow:0 0 0 8px rgba(8,8,8,0)} }
.look-nav { display:flex; justify-content:center; gap:8px; margin-top:24px; }
.look-dot { width:20px; height:2px; background:var(--grey3); cursor:pointer; transition:background .3s, width .3s; }
.look-dot.active { background:var(--fg); width:40px; }
.look-arrows { position:absolute; top:50%; transform:translateY(-50%); width:100%; left:0; padding:0 52px; display:flex; justify-content:space-between; pointer-events:none; }
.look-arrow { width:44px; height:44px; border:1px solid rgba(8,8,8,.15); display:flex; align-items:center; justify-content:center; font-size:16px; cursor:pointer; pointer-events:all; background:rgba(244,244,242,.85); backdrop-filter:blur(8px); transition:border-color .2s, background .2s; color:var(--fg); }
.look-arrow:hover { border-color:rgba(8,8,8,.5); background:rgba(244,244,242,.98); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── FOOTER ── */
footer { background:#eeeeec; border-top:1px solid var(--border); padding:72px 48px 40px; }
.footer-top { display:grid; grid-template-columns:1.6fr repeat(3,1fr); gap:48px; margin-bottom:60px; }
.footer-brand-logo { font-family:var(--display); font-size:28px; font-weight:500; letter-spacing:8px; text-transform:uppercase; margin-bottom:6px; }
.footer-brand-line { width:100%; height:1px; background:rgba(8,8,8,.18); margin-bottom:6px; }
.footer-brand-tag { font-size:9px; letter-spacing:4px; text-transform:lowercase; color:var(--muted); margin-bottom:20px; }
.footer-brand-desc { font-size:12px; color:var(--muted); line-height:1.9; max-width:220px; }
.footer-col h4 { font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; margin-bottom:22px; opacity:.4; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:12px; }
.footer-col a { font-size:13px; color:var(--muted); transition:color .2s; }
.footer-col a:hover { color:var(--fg); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:28px; }
.footer-bottom p { font-size:11px; color:var(--muted); letter-spacing:1px; }
.footer-socials { display:flex; gap:24px; }
.footer-socials a { font-size:10px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:var(--muted); transition:color .2s; }
.footer-socials a:hover { color:var(--fg); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav { padding:16px 20px; }
  .nav-links { display:none; }
  .hero-content { padding:0 20px 56px; }
  .sec-head { padding:32px 20px 18px; }
  .drop-grid { padding:0 20px 56px; grid-template-columns:repeat(2,1fr); }
  .stories { padding:20px; }
  .coll-track-wrap { padding:0 20px 56px; }
  .coll-card { flex:0 0 260px; height:400px; }
  .feed-track-wrap { padding:0 20px; }
  .feed-slide { flex:0 0 80%; }
  .look-track-wrap { padding:0 20px; }
  .look-slide { flex:0 0 85%; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
/* ══ DEVICE PILLS FIX ══ */
.pp-device-grid { display:flex !important; flex-wrap:wrap !important; gap:8px !important; }
.pp-device-pill { display:inline-block !important; font-family:'Inter',sans-serif !important; font-size:12px !important; font-weight:500 !important; letter-spacing:1px !important; padding:8px 18px !important; cursor:pointer !important; border:1px solid rgba(8,8,8,.15) !important; transition:all .25s cubic-bezier(.25,.46,.45,.94) !important; user-select:none !important; }
.pp-device-pill:hover { border-color:#080808 !important; background:#f0f0ee !important; transform:translateY(-2px) !important; box-shadow:0 4px 12px rgba(8,8,8,.08) !important; }
.pp-device-pill.selected { background:#080808 !important; color:#f4f4f2 !important; border-color:#080808 !important; transform:translateY(-2px) !important; box-shadow:0 6px 16px rgba(8,8,8,.2) !important; }

/* ══ WHY CASELLO MARQUEE FIX ══ */
.pp-why { overflow:hidden !important; }
.pp-why-pills { display:flex !important; flex-wrap:nowrap !important; gap:16px !important; white-space:nowrap !important; animation:whyScroll 10s linear infinite !important; width:max-content !important; }
.pp-why-pills span { display:inline-flex !important; align-items:center !important; gap:6px !important; white-space:nowrap !important; flex-shrink:0 !important; font-size:11px !important; font-weight:500 !important; letter-spacing:1px !important; border:1px solid rgba(8,8,8,.1) !important; padding:6px 14px !important; }
@keyframes whyScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
/* ══ MOBILE PRODUCT FINAL ══ */
@media(max-width:768px){
  .pp-layout { display:block !important; }
  .pp-gallery { width:100% !important; }
  .pp-main-wrap {
    width:100vw !important;
    margin-left:-16px !important;
    height:100vw !important;
    max-height:100vw !important;
    aspect-ratio:1/1 !important;
    border-radius:0 !important;
    overflow:hidden !important;
  }
  .pp-main-img {
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
  .pp-info { padding:20px 16px !important; }
  .pp-wrap { padding:0 16px 60px !important; }
  .pp-title { font-size:20px !important; }
  .pp-sale { font-size:26px !important; }
  .pp-device-pill { font-size:10px !important; padding:5px 10px !important; }
  .pp-related-grid { grid-template-columns:repeat(2,1fr) !important; }
  .pp-atc { border-radius:50px !important; }
  .pp-buy { border-radius:50px !important; }
}/* ══ NAV ANNOUNCE FIX ══ */
.announce-bar {
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  z-index:300 !important;
  height:36px !important;
}
nav {
  top:36px !important;
  z-index:200 !important;
}
.pp-wrap {
  padding-top:120px !important;
}
.hero {
  margin-top:0 !important;
}


}
}
@media(max-width:768px){
  .announce-bar {
   /* ── POLICY PAGES ── */
.shopify-policy__container {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 160px 48px 100px !important;
  font-family: var(--ui) !important;
}
.shopify-policy__title {
  font-family: var(--display) !important;
  font-size: clamp(36px,6vw,72px) !important;
  font-weight: 300 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: #080808 !important;
  margin-bottom: 32px !important;
}
.shopify-policy__body {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 2 !important;
}
.shopify-policy__body p { margin-bottom: 16px !important; }
.shopify-policy__body strong { color: #080808 !important; font-weight: 700 !important; }
.shopify-policy__body h1, .shopify-policy__body h2, .shopify-policy__body h3 {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #080808 !important;
  margin: 32px 0 12px !important;
}
@media(max-width:768px){
  .shopify-policy__container { padding:120px 16px 80px !important; }
} 
/* ══ LATEST DROP CARD ANIMATION ══ */
.ld-card {
  opacity: 0 !important;
  transform: translateY(24px) !important;
  transition: opacity .6s ease, transform .6s ease !important;
}
.ld-card.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.ld-select {
  opacity: 0 !important;
  transform: translateY(10px) scale(.95) !important;
  transition: opacity .5s ease, transform .5s ease !important;
}
.ld-card.in-view .ld-select {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}