@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --navy:      #1B2A4A;
  --navy-2:    #24365C;
  --navy-3:    #142138;
  --yellow:    #ABD1F3;
  --yellow-d:  #3D5C85;
  --cream:     #DFF7FA;
  --cream-2:   #FCFCFF;
  --paper:     #FFFFFF;
  --mist:      #F7FCFE;
  --line:      #D9EDF6;
  --line-soft: #EBF7FB;
  --text:      #1B2A4A;
  --text-mid:  #5B7086;
  --text-soft: #8CA0B3;
  --success:   #1F9D6E;
  --maxw:      1260px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito Sans', system-ui, sans-serif; font-size: 15px; line-height: 1.65; color: var(--text); background: #FCFCFF; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header { background: white; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(26,26,46,0.06); }
.header-top { padding: 14px 0; }
.header-nav { background: var(--navy); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 0 24px; max-width: var(--maxw); margin: 0 auto; }
.logo { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0; }
.logo-ice, .logo-vape { color: var(--navy); }
.search-bar-wrap { position: relative; max-width: 560px; width: 100%; }
.search-bar-inner { display: flex; align-items: center; gap: 10px; background: var(--mist); border: 2px solid var(--line); border-radius: 12px; padding: 8px 8px 8px 18px; transition: all .15s; }
.search-bar-inner:focus-within { border-color: var(--yellow-d); background: white; box-shadow: 0 4px 16px rgba(212,168,0,0.14); }
.search-bar-inner input { flex: 1; border: none; outline: none; font-size: 14.5px; font-family: 'Oswald', sans-serif; color: var(--text); background: transparent; font-weight: 500; }
.search-bar-inner input::placeholder { color: var(--text-soft); }
.search-btn { background: var(--navy); color: white; border: none; padding: 9px 22px; border-radius: 8px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13.5px; cursor: pointer; white-space: nowrap; transition: background .15s; }
.search-btn:hover { background: var(--navy-3); }
.search-panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: white; border-radius: 14px; box-shadow: 0 16px 48px rgba(26,26,46,0.15); border: 2px solid var(--line); overflow: hidden; z-index: 200; max-height: 320px; overflow-y: auto; }
.sr-item { display: block; padding: 12px 18px; font-size: 14px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line-soft); transition: background .1s; }
.sr-item:hover { background: var(--cream); color: var(--navy); }
.sr-empty { padding: 16px; font-size: 14px; color: var(--text-soft); text-align: center; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-btn-outline { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--navy); padding: 10px 18px; border-radius: 10px; border: 2px solid var(--line); transition: all .15s; white-space: nowrap; }
.header-btn-outline:hover { border-color: var(--navy); background: var(--mist); }
.header-btn-solid { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13.5px; color: #FFFFFF; background: var(--yellow); padding: 10px 18px; border-radius: 10px; transition: all .15s; white-space: nowrap; box-shadow: 0 4px 14px rgba(171,209,243,0.35); }
.header-btn-solid:hover { background: var(--yellow-d); }
.icon-btn { width: 42px; height: 42px; border-radius: 10px; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s; color: var(--navy); background: white; }
.icon-btn:hover { border-color: var(--navy); }
.cart-btn { background: var(--navy); color: white; border-color: var(--navy); }
.cart-btn:hover { background: var(--navy-3); border-color: var(--navy-3); color: white; }
.cart-btn-wrap { position: relative; }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--yellow); color: #FFFFFF; font-size: 10px; font-weight: 800; width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }
.mobile-menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; border: 2px solid var(--line); background: white; cursor: pointer; align-items: center; justify-content: center; color: var(--navy); }
.site-nav { display: flex; gap: 2px; justify-content: center; }
.site-nav-link { font-size: 13.5px; font-weight: 600; font-family: 'Oswald', sans-serif; color: rgba(255,255,255,0.8); padding: 14px 20px; transition: all .15s; }
.site-nav-link:hover, .site-nav-link.active { color: #FFFFFF; }
@media(max-width:960px){ .site-nav,.header-btn-outline,.header-btn-solid{ display:none!important; } .mobile-menu-btn{ display:flex; } .search-bar-wrap{ display:none; } }
@media(max-width:600px){ .logo{ font-size:22px; } }

#mobile-menu { display: none; position: fixed; inset: 0; background: white; z-index: 500; flex-direction: column; padding: 28px 24px; gap: 4px; overflow-y: auto; }
#mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-nav-link { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); padding: 15px 0; border-bottom: 2px solid var(--line-soft); }
.mobile-nav-link:hover { color: var(--yellow-d); }

/* HERO — light */
.hero { background: linear-gradient(135deg, #FFFFFF 0%, var(--cream) 60%, var(--cream-2) 100%); position: relative; overflow: hidden; padding: 76px 0 84px; border-bottom: 3px solid var(--yellow); }
.hero::before { content: ''; position: absolute; top: -80px; right: -60px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(171,209,243,0.18) 0%, transparent 68%); border-radius: 50%; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #FFFFFF; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 50px; font-weight: 800; color: var(--navy); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 span { color: var(--yellow-d); }
.hero p { font-size: 17px; color: var(--text-mid); max-width: 470px; margin-bottom: 34px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--navy); color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 15px; padding: 15px 30px; border-radius: 12px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 28px rgba(26,26,46,0.25); transition: all .2s; }
.btn-primary:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-ghost { background: white; color: var(--navy); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: 12px; border: 2px solid var(--navy); display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.btn-ghost:hover { background: var(--mist); }
.hero-visual { display: flex; align-items: center; justify-content: center; height: 400px; }
.hero-badges-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust-badge { display: flex; align-items: center; gap: 7px; background: white; border: 2px solid var(--line); padding: 9px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-mid); }
.hero-trust-badge span { color: var(--yellow-d); }

/* TICKER */
.ticker { background: var(--navy); padding: 12px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 48px; white-space: nowrap; animation: ticker 30s linear infinite; width: max-content; }
.ticker-track span { font-size: 13px; font-weight: 700; color: #FFFFFF; display: flex; align-items: center; gap: 10px; font-family: 'Oswald', sans-serif; }
.ticker-track span::before { content: '◆'; font-size: 8px; }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* SECTIONS */
.section { padding: 76px 0; }
.section.bg-mist { background: var(--mist); }
.section.bg-cream { background: var(--cream); }
.section-head { margin-bottom: 42px; }
.section-head.flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow-d); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-family: 'Oswald', sans-serif; }
.eyebrow::before { content: ''; width: 22px; height: 3px; background: var(--yellow); border-radius: 2px; }
.section-head h2 { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.015em; }
.view-all-link { font-size: 14px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 5px; font-family: 'Oswald', sans-serif; }
.view-all-link:hover { color: var(--yellow-d); }

/* CATEGORY TILES */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:900px){ .cat-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .cat-grid{ grid-template-columns:1fr;} }
.cat-tile { background: white; border-radius: 18px; padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; border: 2px solid var(--line); transition: all .2s; box-shadow: 0 6px 24px rgba(26,26,46,0.04); }
.cat-tile:hover { border-color: #FFFFFF; transform: translateY(-4px); box-shadow: 0 18px 48px rgba(26,26,46,0.1); }
.cat-tile .icon { width: 60px; height: 60px; border-radius: 14px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: #FFFFFF; }
.cat-tile h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.cat-tile p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.tile-link { font-size: 14px; font-weight: 700; color: var(--yellow-d); display: flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 12px; font-family: 'Oswald', sans-serif; }

/* PRODUCT CARDS */
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:1100px){ .prod-grid{ grid-template-columns:repeat(3,1fr);} }
@media(max-width:760px){ .prod-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:480px){ .prod-grid{ grid-template-columns:1fr;} }
.prod-card { background: white; border: 2px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: all .2s; cursor: pointer; box-shadow: 0 4px 18px rgba(26,26,46,0.04); }
.prod-card:hover { border-color: #FFFFFF; transform: translateY(-5px); box-shadow: 0 18px 48px rgba(26,26,46,0.1); }
.prod-thumb { aspect-ratio: 1; background: linear-gradient(160deg, var(--mist) 0%, var(--cream) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.prod-thumb svg { width: 62%; height: 62%; transition: transform .3s; }
.prod-card:hover .prod-thumb svg { transform: scale(1.06); }
.prod-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #FFFFFF; font-size: 10.5px; font-weight: 800; padding: 4px 11px; border-radius: 999px; font-family: 'Oswald', sans-serif; z-index: 2; }
.prod-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex-grow: 1; }
.prod-brand { font-size: 11px; font-weight: 800; color: var(--yellow-d); text-transform: uppercase; letter-spacing: 0.07em; font-family: 'Oswald', sans-serif; }
.prod-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; min-height: 40px; }
.prod-meta { font-size: 12.5px; color: var(--text-soft); }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.prod-price { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); }
.prod-cta { margin-top: 12px; background: var(--navy); color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13.5px; padding: 12px; border-radius: 10px; text-align: center; transition: all .15s; border: none; cursor: pointer; width: 100%; }
.prod-card:hover .prod-cta { background: var(--navy-2); color: #FFFFFF; }

/* TRUST STRIP */
.trust-strip { background: var(--navy); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media(max-width:760px){ .trust-grid{ grid-template-columns:repeat(2,1fr);} }
.trust-item .icon { width: 46px; height: 46px; margin: 0 auto 12px; color: #FFFFFF; }
.trust-item h4 { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:900px){ .blog-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .blog-grid{ grid-template-columns:1fr;} }
.blog-card { background: white; border: 2px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: all .2s; box-shadow: 0 4px 18px rgba(26,26,46,0.04); }
.blog-card:hover { border-color: #FFFFFF; transform: translateY(-4px); box-shadow: 0 16px 44px rgba(26,26,46,0.1); }
.blog-card-img { height: 190px; position: relative; overflow: hidden; }
.blog-card-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-title { font-family: 'Oswald', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.blog-card-read { font-size: 12.5px; color: var(--text-soft); margin-top: auto; padding-top: 10px; display: flex; align-items: center; gap: 6px; }

/* NEWSLETTER */
.newsletter { background: var(--navy); border-radius: 22px; padding: 52px 58px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(171,209,243,0.15) 0%, transparent 70%); border-radius: 50%; }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h3 { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.65); font-size: 15px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 15px 20px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.15); font-size: 14.5px; min-width: 260px; outline: none; font-family: 'Oswald', sans-serif; background: rgba(255,255,255,0.08); color: white; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: #FFFFFF; }
.newsletter-form button { background: #FFFFFF; color: var(--navy); font-weight: 800; font-family: 'Oswald', sans-serif; border: none; padding: 15px 28px; border-radius: 12px; font-size: 14.5px; cursor: pointer; transition: all .15s; }
.newsletter-form button:hover { background: var(--yellow-d); }

/* FOOTER */
.site-footer { background: var(--navy); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media(max-width:900px){ .footer-grid{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .footer-grid{ grid-template-columns:1fr;} }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 290px; }
.footer-col h5 { font-family: 'Oswald', sans-serif; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #FFFFFF; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 11px; transition: color .1s; font-weight: 500; }
.footer-col a:hover { color: #FFFFFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.75; }

/* PRODUCT PAGE */
.product-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; padding: 52px 0; }
@media(max-width:860px){ .product-layout{ grid-template-columns:1fr; gap:32px;} }
.product-gallery { background: linear-gradient(160deg, var(--mist) 0%, var(--cream) 100%); border-radius: 22px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; border: 2px solid var(--line); overflow: hidden; }
.product-gallery svg { width: 60%; height: 60%; }
.product-gallery .badge { position: absolute; top: 16px; left: 16px; background: var(--navy); color: #FFFFFF; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; font-family: 'Oswald', sans-serif; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-brand { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow-d); font-family: 'Oswald', sans-serif; }
.product-title { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }
.product-rating { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-soft); }
.stars { color: var(--yellow-d); font-size: 16px; }
.product-price { font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spec-item { background: var(--mist); border-radius: 12px; padding: 13px 15px; border: 2px solid var(--line); }
.spec-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); margin-bottom: 4px; font-family: 'Oswald', sans-serif; }
.spec-value { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.add-cart-btn { background: var(--navy); color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 16px; padding: 17px; border-radius: 12px; text-align: center; width: 100%; display: block; transition: all .2s; border: none; cursor: pointer; box-shadow: 0 8px 26px rgba(26,26,46,0.25); }
.add-cart-btn:hover { background: var(--navy-3); transform: translateY(-2px); }
.flavour-select-wrap label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-soft); margin-bottom: 8px; font-family: 'Oswald', sans-serif; }
#flavour-select { width: 100%; padding: 13px 16px; border: 2px solid var(--line); border-radius: 12px; font-size: 14px; font-family: 'Oswald', sans-serif; outline: none; background: white; cursor: pointer; color: var(--navy); font-weight: 500; }
#flavour-select:focus { border-color: var(--yellow-d); }
.qty-selector { display: flex; align-items: center; gap: 12px; }
.qty-btn { width: 44px; height: 44px; border-radius: 10px; border: 2px solid var(--line); background: white; cursor: pointer; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .15s; color: var(--navy); }
.qty-btn:hover { border-color: var(--yellow-d); color: var(--yellow-d); }
#qty-input { width: 64px; text-align: center; font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 800; border: 2px solid var(--line); border-radius: 10px; padding: 10px; outline: none; color: var(--navy); }
#qty-input:focus { border-color: var(--yellow-d); }

/* ARTICLE */
.article-header { background: linear-gradient(135deg, #FFFFFF 0%, var(--cream) 100%); padding: 60px 0 52px; border-bottom: 3px solid var(--yellow); }
.article-header .breadcrumb { font-size: 13px; color: var(--text-soft); margin-bottom: 18px; }
.article-header .breadcrumb a { color: var(--text-soft); }
.article-header .breadcrumb a:hover { color: var(--yellow-d); }
.article-header h1 { font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.16; letter-spacing: -0.015em; max-width: 760px; margin-bottom: 16px; }
.article-header .dek { font-size: 17px; color: var(--text-mid); max-width: 640px; line-height: 1.65; margin-bottom: 22px; }
.article-header .meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.badge { display: inline-block; background: var(--navy); color: #FFFFFF; font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px; font-family: 'Oswald', sans-serif; }
.meta-row span { font-size: 13px; color: var(--text-soft); }
.article-body { padding: 52px 0 72px; }
.prose-wrap { max-width: 780px; }
.blog-hero-img { width: 100%; max-height: 380px; overflow: hidden; border-radius: 18px; margin-bottom: 36px; }
.blog-hero-img svg { width: 100%; height: 320px; }
.toc { background: var(--mist); border: 2px solid var(--line); border-radius: 16px; padding: 26px 30px; margin-bottom: 40px; }
.toc h4 { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); margin-bottom: 16px; }
.toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.toc a { font-size: 14px; color: var(--navy); font-weight: 600; }
.toc a:hover { color: var(--yellow-d); }
.prose h2 { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-top: 52px; margin-bottom: 18px; padding-left: 16px; border-left: 5px solid var(--yellow); line-height: 1.3; }
.prose h3 { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-top: 30px; margin-bottom: 12px; padding-left: 13px; border-left: 3px solid var(--line); }
.prose p { font-size: 15.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.prose li { font-size: 15.5px; color: var(--text-mid); line-height: 1.7; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14.5px; border-radius: 12px; overflow: hidden; }
.prose th { background: var(--navy); color: #FFFFFF; padding: 12px 15px; text-align: left; font-weight: 700; font-size: 13px; font-family: 'Oswald', sans-serif; }
.prose td { padding: 11px 15px; border-bottom: 2px solid var(--line-soft); color: var(--text-mid); }
.prose tr:nth-child(even) td { background: var(--mist); }
.callout { background: var(--cream); border-left: 4px solid var(--yellow); padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 20px 0; font-size: 14.5px; color: var(--text-mid); line-height: 1.7; }
.faq-item { border-bottom: 2px solid var(--line-soft); padding: 22px 0; }
.faq-q { font-family: 'Oswald', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.faq-a { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; }
.next-up { background: var(--navy); border-radius: 18px; padding: 34px; margin-top: 52px; }
.next-up .label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #FFFFFF; margin-bottom: 8px; font-family: 'Oswald', sans-serif; }
.next-up h3 { font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 700; color: white; margin-bottom: 8px; }
.next-up .btn { display: inline-flex; align-items: center; gap: 6px; background: #FFFFFF; color: var(--navy); font-weight: 700; font-family: 'Oswald', sans-serif; padding: 11px 22px; border-radius: 10px; font-size: 14px; margin-top: 16px; }

/* CAT HEADER */
.cat-header { background: linear-gradient(135deg, #FFFFFF 0%, var(--cream) 100%); padding: 56px 0; border-bottom: 3px solid var(--yellow); }
.cat-header h1 { font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cat-header p { color: var(--text-mid); font-size: 16px; max-width: 560px; }
.breadcrumb { font-size: 13px; color: var(--text-soft); margin-bottom: 6px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--yellow-d); }
.breadcrumb span { padding: 0 6px; }

/* CART SIDEBAR */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,26,46,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity .25s; backdrop-filter: blur(4px); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: -440px; width: 440px; max-width: 100vw; height: 100vh; background: white; z-index: 1000; box-shadow: -8px 0 48px rgba(26,26,46,0.15); transition: right .3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 2px solid var(--line-soft); }
.cart-header h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.cart-close { width: 38px; height: 38px; border-radius: 10px; border: 2px solid var(--line); background: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; color: var(--text-soft); }
.cart-close:hover { background: var(--mist); color: var(--navy); }
#cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; color: var(--text-soft); text-align: center; }
.cart-shop-btn { background: var(--navy); color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 700; padding: 12px 26px; border-radius: 10px; font-size: 14px; margin-top: 8px; }
.cart-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: var(--mist); border-radius: 14px; border: 2px solid var(--line-soft); }
.cart-item-img { width: 52px; height: 52px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--line); flex-shrink: 0; font-size: 22px; color: var(--yellow-d); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 3px; }
.cart-item-price { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button { width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--line); background: white; cursor: pointer; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.cart-item-qty button:hover { background: var(--cream); border-color: #FFFFFF; }
.cart-item-qty span { font-weight: 800; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: #C4C4B8; font-size: 14px; padding: 4px; flex-shrink: 0; }
.cart-item-remove:hover { color: #E5484D; }
.cart-footer { padding: 20px 26px; border-top: 2px solid var(--line-soft); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cart-total-label { font-size: 14px; color: var(--text-soft); font-weight: 600; }
.cart-total-price { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 900; color: var(--navy); }
.checkout-btn { display: block; background: var(--yellow); color: #FFFFFF; text-align: center; padding: 16px; border-radius: 12px; font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 15px; width: 100%; cursor: pointer; border: none; box-shadow: 0 6px 22px rgba(171,209,243,0.35); transition: all .15s; }
.checkout-btn:hover { background: var(--yellow-d); }
.free-delivery-note { font-size: 12.5px; color: var(--success); text-align: center; margin-top: 10px; font-weight: 700; }

/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--navy); color: white; padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 600; font-family: 'Oswald', sans-serif; z-index: 2000; transition: transform .3s ease; display: flex; align-items: center; gap: 10px; white-space: nowrap; box-shadow: 0 12px 36px rgba(26,26,46,0.3); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: #FFFFFF; }

@media(max-width:760px){
  .hero .wrap{ grid-template-columns:1fr; }
  .hero h1{ font-size:34px; }
  .hero-visual{ height:260px; }
  .section{ padding:48px 0; }
  .newsletter{ padding:36px 24px; }
  .newsletter-form input{ min-width:200px; }
}

/* ═══ MEGA MENU ═══ */
.site-nav-item { position: relative; }
.mega-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: white; border-radius: 14px; box-shadow: 0 20px 56px rgba(0,0,0,0.35);
  padding: 24px; display: none; z-index: 300; min-width: 460px;
  border: 1px solid rgba(255,255,255,0.08);
}
.site-nav-item:hover .mega-dropdown { display: flex; gap: 32px; }
.mega-col h5 {
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: #8CA0B3; margin-bottom: 12px;
}
.mega-col a {
  display: block; font-size: 14px; font-weight: 600; color: #3D5C85;
  padding: 7px 0; transition: color .15s;
}
.mega-col a:hover { color: #33507A; }
.mega-view-all {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: #33507A !important;
}
@media(max-width:960px){ .mega-dropdown { display: none !important; } }

/* ═══ BRAND STRIP ═══ */
.brand-strip { background: white; padding: 32px 0; border-top: 2px solid #D9EDF6; border-bottom: 2px solid #D9EDF6; }
.brand-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.brand-strip-label { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #8CA0B3; white-space: nowrap; }
.brand-logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.brand-logo-item { font-family: 'Oswald', sans-serif; font-weight: 800; font-size: 17px; color: #3D5C85; opacity: 0.55; transition: opacity .15s; letter-spacing: -0.01em; }
.brand-logo-item:hover { opacity: 1; color: #33507A; }

/* ═══ HOMEPAGE FAQ ACCORDION ═══ */
.home-faq-item { border-bottom: 2px solid #D9EDF6; padding: 18px 0; cursor: pointer; }
.home-faq-q { display: flex; justify-content: space-between; align-items: center; font-family: 'Oswald', sans-serif; font-size: 15.5px; font-weight: 700; color: #3D5C85; }
.home-faq-q .plus { color: #33507A; font-size: 20px; font-weight: 400; transition: transform .2s; }
.home-faq-item.open .plus { transform: rotate(45deg); }
.home-faq-a { display: none; font-size: 14px; color: #5B7086; line-height: 1.7; padding-top: 10px; max-width: 640px; }
.home-faq-item.open .home-faq-a { display: block; }

/* ═══ UTILITY BAR (pinkvape-style top strip) ═══ */
.utility-bar { background: var(--navy-3); padding: 8px 0; }
.utility-bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; }
.utility-bar span { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.92); font-family: 'Oswald', sans-serif; display: flex; align-items: center; gap: 7px; }
.utility-bar span::before { content: '❄'; font-size: 10px; color: #A8E4F5; }
@media(max-width:760px){ .utility-bar-inner{ gap: 16px; } .utility-bar span:nth-child(n+3){ display:none; } }

/* ═══ 4-COLUMN CATEGORY GRID ═══ */
.cat-grid.four { grid-template-columns: repeat(4,1fr); }
@media(max-width:1000px){ .cat-grid.four{ grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .cat-grid.four{ grid-template-columns:1fr;} }

/* ═══ CATEGORY LANDING PROSE ═══ */
.cat-landing { max-width: 820px; }
.cat-landing h2 { font-family:'Oswald',sans-serif; font-size:24px; font-weight:800; color:var(--navy); margin:40px 0 14px; padding-left:14px; border-left:5px solid var(--yellow); }
.cat-landing p { font-size:15px; color:var(--text-mid); line-height:1.8; margin-bottom:14px; }
.cat-landing ul { padding-left:22px; margin-bottom:14px; display:flex; flex-direction:column; gap:8px; }
.cat-landing li { font-size:15px; color:var(--text-mid); line-height:1.7; }
.coming-soon-banner { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); border: 2px dashed var(--yellow); border-radius: 16px; padding: 34px; text-align: center; margin: 32px 0; }
.coming-soon-banner h3 { font-family:'Oswald',sans-serif; font-size:20px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.coming-soon-banner p { font-size:14.5px; color:var(--text-mid); max-width:520px; margin:0 auto; }

/* ═══ PINKVAPE-STYLE HEADER LAYOUT ═══ */
.header-inner.hi-4 { grid-template-columns: auto auto 1fr auto; }
.order-countdown { line-height: 1.25; padding-left: 6px; }
.oc-line1 { font-family:'Oswald',sans-serif; font-size:12.5px; font-weight:800; color: var(--text); text-transform: uppercase; letter-spacing:.02em; }
.oc-line1 span { color: var(--yellow-d); }
.oc-line2 { font-family:'Oswald',sans-serif; font-size:12.5px; font-weight:800; color: var(--text-soft); text-transform: uppercase; }
.oc-line2 span { color: var(--yellow-d); }
.account-block { display:flex; align-items:center; gap:9px; padding: 4px 10px; border-radius:10px; transition: background .15s; }
.account-block:hover { background: var(--mist); }
.account-block svg { color: var(--navy); flex-shrink:0; }
.account-block .ab-txt { line-height:1.15; display:flex; flex-direction:column; }
.account-block .ab-txt small { font-size:10.5px; color: var(--text-soft); font-weight:600; }
.account-block .ab-txt b { font-family:'Oswald',sans-serif; font-size:13px; font-weight:800; color: var(--text); text-transform: uppercase; }
#cart-mini-total { font-family:'Oswald',sans-serif; font-size:13px; font-weight:800; color: var(--text); margin-left:8px; }
@media(max-width:1100px){ .order-countdown{ display:none; } .header-inner.hi-4{ grid-template-columns:auto 1fr auto; } }
@media(max-width:960px){ .account-block{ display:none; } }

/* compact all-caps nav */
.sn-compact .site-nav-link { text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .05em; padding: 13px 12px; }
/* ecigone-style mega menu: 11 top items + multi-column dropdowns */
.sn-mega { flex-wrap: wrap; max-width: 100%; }
.sn-mega .site-nav-link { padding: 13px 9px; font-size: 12.5px; letter-spacing: .01em; }
@media(min-width:1280px){ .sn-mega .site-nav-link { padding: 13px 12px; font-size: 13.5px; } }
@media(min-width:1500px){ .sn-mega .site-nav-link { padding: 14px 14px; font-size: 14px; } }
.sn-mega .mega-dropdown { min-width: 220px; max-width: 92vw; padding: 22px 26px; gap: 30px; }
.sn-mega .mega-col { min-width: 150px; }
/* keep edge dropdowns on-screen */
.sn-mega .site-nav-item:first-of-type .mega-dropdown { left: 0; transform: none; }
.sn-mega .site-nav-item:nth-last-of-type(-n+3) .mega-dropdown { left: auto; right: 0; transform: none; }
/* Bestseller badge + 4-column dropdown */
.snm-bestseller > .site-nav-link { position: relative; overflow: visible; }
.chip-bestseller {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: #E23744; color: #fff; font-size: 8px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; padding: 2px 7px 2px;
  border-radius: 6px; white-space: nowrap; line-height: 1.35;
  box-shadow: 0 2px 6px rgba(226,55,68,.45);
}
.chip-bestseller::after {
  content: ""; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%);
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #E23744;
}
.sn-mega .mega-dropdown.mega-4col { min-width: 660px; }
@media(max-width:1180px){ .sn-mega .mega-dropdown.mega-4col { min-width: auto; } }
.chip-offer { background: linear-gradient(100deg, #ABD1F3, #3D5C85); color: #fff !important; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); padding: 8px 22px !important; margin: 5px 4px; border-radius: 2px; }
.chip-offer:hover { filter: brightness(1.12); }

/* benefits bar below nav */
.benefits-bar { background: var(--navy); padding: 10px 0; }
.benefits-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.benefits-inner span { font-family:'Oswald',sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing:.03em; color: #fff; display:flex; align-items:center; gap:8px; }
.benefits-inner .star { color: #FFD84D; letter-spacing: 1px; }
@media(max-width:860px){ .benefits-inner{ justify-content:center; } .benefits-inner span:nth-child(n+3){ display:none; } }

/* ═══ PROMO HERO CAROUSEL ═══ */
.promo-hero { padding: 30px 0 8px; }
.promo-card { background: linear-gradient(120deg, #FFFFFF 0%, var(--cream) 55%, var(--cream-2) 100%); border-radius: 18px; position: relative; overflow: hidden; min-height: 400px; box-shadow: 0 10px 40px rgba(171,209,243,0.12); }
.promo-slide { display: none; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: center; padding: 44px 54px; min-height: 400px; }
.promo-slide.active { display: grid; }
.promo-ribbon { position:absolute; top: 26px; left: 0; background: #fff; color: var(--yellow-d); font-family:'Oswald',sans-serif; font-weight:800; font-size:14px; text-transform:uppercase; letter-spacing:.04em; padding: 10px 26px 10px 30px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); box-shadow: 0 4px 14px rgba(171,209,243,0.15); }
.promo-slide h2 { font-family:'Oswald',sans-serif; font-size: 40px; font-weight: 800; color: var(--yellow-d); line-height: 1.08; text-transform: uppercase; letter-spacing: -0.01em; margin: 34px 0 16px; }
.promo-slide p { font-size: 16px; color: var(--text-mid); max-width: 460px; line-height: 1.7; margin-bottom: 26px; }
.promo-btn { display:inline-block; background: var(--yellow-d); color: #fff; font-family:'Oswald',sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing:.05em; padding: 15px 34px; border-radius: 10px; box-shadow: 0 8px 24px rgba(171,209,243,0.3); transition: all .2s; }
.promo-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.promo-visual { background: #fff; border-radius: 14px; display:flex; align-items:center; justify-content:center; padding: 18px; box-shadow: 0 8px 30px rgba(171,209,243,0.1); }
.promo-visual svg { width: 100%; max-width: 320px; height: auto; }
.promo-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; }
.promo-dots button { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--yellow-d); background: transparent; cursor: pointer; padding: 0; transition: background .15s; }
.promo-dots button.on { background: var(--yellow-d); }
@media(max-width:860px){ .promo-slide{ grid-template-columns:1fr; padding: 34px 26px; } .promo-slide h2{ font-size:28px; } .promo-visual{ max-width: 280px; margin: 0 auto; } }

/* bold brand ticker */
.ticker-track span.brand-run { font-size: 15px; letter-spacing:.06em; text-transform: uppercase; }

/* body-ish elements stay humanist */
input, select, textarea, button.search-btn { font-family: 'Nunito Sans', sans-serif !important; }
.prose p, .prose li, .prose td, .faq-a, .cat-landing p, .cat-landing li, .footer-desc, .promo-slide p, .hero-trust-badge, .benefits-inner span small { font-family: 'Nunito Sans', sans-serif; }
.prod-cta, .btn-primary, .promo-btn, .add-cart-btn, .checkout-btn { letter-spacing: .06em; }

/* ═══ IMAGE BANDS (hotlinked own-site photos) ═══ */
.promo-visual img { width: 100%; max-width: 340px; height: auto; border-radius: 12px; object-fit: cover; }
.sub-band, .life-band { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; background: #fff; border: 2px solid var(--line); border-radius: 18px; padding: 38px; box-shadow: 0 8px 28px rgba(171,209,243,0.07); }
.life-band { margin-top: 24px; grid-template-columns: 1.1fr 1fr; }
.sub-band img, .life-band img { width: 100%; height: auto; border-radius: 12px; object-fit: cover; max-height: 320px; }
.sub-band h2, .life-band h2 { font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; color: var(--yellow-d); text-transform: uppercase; margin: 6px 0 12px; letter-spacing: .01em; }
.sub-band p, .life-band p { font-family: 'Nunito Sans', sans-serif; font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; max-width: 480px; }
@media(max-width:860px){ .sub-band, .life-band { grid-template-columns: 1fr; padding: 26px; } .life-band div { order: 2; } }

/* ═══ VIDEO BAND (hotlinked own-site videos) ═══ */
.video-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vid-cell { border-radius: 16px; overflow: hidden; background: var(--cream); box-shadow: 0 8px 26px rgba(171,209,243,0.1); }
.vid-cell.vid-wide { grid-column: 1 / -1; max-height: 420px; }
.vid-cell video { width: 100%; height: 100%; display: block; object-fit: cover; }
@media(max-width:860px){ .video-band { grid-template-columns: 1fr; } }

/* ═══ PINKVAPE HOMEPAGE SECTIONS ═══ */
.section-sub { font-family:'Nunito Sans',sans-serif; font-size:15px; color:var(--text-mid); max-width:560px; margin:-8px 0 26px; line-height:1.7; }
.shop-all-link { font-family:'Oswald',sans-serif; font-size:14px; font-weight:600; color:var(--yellow-d); text-transform:uppercase; letter-spacing:.05em; }
.brandx-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.brandx-card { background:linear-gradient(145deg,#3D5C85,#1B2A4A); border-radius:16px; padding:26px 24px 22px; display:flex; flex-direction:column; gap:6px; min-height:150px; box-shadow:0 10px 30px rgba(27,42,74,0.25); transition:transform .18s; }
.brandx-card:hover { transform:translateY(-4px); }
.brandx-card h3 { font-family:'Oswald',sans-serif; font-size:24px; font-weight:700; color:#fff; }
.brandx-card p { font-family:'Nunito Sans',sans-serif; font-size:13px; color:rgba(255,255,255,0.75); }
.brandx-card span { margin-top:auto; font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; color:#E8F4FD; text-transform:uppercase; letter-spacing:.05em; }
@media(max-width:1000px){ .brandx-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .brandx-grid{grid-template-columns:1fr;} }
.pouch-cta { display:grid; grid-template-columns:1fr 1.3fr; gap:36px; align-items:center; background:#fff; border:2px solid var(--line); border-radius:18px; padding:34px; box-shadow:0 8px 28px rgba(171,209,243,0.07); }
.pouch-cta img { width:100%; max-width:300px; border-radius:12px; }
.pouch-cta h3 { font-family:'Oswald',sans-serif; font-size:26px; font-weight:700; color:var(--yellow-d); text-transform:uppercase; margin-bottom:10px; }
.pouch-cta p { font-family:'Nunito Sans',sans-serif; font-size:15px; color:var(--text-mid); line-height:1.75; margin-bottom:20px; }
@media(max-width:820px){ .pouch-cta{grid-template-columns:1fr;} }
.showcase-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:26px; align-items:stretch; }
.showcase-grid video { width:100%; height:100%; object-fit:cover; border-radius:16px; display:block; box-shadow:0 10px 32px rgba(27,42,74,0.2); }
.showcase-side { display:flex; flex-direction:column; justify-content:center; gap:8px; background:#fff; border:2px solid var(--line); border-radius:16px; padding:34px; }
.showcase-side h2 { font-family:'Oswald',sans-serif; font-size:28px; font-weight:700; color:var(--yellow-d); text-transform:uppercase; }
.showcase-side h3 { font-family:'Oswald',sans-serif; font-size:20px; font-weight:600; color:var(--text); text-transform:uppercase; margin-top:18px; }
.showcase-side p { font-family:'Nunito Sans',sans-serif; font-size:14.5px; color:var(--text-mid); line-height:1.7; }
@media(max-width:860px){ .showcase-grid{grid-template-columns:1fr;} }
.vibe-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.vibe-cell { position:relative; border-radius:16px; overflow:hidden; box-shadow:0 8px 26px rgba(27,42,74,0.18); }
.vibe-cell video { width:100%; display:block; object-fit:cover; aspect-ratio:3/4; }
.vibe-cap { position:absolute; left:0; right:0; bottom:0; padding:18px; background:linear-gradient(transparent,rgba(27,42,74,0.85)); }
.vibe-cap b { display:block; font-family:'Oswald',sans-serif; font-size:16px; font-weight:600; color:#fff; text-transform:uppercase; }
.vibe-cap i { font-family:'Nunito Sans',sans-serif; font-size:12.5px; color:rgba(255,255,255,0.8); font-style:normal; }
@media(max-width:820px){ .vibe-grid{grid-template-columns:1fr;} }
.vibe-disclaimer { font-family:'Nunito Sans',sans-serif; font-size:12.5px; color:var(--text-soft); margin-top:16px; }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.journal-card { background:#fff; border:2px solid var(--line); border-radius:16px; padding:24px; display:flex; flex-direction:column; gap:10px; transition:transform .18s; box-shadow:0 6px 20px rgba(171,209,243,0.05); }
.journal-card:hover { transform:translateY(-3px); }
.journal-card .jtag { font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; color:var(--yellow-d); text-transform:uppercase; letter-spacing:.06em; }
.journal-card h3 { font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; color:var(--text); line-height:1.35; }
.journal-card p { font-family:'Nunito Sans',sans-serif; font-size:13.5px; color:var(--text-mid); line-height:1.65; }
.journal-card .jread { margin-top:auto; font-family:'Nunito Sans',sans-serif; font-size:12px; color:var(--text-soft); font-weight:700; }
@media(max-width:820px){ .journal-grid{grid-template-columns:1fr;} }

/* ═══ FROSTY ICE THEME OVERRIDES ═══ */
.header-nav { background: rgba(255,255,255,0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.6); box-shadow: 0 4px 20px rgba(171,209,243,0.25); }
.header-nav .site-nav-link { color: #1B2A4A; }
.header-nav .site-nav-link:hover, .header-nav .site-nav-link.active { color: #3D5C85; }
.chip-offer { background: linear-gradient(100deg, #C2E0F9, #ABD1F3); color: #1B2A4A !important; }
.header-btn-solid { color: #1B2A4A; }
.checkout-btn { color: #1B2A4A; }
.cart-count { color: #1B2A4A; }
.btn-primary, .promo-btn, .add-cart-btn { box-shadow: 0 8px 32px 0 rgba(171,209,243,0.45); }
.prod-card, .journal-card, .co-form-card, .co-summary-card, .sub-band, .life-band, .pouch-cta, .showcase-side { border: 1px solid rgba(171,209,243,0.55); }
.promo-card { background: linear-gradient(120deg, rgba(255,255,255,0.75) 0%, #DFF7FA 60%, #C2E0F9 100%); backdrop-filter: blur(8px); }

/* ═══ ICY VIBE PASS ═══ */
/* solid glacier nav bar like pinkvape, aligned items */
.header-nav { background: var(--navy); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: none; box-shadow: none; }
.sn-compact { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.sn-compact .site-nav-item { display: flex; align-items: center; }
.header-nav .site-nav-link { color: rgba(255,255,255,0.92); }
.header-nav .site-nav-link:hover, .header-nav .site-nav-link.active { color: #ABD1F3; }
.chip-trend { background: linear-gradient(100deg,#C2E0F9,#ABD1F3); color: #1B2A4A !important; clip-path: polygon(8% 0,100% 0,92% 100%,0 100%); padding: 8px 20px !important; margin: 5px 4px; border-radius: 2px; }
.chip-trend:hover { filter: brightness(1.06); }

/* benefits line: frost band, dividers, green rating stars */
.benefits-bar { background: linear-gradient(90deg,#ABD1F3,#C2E0F9); padding: 11px 0; }
.benefits-inner { justify-content: space-evenly; align-items: center; }
.benefits-inner .b-item { font-family:'Oswald',sans-serif; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing:.04em; color: #1B2A4A; display: flex; align-items: center; gap: 9px; }
.benefits-inner .b-item svg { width: 19px; height: 19px; stroke: #1B2A4A; }
.benefits-inner .b-div { width: 1px; height: 20px; background: rgba(27,42,74,0.22); }
.tp-stars { color: #00B67A; letter-spacing: 2px; font-size: 14px; }
@media(max-width:860px){ .benefits-inner .b-div { display:none; } .benefits-inner .b-item:nth-child(n+4){ display:none; } }

/* category hero (pinkvape-style) */
.cat-hero { position: relative; overflow: hidden; padding: 64px 0 48px; background: linear-gradient(120deg,#FCFCFF 20%,#DFF7FA 100%); border-bottom: 1px solid rgba(171,209,243,0.5); }
.cat-hero::before { content:'❄'; position:absolute; top:-30px; right:8%; font-size:150px; color:rgba(171,209,243,0.30); transform:rotate(12deg); pointer-events:none; }
.cat-hero::after { content:'❄'; position:absolute; bottom:-40px; left:4%; font-size:110px; color:rgba(171,209,243,0.22); transform:rotate(-18deg); pointer-events:none; }
.cat-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: center; }
.cat-hero .breadcrumb { margin-bottom: 22px; }
.cat-hero .eyebrow { margin-bottom: 8px; }
.cat-hero h1 { font-family:'Oswald',sans-serif; font-size: 52px; font-weight: 700; color: #1B2A4A; line-height: 1.05; margin-bottom: 16px; }
.cat-hero p { font-family:'Nunito Sans',sans-serif; font-size: 16.5px; color: #5B7086; line-height: 1.75; max-width: 520px; margin-bottom: 28px; }
.cat-hero-btn { display:inline-block; background: linear-gradient(100deg,#ABD1F3,#C2E0F9); color:#1B2A4A; font-family:'Oswald',sans-serif; font-weight:600; font-size:16px; text-transform:none; padding: 16px 40px; border-radius: 999px; box-shadow: 0 10px 32px rgba(171,209,243,0.55); transition: transform .18s; }
.cat-hero-btn:hover { transform: translateY(-2px); }
.cat-hero-card { background:#fff; border-radius: 20px; padding: 24px; display:flex; align-items:center; justify-content:center; min-height: 340px; box-shadow: 0 16px 44px rgba(171,209,243,0.4); border: 1px solid rgba(171,209,243,0.55); }
.cat-hero-card img { max-width: 100%; max-height: 340px; object-fit: contain; }
@media(max-width:860px){ .cat-hero-grid{ grid-template-columns:1fr; } .cat-hero h1{ font-size:36px; } .cat-hero-card{ min-height:240px; } }

/* icy 18+ age gate */
#age-gate { background: linear-gradient(150deg,#DFF7FA 0%,#ABD1F3 45%,#3D5C85 100%) !important; }
#age-gate::before { content:''; position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.95) 1.6px, transparent 2.4px), radial-gradient(circle, rgba(255,255,255,0.65) 1.1px, transparent 1.8px), radial-gradient(circle, rgba(255,255,255,0.45) 2.2px, transparent 3px);
  background-size: 110px 110px, 70px 70px, 170px 170px;
  animation: ivsnow 16s linear infinite; }
#age-gate::after { content:'❄'; position:absolute; top:6%; left:7%; font-size:130px; color:rgba(255,255,255,0.28); transform:rotate(-14deg); pointer-events:none; text-shadow: 40vw 30vh 0 rgba(255,255,255,0.18), 70vw 60vh 0 rgba(255,255,255,0.22); }
@keyframes ivsnow { to { background-position: 30px 110vh, -40px 100vh, 60px 120vh; } }
#age-gate > div { background: rgba(255,255,255,0.9) !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.75); box-shadow: 0 24px 80px rgba(27,42,74,0.4) !important; position:relative; z-index:1; }

/* subtle frost crystal pattern across the whole site */
body { background-color: #FCFCFF; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><g stroke='%23E4F5FA' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.9'><path d='M60 30v36M42 39l36 18M78 39L42 57M60 40l-6-6M60 40l6-6M60 56l-6 6M60 56l6 6'/><path d='M180 150v30M165 157l30 16M195 157l-30 16'/></g></svg>"); }

/* ═══ NATURAL FROST PASS ═══ */
body { background-color: #F6FAFD; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'><g fill='none' stroke-linecap='round'><g stroke='%23E2F0F8' stroke-width='1.6' transform='rotate(14 80 70)'><path d='M80 34v72M49 52l62 36M111 52L49 88M80 48l-7-7M80 48l7-7M80 92l-7 7M80 92l7 7M60 58l-9-2M60 82l-9 2M100 58l9-2M100 82l9 2'/></g><g stroke='%23E8F4FA' stroke-width='1.3' transform='rotate(-22 310 140)'><path d='M310 116v48M290 128l40 24M330 128l-40 24'/></g><g stroke='%23E5F2F9' stroke-width='1.4' transform='rotate(30 150 320)'><path d='M150 290v60M124 305l52 30M176 305l-52 30M150 302l-6-6M150 302l6-6M150 338l-6 6M150 338l6 6'/></g><g stroke='%23EBF6FB' stroke-width='1.2' transform='rotate(-10 360 350)'><path d='M360 334v32M347 342l26 16M373 342l-26 16'/></g></g></svg>"); background-size: 420px 420px; }
.tile-photo { height: 150px; background: #fff; border-radius: 12px; display:flex; align-items:center; justify-content:center; margin-bottom: 14px; border: 1px solid rgba(171,209,243,0.45); }
.tile-photo img { max-height: 128px; max-width: 88%; object-fit: contain; }
.brandx-card { position: relative; overflow: hidden; }
.bx-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.brandx-card::after { content:''; position:absolute; inset:0; background: linear-gradient(165deg, rgba(27,42,74,0.15) 0%, rgba(27,42,74,0.88) 78%); }
.brandx-card h3, .brandx-card p, .brandx-card span { position: relative; z-index: 1; }

/* ═══ HOMEPAGE FALLING ICE CRYSTALS (light & gentle) ═══ */
.ice-frost{position:fixed;inset:0;pointer-events:none;z-index:60;overflow:hidden;}
.ice-frost .flake{position:absolute;top:-6vh;line-height:1;color:#CFE9F6;
  text-shadow:0 0 6px rgba(190,225,244,.55);opacity:0;will-change:transform;
  animation:iv-fall linear infinite;}
@keyframes iv-fall{
  0%{transform:translate3d(0,-6vh,0) rotate(0deg);opacity:0;}
  8%{opacity:var(--o,.55);}
  92%{opacity:var(--o,.55);}
  100%{transform:translate3d(var(--drift,18px),108vh,0) rotate(300deg);opacity:0;}
}
@media(prefers-reduced-motion:reduce){.ice-frost{display:none;}}

/* ═══ PINKVAPE-STYLE HOMEPAGE (IceVape blue theme) ═══ */
.announce-bar{background:linear-gradient(90deg,#1B2A4A,#3D5C85);color:#EAF4FB;text-align:center;font-family:'Oswald',sans-serif;font-size:13px;font-weight:600;letter-spacing:.02em;padding:9px 16px;}
.announce-bar a{color:#fff;text-decoration:underline;}
.pv-hero{padding:24px 0 6px;}
.pv-hero-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:22px;}
.pv-hero-main{background:linear-gradient(135deg,#3D5C85 0%,#1B2A4A 100%);border-radius:22px;padding:52px 46px;color:#fff;position:relative;overflow:hidden;min-height:370px;display:flex;flex-direction:column;justify-content:center;}
.pv-hero-main::after{content:'';position:absolute;right:-70px;bottom:-70px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,0.07);}
.pv-hero-eyebrow{font-family:'Oswald',sans-serif;text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:700;color:#ABD1F3;margin-bottom:14px;position:relative;z-index:1;}
.pv-hero-main h1{font-family:'Oswald',sans-serif;font-weight:800;font-size:54px;line-height:1.02;margin:0 0 16px;color:#fff;position:relative;z-index:1;}
.pv-hero-main p{font-size:15.5px;line-height:1.6;color:rgba(255,255,255,.85);max-width:450px;margin:0 0 28px;position:relative;z-index:1;}
.pv-hero-btn{display:inline-block;background:#fff;color:#1B2A4A;font-family:'Oswald',sans-serif;font-weight:700;font-size:15px;padding:14px 32px;border-radius:999px;width:max-content;position:relative;z-index:1;transition:background .15s;}
.pv-hero-btn:hover{background:#DFF7FA;}
.pv-promos{display:flex;flex-direction:column;gap:22px;}
.pv-promo{border-radius:22px;padding:30px 32px;color:#fff;display:flex;flex-direction:column;justify-content:center;flex:1;min-height:158px;position:relative;overflow:hidden;transition:transform .15s;}
.pv-promo:hover{transform:translateY(-3px);}
.pv-promo-a{background:linear-gradient(135deg,#2E4A73,#41628F);}
.pv-promo-b{background:linear-gradient(135deg,#12857F,#12B3AC);}
.pv-promo-big{font-family:'Oswald',sans-serif;font-weight:800;font-size:30px;margin-bottom:6px;line-height:1.05;}
.pv-promo-sub{font-size:14px;color:rgba(255,255,255,.92);margin-bottom:16px;}
.pv-promo-btn{display:inline-block;border:1.5px solid rgba(255,255,255,.75);color:#fff;font-family:'Oswald',sans-serif;font-weight:700;font-size:13px;padding:9px 22px;border-radius:999px;width:max-content;transition:all .15s;}
.pv-promo:hover .pv-promo-btn{background:#fff;color:#1B2A4A;}
.cat-tile .tile-emoji{height:120px;display:flex;align-items:center;justify-content:center;font-size:46px;background:#EAF4FB;border-radius:14px;margin-bottom:14px;}
@media(max-width:860px){.pv-hero-grid{grid-template-columns:1fr;}.pv-hero-main{padding:40px 30px;min-height:auto;}.pv-hero-main h1{font-size:40px;}}

/* ═══ PINKVAPE-STYLE HOME SECTIONS (blue theme) ═══ */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.why-card{background:#fff;border:1px solid #E4EEF7;border-radius:16px;padding:26px 24px;box-shadow:0 8px 24px rgba(171,209,243,.14);}
.why-card .why-ico{font-size:30px;margin-bottom:12px;}
.why-card h3{font-family:'Oswald',sans-serif;font-size:17px;color:#1B2A4A;margin:0 0 8px;font-weight:700;}
.why-card p{font-size:14px;color:#5B7086;line-height:1.6;margin:0;}
.welcome-block{text-align:center;max-width:820px;margin:0 auto;}
.welcome-block h2{margin-bottom:14px;}
.welcome-block p{font-size:15.5px;color:#5B7086;line-height:1.75;}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.review-card{background:#fff;border:1px solid #E4EEF7;border-radius:16px;padding:26px 24px;box-shadow:0 8px 24px rgba(171,209,243,.14);}
.review-card .review-stars{color:#F5B301;font-size:16px;letter-spacing:2px;margin-bottom:10px;}
.review-card p{font-size:14.5px;color:#33507A;line-height:1.6;font-style:italic;margin:0 0 12px;}
.review-card b{font-family:'Oswald',sans-serif;color:#1B2A4A;font-size:13.5px;}
.newsletter-cta{background:linear-gradient(135deg,#3D5C85,#1B2A4A);border-radius:22px;padding:44px 32px;text-align:center;color:#fff;}
.newsletter-cta h2{color:#fff;margin-bottom:8px;}
.newsletter-cta p{color:rgba(255,255,255,.85);font-size:15px;margin-bottom:22px;}
.nl-form{display:flex;gap:10px;max-width:460px;margin:0 auto 12px;}
.nl-form input{flex:1;padding:14px 18px;border-radius:999px;border:none;font-size:14.5px;}
.nl-form button{background:#fff;color:#1B2A4A;border:none;font-family:'Oswald',sans-serif;font-weight:700;font-size:14px;padding:14px 26px;border-radius:999px;cursor:pointer;}
.nl-note{font-size:11.5px;color:rgba(255,255,255,.6);}
@media(max-width:860px){.why-grid,.review-grid{grid-template-columns:1fr;}.nl-form{flex-direction:column;}}
/* 5-column footer */
.site-footer .footer-grid{grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;}
@media(max-width:900px){.site-footer .footer-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.site-footer .footer-grid{grid-template-columns:1fr;}}
/* header without order timer */
.header-inner.hi-4{grid-template-columns:auto 1fr auto;}
