:root {
--ink: #0f0e0c;
--white: #ffffff;
--cream: #faf7f2;
--warm: #f0ebe0;
--gold: #c9a84c;
--gold-light: #e8c96a;
--rust: #b84c2a;
--sage: #5a7a5e;
--text: #2c2a26;
--muted: #7a7268;
--border: #ddd5c4;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--text);
overflow-x: hidden;
}

/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(250,247,242,0.95);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0 5%;
display: flex; align-items: center; justify-content: space-between;
height: 68px;
}
.nav-logo {
font-family: 'Playfair Display', serif;
font-size: 1.5rem; font-weight: 900;
color: var(--ink);
text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none;margin-bottom: 0;align-items: center; }
.nav-links a {
text-decoration: none; color: var(--text);
font-size: 0.9rem; font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
background: var(--ink); color: var(--cream) !important;
padding: 0.5rem 1.2rem; border-radius: 4px;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: 0.3s; }

/* HERO */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
padding: 100px 5% 60px;
gap: 4rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute; top: -100px; right: -100px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
pointer-events: none;
}
.hero-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
background: var(--warm); border: 1px solid var(--gold);
color: var(--rust); padding: 0.4rem 1rem; border-radius: 50px;
font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
text-transform: uppercase; margin-bottom: 1.5rem;
animation: fadeUp 0.6s ease both;
}
.hero-title {
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 5vw, 4.5rem);
line-height: 1.1; font-weight: 900;
color: var(--ink);
animation: fadeUp 0.7s ease 0.1s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
margin: 1.5rem 0 2.5rem;
font-size: 1.1rem; line-height: 1.7;
color: var(--muted); max-width: 480px;
animation: fadeUp 0.7s ease 0.2s both;
}
.hero-btns {
display: flex; gap: 1rem; flex-wrap: wrap;
animation: fadeUp 0.7s ease 0.3s both;
}
.btn-primary {
display: inline-block;
background: var(--ink); color: var(--cream);
padding: 0.9rem 2rem; border-radius: 4px;
text-decoration: none; font-weight: 600; font-size: 1rem;
transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-outline {
display: inline-block;
border: 2px solid var(--ink); color: var(--ink);
padding: 0.9rem 2rem; border-radius: 4px;
text-decoration: none; font-weight: 600; font-size: 1rem;
transition: transform 0.2s, background 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.hero-stats {
display: flex; gap: 2rem; margin-top: 3rem;
animation: fadeUp 0.7s ease 0.4s both;
}
.stat { text-align: left; }
.stat-num {
font-family: 'Playfair Display', serif;
font-size: 1.8rem; font-weight: 900; color: var(--ink);
}
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* BOOK VISUAL */
.hero-visual {
display: flex; justify-content: center; align-items: center;
animation: fadeRight 0.8s ease 0.2s both;
}
.book-stack {
position: relative; width: 280px; height: 360px;
}
.book-card {
position: absolute;
width: 200px; height: 270px;
border-radius: 4px 12px 12px 4px;
box-shadow: 8px 8px 30px rgba(0,0,0,0.2);
}
.book-card:nth-child(1) {
background: linear-gradient(135deg, #2c4a3e 0%, #4a7c65 100%);
top: 60px; left: 60px; transform: rotate(6deg);
}
.book-card:nth-child(2) {
background: linear-gradient(135deg, #6b3a2a 0%, #b06040 100%);
top: 40px; left: 40px; transform: rotate(2deg);
}
.book-card:nth-child(3) {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
top: 20px; left: 20px; transform: rotate(-3deg);
}
.book-main {
position: absolute;
width: 210px; height: 280px;
background: linear-gradient(160deg, #0f0e0c 0%, #2c2a26 100%);
top: 10px; left: 0px; transform: rotate(0deg);
border-radius: 4px 14px 14px 4px;
box-shadow: 12px 16px 40px rgba(0,0,0,0.35);
display: flex; flex-direction: column;
justify-content: space-between; padding: 24px 20px;
z-index: 5;
}
.book-label {
font-size: 0.6rem; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--gold);
font-weight: 600;
}
.book-title-vis {
font-family: 'Playfair Display', serif;
font-size: 1.3rem; font-weight: 900; color: white;
line-height: 1.2;
}
.book-author { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.book-deco {
width: 100%; height: 3px;
background: linear-gradient(90deg, var(--gold), transparent);
margin: 8px 0;
}
.book-price-tag {
position: absolute; bottom: -15px; right: -15px;
background: var(--gold); color: var(--ink);
width: 60px; height: 60px; border-radius: 50%;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
font-weight: 900; box-shadow: 4px 4px 16px rgba(201,168,76,0.4);
z-index: 10;
}
.book-price-tag .price { font-size: 1.1rem; line-height: 1; }
.book-price-tag .cent { font-size: 0.65rem; }

/* FEATURES */
.section { padding: 80px 5%; }
.section-tag {
display: inline-block;
font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
text-transform: uppercase; color: var(--gold);
margin-bottom: 0.8rem;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 3.5vw, 3rem);
font-weight: 900; color: var(--ink);
line-height: 1.2;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-top: 1rem; max-width: 520px; }

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem; margin-top: 4rem;
}
.feature-card {
background: white; border: 1px solid var(--border);
border-radius: 12px; padding: 2rem;
transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.feature-icon {
width: 52px; height: 52px; border-radius: 10px;
background: var(--warm); display: flex; align-items: center;
justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem;
}
.feature-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* PRODUCTS SECTION */
.products-section { background: var(--ink); padding: 80px 5%; }
.products-section .section-title { color: var(--cream); }
.products-section .section-tag { color: var(--gold-light); }
.products-section .section-sub { color: rgba(250,247,242,0.6); }
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem; margin-top: 4rem;
}
.product-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px; overflow: hidden;
transition: transform 0.3s, border-color 0.3s;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.product-thumb {
height: 180px;
display: flex; align-items: center; justify-content: center;
font-size: 3rem; position: relative;
}
.product-thumb.g1 { background: linear-gradient(135deg, #2c4a3e, #4a7c65); }
.product-thumb.g2 { background: linear-gradient(135deg, #3a2060, #6b40b0); }
.product-thumb.g3 { background: linear-gradient(135deg, #6b3a2a, #b06040); }
.product-badge {
position: absolute; top: 12px; right: 12px;
background: var(--gold); color: var(--ink);
font-size: 0.7rem; font-weight: 700;
padding: 3px 10px; border-radius: 50px;
text-transform: uppercase;
}
.product-info { padding: 1.5rem; }
.product-name {
font-family: 'Playfair Display', serif;
font-weight: 700; font-size: 1.15rem;
color: var(--cream); margin-bottom: 0.5rem;
}
.product-desc { color: rgba(250,247,242,0.5); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1.2rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
font-family: 'Playfair Display', serif;
font-size: 1.4rem; font-weight: 900; color: var(--gold);
}
.btn-buy {
background: var(--gold); color: var(--ink);
padding: 0.5rem 1.2rem; border-radius: 4px;
border: none; cursor: pointer; font-weight: 700; font-size: 0.85rem;
transition: background 0.2s, transform 0.2s;
text-decoration: none; display: inline-block;
}
.btn-buy:hover { background: var(--gold-light); transform: scale(1.04); }

/* TESTIMONIALS */
.testimonials { background: var(--warm); padding: 80px 5%; }
.testi-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem; margin-top: 4rem;
}
.testi-card {
background: white; border-radius: 12px; padding: 2rem;
border: 1px solid var(--border);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testi-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
width: 40px; height: 40px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 1.2rem; background: var(--warm);
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--muted); }

/* CTA SECTION */
.cta-section {
padding: 100px 5%; text-align: center;
background: linear-gradient(160deg, var(--cream) 0%, var(--warm) 100%);
}
.cta-section .section-title { font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-section .section-sub { margin: 1rem auto 2.5rem; text-align: center; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
background: var(--ink); color: var(--cream);
padding: 60px 5% 30px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--cream); }
.footer-brand p { color: rgba(250,247,242,0.5); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; }
.footer-col h4 { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color:
var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(250,247,242,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 1.5rem;
display: flex; align-items: center; justify-content: space-between;
font-size: 0.8rem; color: rgba(250,247,242,0.4);
flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(250,247,242,0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }
.secure-badge {
display: flex; align-items: center; gap: 0.5rem;
background: rgba(255,255,255,0.05); padding: 0.4rem 0.8rem;
border-radius: 4px; border: 1px solid rgba(255,255,255,0.1);
font-size: 0.78rem; color: rgba(250,247,242,0.6);
}

/* ANIMATIONS */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
from { opacity: 0; transform: translateX(40px); }
to { opacity: 1; transform: translateX(0); }
}

/* MOBILE NAV */
.mobile-menu {
display: none; position: fixed;
top: 68px; left: 0; right: 0;
background: var(--cream); border-bottom: 1px solid var(--border);
padding: 1.5rem 5%; z-index: 99; flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; padding: 0.5rem 0; border-bottom: 1px
solid var(--border); }

/* RESPONSIVE */
@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-btns { justify-content: center; }
.hero-stats { justify-content: center; }
.hero-visual { order: -1; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.nav-links { display: none; }
.hamburger { display: flex; }
}
@media (max-width: 560px) {
.footer-grid { grid-template-columns: 1fr; }
.book-stack { transform: scale(0.85); }
}





/*====================================
Product Details page css
=======================================*/

/* ── BREADCRUMB ── */
.breadcrumb { padding: 86px 5% 0; display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }

/* ── PRODUCT HERO ── */
.product-hero { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; padding: 2.5rem 5% 5rem; max-width: 1240px;
margin: 0 auto; align-items: start; }

/* LEFT */
.p-category {
display: inline-flex; align-items: center; gap: .4rem;
background: var(--warm); border: 1px solid var(--gold);
color: var(--rust); padding: .3rem .9rem; border-radius: 50px;
font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
margin-bottom: 1.2rem;
}
.p-title {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 4.5vw, 3.6rem);
font-weight: 900; line-height: 1.1; color: var(--ink); margin-bottom: 1rem;
}
.p-title em { color: var(--gold); font-style: italic; }
.p-sub { font-size: 1rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.5rem; max-width: 560px; }

.rating-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .08rem; }
.rating-text { font-size: .88rem; color: var(--muted); }
.rating-text strong { color: var(--text); }
.badge-pill { background: rgba(74,124,94,.1); border: 1px solid rgba(74,124,94,.25); color: var(--sage); font-size:
.72rem; font-weight: 700; padding: .25rem .8rem; border-radius: 50px; }

.chip-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--white); border: 1px solid
var(--border); border-radius: 6px; padding: .4rem .9rem; font-size: .8rem; font-weight: 600; color: var(--text); }
.chip .ci { font-size: .95rem; }

/* TABS */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn { background: none; border: none; padding: .75rem 1.4rem; font-family: 'DM Sans', sans-serif; font-size: .9rem;
font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
transition: all .2s; }
.tab-btn.active { color: var(--ink); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* learn grid */
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.5rem; }
.learn-item { display: flex; align-items: flex-start; gap: .7rem; background: var(--white); border: 1px solid
var(--border); border-radius: 8px; padding: .8rem 1rem; }
.lcheck { color: var(--sage); flex-shrink: 0; font-size: .95rem; margin-top: .1rem; }
.ltext { font-size: .86rem; line-height: 1.55; color: var(--text); }

/* description */
.desc-text p { font-size: .94rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

/* author */
.author-card { display: flex; gap: 1.2rem; align-items: flex-start; background: var(--white); border: 1px solid
var(--border); border-radius: 12px; padding: 1.4rem; margin-top: 1.5rem; }
.author-avatar { width: 54px; height: 54px; min-width: 54px; border-radius: 50%; background: linear-gradient(135deg,
#2c4a3e, #4a7c65); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.author-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold);
margin-bottom: .2rem; }
.author-name { font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: .3rem; }
.author-bio { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* reviews tab */
.rv-summary { display: flex; gap: 2.5rem; background: var(--warm); border-radius: 12px; padding: 1.8rem; margin-bottom:
2rem; border: 1px solid var(--border); flex-wrap: wrap; }
.rv-big { text-align: center; }
.rv-num { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 900; color: var(--ink); line-height:
1; }
.rv-stars-big { color: var(--gold); font-size: 1.2rem; margin: .3rem 0; }
.rv-cnt { font-size: .78rem; color: var(--muted); }
.rv-bars { flex: 1; min-width: 180px; }
.bar-row { display: flex; align-items: center; gap: .7rem; margin-bottom: .45rem; font-size: .8rem; color: var(--muted);
}
.bar-lbl { width: 32px; }
.bar-track { flex: 1; height: 5px; background: var(--border); border-radius: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 10px; }
.rv-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.rv-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; }
.rv-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .8rem; }
.rv-user { display: flex; align-items: center; gap: .7rem; }
.rv-av { width: 36px; height: 36px; border-radius: 50%; background: var(--warm); display: flex; align-items: center;
justify-content: center; font-size: 1.1rem; }
.rv-uname { font-weight: 700; font-size: .9rem; color: var(--ink); }
.rv-date { font-size: .74rem; color: var(--muted); }
.rv-text { font-size: .9rem; color: var(--muted); line-height: 1.72; }
.rv-verified { font-size: .72rem; color: var(--sage); font-weight: 700; margin-top: .6rem; }

/* RIGHT — BUY CARD */
.buy-card { position: sticky; top: 84px; background: var(--white); border: 1px solid var(--border); border-radius: 16px;
overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.08); }
.buy-cover { height: 330px; background: linear-gradient(145deg, #0f0e0c 0%, #1e3528 50%, #0d2a48 100%); display: flex;
align-items: center; justify-content: center; font-size: 3.8rem; position: relative; }
.buy-cover-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink); font-size:
.68rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .05em; }
.buy-body { padding: 1.8rem; }
.buy-price-row { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .3rem; }
.buy-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--ink); line-height:
1; }
.buy-price-old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.buy-save { background: rgba(74,124,94,.1); color: var(--sage); border: 1px solid rgba(74,124,94,.25); font-size:
.72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 50px; }
.buy-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }

.btn-buy-main {
display: block; width: 100%; padding: 1rem; border-radius: 6px;
background: var(--ink); color: var(--cream); border: none;
font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
cursor: pointer; text-align: center; text-decoration: none;
transition: background .2s, transform .2s; margin-bottom: .8rem;
}
.btn-buy-main:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-preview {
display: block; width: 100%; padding: .8rem; border-radius: 6px;
background: transparent; color: var(--text); border: 2px solid var(--border);
font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600;
cursor: pointer; text-align: center; transition: border-color .2s, color .2s; margin-bottom: 1.2rem;
}
.btn-preview:hover { border-color: var(--ink); color: var(--ink); }
.secure-row { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .78rem; color:
var(--muted); margin-bottom: 1.2rem; }
.includes-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color:
var(--muted); margin-bottom: .8rem; }
.inc-list { display: flex; flex-direction: column; gap: .5rem; }
.inc-item { display: flex; align-items: center; gap: .7rem; font-size: .86rem; color: var(--text); }
.inc-icon { font-size: .95rem; width: 20px; }
.guarantee-strip { background: rgba(74,124,94,.07); border-top: 1px solid rgba(74,124,94,.18); padding: 1rem 1.8rem;
display: flex; align-items: flex-start; gap: .7rem; }
.guarantee-strip .gi { font-size: 1.3rem; }
.guarantee-strip p { font-size: .82rem; color: var(--sage); line-height: 1.5; margin: 0; font-weight: 500; }
.guarantee-strip p span { font-weight: 400; color: var(--muted); }

/* RELATED */
.related-section { background: var(--warm); border-top: 1px solid var(--border); padding: 4rem 5%; }
.related-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--ink);
margin-bottom: .4rem; }
.related-section p { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
cursor: pointer; transition: transform .3s, box-shadow .3s; }
.related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.rc-thumb { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.rc-thumb.g1 { background: linear-gradient(135deg, #2c4a3e, #4a7c65); }
.rc-thumb.g2 { background: linear-gradient(135deg, #3a2060, #6b40b0); }
.rc-thumb.g3 { background: linear-gradient(135deg, #3e2a1a, #7c5a2a); }
.rc-info { padding: 1rem; }
.rc-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom:
.3rem; }
.rc-price { font-size: .9rem; color: var(--gold); font-weight: 700; }

/* MOBILE STICKY BAR */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px
solid var(--border); padding: .9rem 5%; z-index: 90; align-items: center; justify-content: space-between; gap: 1rem;
box-shadow: 0 -6px 24px rgba(0,0,0,.1); }
.mob-price { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: var(--ink); }
.mob-price small { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--muted); text-decoration:
line-through; margin-left: .3rem; font-weight: 400; }
.btn-mob-buy { background: var(--ink); color: var(--cream); padding: .8rem 2rem; border-radius: 6px; border: none;
font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .2s; }
.btn-mob-buy:hover { background: var(--gold); color: var(--ink); }



/*============================
Checkout Page
=============================*/

/* ───── ORDER CARD ───── */
.order-side {
	max-width: 400px;
	margin: auto;
	margin-top: 110px;
	margin-bottom: 50px;
}
.order-card{background:var(--white);border:1px solid var(--border);border-radius:14px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,.07)}
.order-header{background:var(--warm);border-bottom:1px solid var(--border);padding:1.1rem 1.5rem;display:flex;align-items:flex-start;justify-content:space-between;gap:.8rem}
.order-header-left h2{font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:.15rem}
.order-header-left p{font-size:.78rem;color:var(--muted)}
.auth-btn{display:inline-flex;align-items:center;gap:.35rem;background:var(--ink);color:var(--white);border:none;border-radius:6px;padding:.45rem .95rem;font-size:.78rem;font-weight:700;cursor:pointer;white-space:nowrap;transition:background .2s,color .2s;font-family:inherit;flex-shrink:0}
.auth-btn:hover{background:var(--gold);color:var(--ink)}
.order-body{padding:1.4rem 1.5rem}
.line-item{display:flex;justify-content:space-between;align-items:flex-start;gap:.5rem;padding:.8rem 0;border-bottom:1px solid var(--border)}
.line-item:last-of-type{border-bottom:none}
.li-name{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:.15rem}
.li-desc{font-size:.76rem;color:var(--muted)}
.li-original{font-size:.76rem;color:var(--muted);text-decoration:line-through;text-align:right}
.li-price{font-size:.95rem;font-weight:700;color:var(--ink);text-align:right}
.li-discount{font-size:.88rem;font-weight:700;color:var(--green)}
.total-row{display:flex;justify-content:space-between;align-items:center;padding:1rem 0 .6rem;border-top:2px solid var(--border);margin-top:.4rem}
.total-label{font-size:1rem;font-weight:700;color:var(--ink)}
.total-price{font-size:1.5rem;font-weight:900;color:var(--ink)}
.tax-note{font-size:.72rem;color:var(--muted);margin-bottom:1rem}
.btn-checkout{display:block;width:100%;padding:.95rem;background:var(--ink);color:var(--white);border:none;border-radius:8px;font-size:1rem;font-weight:700;cursor:pointer;transition:background .2s,color .2s;font-family:inherit;margin-bottom:.8rem}
.btn-checkout:hover{background:var(--gold);color:var(--ink)}
.guarantee-strip{text-align:center;font-size:.8rem;color:var(--sage);font-weight:600;background:var(--sage-bg);border:1px solid var(--sage-bd);border-radius:6px;padding:.65rem;margin-bottom:.9rem}
.trust-row{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;margin-bottom:.8rem}
.trust-item{font-size:.72rem;color:var(--muted)}
.paddle-note{text-align:center;font-size:.74rem;color:var(--muted);margin-bottom:.7rem}
.paddle-note a{color:var(--gold);text-decoration:none}
.paddle-note a:hover{text-decoration:underline}
.secure-icons{display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap}
.s-icon{font-size:.68rem;font-weight:800;color:var(--muted);background:var(--warm);border:1px solid var(--border);border-radius:4px;padding:.25rem .6rem;letter-spacing:.03em}

/* ───── OVERLAY ───── */
.bv-overlay{
  position:fixed;inset:0;z-index:9000;
  background:rgba(15,14,12,.55);
  display:flex;align-items:center;justify-content:center;padding:1rem;
  opacity:0;visibility:hidden;
  transition:opacity .22s ease,visibility .22s ease;
}
.bv-overlay.is-open{opacity:1;visibility:visible}

/* ───── MODAL SHELL ───── */
.bv-modal{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:16px;
  width:100%;max-width:400px;
  display:flex;flex-direction:column;
  max-height:520px;
  overflow:hidden;
  transform:translateY(20px) scale(.97);
  transition:transform .22s ease,opacity .22s ease;
  opacity:0;
}
.bv-overlay.is-open .bv-modal{transform:translateY(0) scale(1);opacity:1}

/* ── modal header — fixed ── */
.bv-modal-header{
  flex-shrink:0;
  background:var(--warm);
  border-bottom:1px solid var(--border);
  padding:1rem 1.4rem;
  display:flex;align-items:center;justify-content:space-between;
}
.bv-logo{font-size:1.15rem;font-weight:900;color:var(--ink);font-family:inherit;letter-spacing:-.01em}
.bv-logo em{color:var(--gold);font-style:normal}
.bv-close{
  width:30px;height:30px;border-radius:6px;
  background:none;border:1px solid transparent;
  color:var(--muted);font-size:1.2rem;line-height:1;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background .15s,border-color .15s,color .15s;font-family:inherit;
}
.bv-close:hover{background:var(--border);border-color:var(--border);color:var(--ink)}

/* ── tabs — fixed ── */
.bv-tabs{
  flex-shrink:0;
  display:flex;
  background:var(--cream);
  border-bottom:2px solid var(--border);
}
.bv-tab{
  flex:1;background:none;border:none;border-bottom:2px solid transparent;
  margin-bottom:-2px;padding:.78rem 1rem;
  font-family:inherit;font-size:.9rem;font-weight:700;
  color:var(--muted);cursor:pointer;
  transition:color .18s,border-color .18s;
}
.bv-tab:hover{color:var(--text)}
.bv-tab.active{color:var(--ink);border-bottom-color:var(--gold)}

/* ── scrollable body ── */
.bv-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
	background: rgba(250,247,242,0.95);
}
.bv-modal-body::-webkit-scrollbar{width:4px}
.bv-modal-body::-webkit-scrollbar-track{background:transparent}
.bv-modal-body::-webkit-scrollbar-thumb{background:var(--border);border-radius:10px}
.bv-modal-body::-webkit-scrollbar-thumb:hover{background:var(--muted)}

/* panels */
.bv-panel{display:none}
.bv-panel.active{display:block}

/* ── form fields ── */
.bv-field{margin-bottom:1rem}
.bv-field label{display:block;font-size:.78rem;font-weight:700;color:var(--text);margin-bottom:.38rem}
.bv-field label .req{color:var(--error);margin-left:2px}
.bv-input{
  width:100%;height:42px;padding:0 1rem;
  background:var(--cream);color:var(--ink);
  border:1.5px solid var(--border);border-radius:7px;
  font-family:inherit;font-size:.92rem;
  outline:none;transition:border-color .18s,background .18s;
}
.bv-input:focus{border-color:var(--ink);background:var(--white)}
.bv-input::placeholder{color:var(--muted)}
.bv-input.has-error{border-color:var(--error)}

/* password wrapper */
.bv-pw-wrap{position:relative}
.bv-pw-wrap .bv-input{padding-right:2.8rem}
.bv-eye{
  position:absolute;right:.75rem;top:50%;transform:translateY(-50%);
  background:none;border:none;cursor:pointer;
  color:var(--muted);font-size:.95rem;padding:.2rem;
  transition:color .15s;line-height:1;
}
.bv-eye:hover{color:var(--ink)}

/* two-col row */
.bv-row{display:grid;grid-template-columns:1fr;gap:.8rem}

/* strength bar */
.bv-strength{height:3px;background:var(--border);border-radius:10px;margin-top:.38rem;overflow:hidden}
.bv-strength-fill{height:100%;border-radius:10px;width:0;transition:width .3s,background .3s}
.bv-strength-lbl{font-size:.7rem;color:var(--muted);margin-top:.28rem;min-height:1rem}

/* submit button */
.bv-submit{
  display:block;width:100%;height:44px;margin-top:1.1rem;
  background:var(--ink);color:var(--white);
  border:none;border-radius:8px;
  font-family:inherit;font-size:.97rem;font-weight:700;
  cursor:pointer;transition:background .2s,color .2s;
}
.bv-submit:hover{background:var(--gold);color:var(--ink)}

/* divider */
.bv-divider{display:flex;align-items:center;gap:.8rem;margin:.9rem 0;font-size:.78rem;color:var(--muted)}
.bv-divider::before,.bv-divider::after{content:'';flex:1;height:1px;background:var(--border)}

/* footnote */
.bv-note{text-align:center;font-size:.75rem;color:var(--muted);margin-top:1rem;line-height:1.65}
.bv-note a{color:var(--gold);font-weight:600;text-decoration:none}
.bv-note a:hover{text-decoration:underline}

/* forgot */
.bv-forgot{text-align:right;margin-top:-.15rem;margin-bottom:.5rem}
.bv-forgot a{font-size:.76rem;color:var(--gold);font-weight:600;text-decoration:none}
.bv-forgot a:hover{text-decoration:underline}


.footer-col ul {
	padding-left: 0 !important;
}



