/* ============================================================
   ProExtender India – Main Stylesheet
   Aesthetic: Clean Medical / Trust-first / Refined Blue
   ============================================================ */

/* System fonts — no external request, fast load */

:root {
    --navy:      #0f1f45;
    --blue:      #1e4fd8;
    --blue-lt:   #3b6ef0;
    --blue-pale: #eef2ff;
    --grad:      linear-gradient(135deg,#0f1f45 0%,#1e4fd8 100%);
    --grad-soft: linear-gradient(135deg,#1a2e5a 0%,#2563eb 100%);
    --green:     #16a34a;
    --red:       #dc2626;
    --gold:      #d97706;
    --white:     #ffffff;
    --gray-50:   #f8fafc;
    --gray-100:  #f1f5f9;
    --gray-200:  #e2e8f0;
    --gray-400:  #94a3b8;
    --gray-600:  #475569;
    --gray-800:  #1e293b;
    --text:      #1e293b;
    --radius:    10px;
    --shadow:    0 4px 24px rgba(15,31,69,.12);
    --shadow-lg: 0 8px 40px rgba(15,31,69,.18);
    --transition: .25s ease;
    --font-head:  -apple-system,'Segoe UI','Helvetica Neue',Arial,sans-serif;
    --font-body:  -apple-system,'Segoe UI','Helvetica Neue',Arial,sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 70px 0; }
.section-sm { padding: 40px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem,5vw,3rem); }
h2 { font-size: clamp(1.6rem,4vw,2.2rem); }
h3 { font-size: clamp(1.2rem,3vw,1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-navy   { color: var(--navy) !important; }
.text-blue   { color: var(--blue) !important; }
.text-green  { color: var(--green) !important; }
.text-red    { color: var(--red) !important; }
.text-gold   { color: var(--gold) !important; }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem,4vw,2.4rem);
    color: var(--navy);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary   { background: var(--grad-soft); color: #fff; border-color: transparent; }
.btn-primary:hover { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(30,79,216,.35); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-navy      { background: var(--grad); color: #fff; border-color: transparent; }
.btn-navy:hover{ filter: brightness(1.1); color: #fff; }
.btn-green     { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover{ filter: brightness(.9); }
.btn-gold      { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-sm        { padding: 9px 20px; font-size: .85rem; }
.btn-lg        { padding: 16px 36px; font-size: 1.05rem; }
.btn-block     { width: 100%; justify-content: center; }
.btn-danger    { background: var(--red); color: #fff; border-color: var(--red); }

/* ─── ALERTS ─────────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-size: .95rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.card-body { padding: 28px; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-weight: 500; margin-bottom: .4rem; font-size: .9rem; color: var(--gray-800); }
.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--blue); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){.form-row{grid-template-columns:1fr;}}
.form-error { color: var(--red); font-size: .82rem; margin-top: .3rem; }

/* ─── BADGE ───────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.badge-green  { background:#d1fae5; color:#065f46; }
.badge-blue   { background:#dbeafe; color:#1e40af; }
.badge-yellow { background:#fef9c3; color:#854d0e; }
.badge-red    { background:#fee2e2; color:#991b1b; }
.badge-gray   { background:#f1f5f9; color:#475569; }

/* ─── HEADER ─────────────────────────────────────────────── */
.top-bar {
    background: var(--grad);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: #fff; }
.top-bar-links { display: flex; gap: 20px; align-items: center; }

.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 48px; }
.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    letter-spacing: -.01em;
}
/* "Pro" — gradient blue text */
.logo-pro {
    color: transparent;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;
    font-size: 1.45rem;
    padding-right: 1px;
}
/* "Extender" — white text on blue gradient pill */
.logo-extender {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    padding: 3px 13px 3px 11px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.35rem;
    margin-left: 2px;
    letter-spacing: -.01em;
    box-shadow: 0 2px 10px rgba(30,79,216,.25);
}
.logo-tagline {
    font-size: .68rem;
    color: var(--gray-400);
    font-weight: 400;
    display: block;
    width: 100%;
    margin-top: 1px;
    letter-spacing: .02em;
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
    display: inline-block;
    padding: 8px 14px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 6px;
    transition: all var(--transition);
}
nav a:hover, nav a.active { color: var(--blue-lt); background: var(--blue-pale); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--grad);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: all var(--transition);
}
@media(max-width:900px){
    .cart-btn {
        padding: 7px 12px;
        font-size: .78rem;
        gap: 4px;
    }
}
.cart-btn:hover { background: var(--blue); color: #fff; }
.cart-count {
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: .7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
@media(max-width:900px){
    .hamburger { display: flex; }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        border-top: 2px solid var(--gray-200);
    }
    nav.open { display: flex; }
    nav a { padding: 12px 16px; border-radius: 8px; font-size: .95rem; }
    .site-header { position: relative; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(160deg, #0a1628 0%, #0f1f45 60%, #1a2e5a 100%);
    color: rgba(255,255,255,.8);
    padding: 60px 0 0;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}
@media(max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 1rem; }
.footer-col p  { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer-col ul li a:hover { color: #fff; }
.footer-logo-text { font-family: var(--font-head); color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.footer-logo-text span { color: var(--blue-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .7rem; font-size: .88rem; color: rgba(255,255,255,.75); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.2rem; }
.trust-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0f1f45 0%, #1a2e6a 40%, #1e4fd8 80%, #3b6ef0 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
@media(max-width:768px){ .hero-grid{ grid-template-columns: 1fr; } }
.hero-title { color: #fff; font-size: clamp(2rem,5vw,3rem); line-height: 1.2; margin-bottom: 1rem; }
.hero-title span { color: #60a5fa; }
.hero-text  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-checklist { margin-bottom: 2rem; }
.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.9);
    margin-bottom: .6rem;
    font-size: .95rem;
}
.hero-checklist li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge-item {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-product-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    text-align: center;
    max-width: 360px;
    width: 100%;
}
.hero-product-card img { border-radius: 10px; margin-bottom: 1rem; }
.hero-product-name { font-family: var(--font-head); color: var(--navy); font-size: 1.1rem; }
.hero-product-price { margin-top: .5rem; }
.price-old { text-decoration: line-through; color: var(--gray-400); font-size: .9rem; }
.price-new { color: var(--blue); font-size: 1.4rem; font-weight: 700; }
.price-note { font-size: .78rem; color: var(--gray-400); }

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
    position: relative;
    background: var(--gray-50);
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.product-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-name { font-family: var(--font-head); color: var(--navy); font-size: 1.1rem; margin-bottom: .5rem; }
.product-card-desc { color: var(--gray-600); font-size: .88rem; margin-bottom: 1rem; flex: 1; }
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 10px;
}

/* ─── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media(max-width:768px){ .product-detail-grid{ grid-template-columns: 1fr; } }
.product-main-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--gray-50);
    overflow: hidden;
}
.product-main-img img { width: 100%; object-fit: contain; padding: 20px; }
.product-price-box {
    background: var(--blue-pale);
    border-radius: var(--radius);
    padding: 20px;
    margin: 1.5rem 0;
    border: 1px solid #bfdbfe;
}
.product-price-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.price-big { font-size: 2rem; font-weight: 700; color: var(--blue); }
.price-crossed { font-size: 1.1rem; color: var(--gray-400); text-decoration: line-through; }
.price-save { background: #dcfce7; color: var(--green); font-size: .85rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
.product-checklist { margin: 1.2rem 0; }
.product-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: .93rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}
.product-checklist li:last-child { border-bottom: none; }
.product-checklist li .chk { color: var(--green); font-weight: 700; flex-shrink: 0; }
.qty-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--gray-200); border-radius: 8px; overflow: hidden; width: fit-content; }
.qty-btn { width: 40px; height: 40px; background: var(--gray-100); border: none; font-size: 1.2rem; cursor: pointer; transition: background var(--transition); }
.qty-btn:hover { background: var(--gray-200); }
.qty-input { width: 56px; height: 40px; border: none; text-align: center; font-size: 1rem; font-weight: 600; outline: none; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-400); }
.breadcrumb-inner a { color: var(--gray-600); }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-inner span { color: var(--gray-400); }

/* ─── FEATURES STRIP ─────────────────────────────────────── */
.features-strip { background: var(--grad); padding: 28px 0; }
.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
@media(max-width:700px){ .features-strip-grid{ grid-template-columns: 1fr 1fr; } }
.feature-strip-item { color: rgba(255,255,255,.9); }
.feature-strip-item .icon { font-size: 1.8rem; margin-bottom: .4rem; }
.feature-strip-item strong { display: block; font-size: .9rem; color: #fff; }
.feature-strip-item span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ─── WHY CHOOSE SECTION ─────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.benefit-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    border-top: 4px solid transparent;
}
.benefit-card:hover { border-top-color: var(--blue-lt); box-shadow: var(--shadow-lg); background: linear-gradient(180deg,#f0f4ff 0%,#fff 60%); }
.benefit-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.benefit-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: .4rem; }
.benefit-card p  { font-size: .88rem; color: var(--gray-600); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-head);
    font-size: 5rem;
    color: var(--blue-pale);
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
}
.testimonial-text { color: var(--gray-600); font-size: .92rem; font-style: italic; margin-bottom: 1rem; padding-top: .5rem; }
.testimonial-author strong { color: var(--navy); font-size: .9rem; }
.testimonial-author span   { color: var(--gray-400); font-size: .8rem; display: block; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .5rem; }

/* ─── CART ───────────────────────────────────────────────── */
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
@media(max-width:900px){ .cart-grid{ grid-template-columns: 1fr !important; } }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--gray-50); padding: 10px 12px; text-align: left; font-size: .8rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; }
.cart-table td { padding: 12px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; font-size: .9rem; }
/* Mobile cart — hide Price column, compress table */
@media(max-width:600px){
    .cart-table .col-price { display: none; }
    .cart-table th:nth-child(3) { display: none; }
    .cart-table td:nth-child(3) { display: none; }
    .cart-table td { padding: 10px 8px; }
    .cart-item-img { width: 60px !important; height: 60px !important; }
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; background: var(--gray-100); }
.cart-item-name { font-weight: 600; color: var(--navy); }
.cart-summary { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: .95rem; }
.cart-summary-row:last-child { border-bottom: none; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.remove-btn { background: none; border: none; color: var(--red); cursor: pointer; font-size: .85rem; }
.remove-btn:hover { text-decoration: underline; }

/* ─── CHECKOUT ───────────────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; }
@media(max-width:900px){ .checkout-grid{ grid-template-columns: 1fr; } }

/* ─── ORDER SUCCESS ──────────────────────────────────────── */
.success-box {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 60px 40px;
    max-width: 600px;
    margin: 40px auto;
}
.success-icon { font-size: 5rem; margin-bottom: 1rem; }

/* ─── ACCOUNT ────────────────────────────────────────────── */
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
@media(max-width:768px){
    .account-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .account-sidebar { display: flex; flex-wrap: wrap; gap: 0; }
    .account-sidebar > div:first-child { width: 100%; }
    .account-nav-item { flex: 1 0 auto; min-width: 50%; border-bottom: 1px solid var(--gray-100); font-size: .82rem; padding: 10px 12px; }
}
@media(max-width:480px){
    .account-nav-item { min-width: 50%; font-size: .78rem; padding: 10px 8px; }
}
/* ── ORDER SLIDER ─────────────────────────────── */
.order-slider-wrap {
    position: relative;
    overflow: hidden;
}
.order-slider {
    display: flex;
    overflow: hidden;            /* JS controls scroll */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}
.order-slide-card {
    flex: 0 0 100%;
    width: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
    transition: transform .3s ease;
}
/* Dots */
.order-slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}
.order-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: background .25s, transform .25s;
}
.order-dot.active {
    background: var(--blue);
    transform: scale(1.25);
}
.account-orders-cards { display: none; }
.scroll-hint { display: none; }
.account-sidebar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.account-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--gray-700);
    font-size: .92rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.account-nav-item:hover, .account-nav-item.active { background: var(--blue-pale); color: var(--blue); }
.account-nav-item svg { opacity: .7; }

/* ─── TABLE ──────────────────────────────────────────────── */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: .8rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid var(--gray-200); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.data-table tr:hover td { background: var(--gray-50); }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0f1f45 0%, #1a2e6a 45%, #1e4fd8 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero p  { color: rgba(255,255,255,.8); position: relative; max-width: 600px; margin: .8rem auto 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: var(--navy);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--blue-pale); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--blue); }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--gray-600); font-size: .93rem; }
.faq-item.open .faq-answer { max-height: 400px; padding: 16px 24px 20px; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}
@media(max-width:768px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; color: var(--blue); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps-timeline { position: relative; padding-left: 50px; }
.steps-timeline::before { content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.step-item { position: relative; margin-bottom: 40px; }
.step-num {
    position: absolute;
    left: -50px;
    width: 38px; height: 38px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    z-index: 1;
}
.step-content { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.step-content h3 { color: var(--navy); margin-bottom: .5rem; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap  { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px){ .grid-2{ grid-template-columns: 1fr !important; gap: 24px !important; } }

/* ─── EMPTY STATE ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state .icon { font-size: 4rem; margin-bottom: 1rem; opacity: .4; }
.empty-state h3 { color: var(--gray-600); font-family: var(--font-body); font-weight: 500; }

/* ─── NOTICE BOXES ───────────────────────────────────────── */
.notice-box { background: var(--blue-pale); border-left: 4px solid var(--blue); border-radius: 6px; padding: 16px 20px; margin: 1rem 0; font-size: .92rem; color: var(--navy); }

/* ─── PROSE (Policy pages) ───────────────────────────────── */
.prose h2 { margin: 2rem 0 1rem; font-size: 1.4rem; }
.prose h3 { margin: 1.5rem 0 .8rem; font-size: 1.1rem; }
.prose p  { color: var(--gray-700); line-height: 1.75; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { list-style: disc; color: var(--gray-700); margin-bottom: .4rem; }
.prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol li { list-style: decimal; color: var(--gray-700); margin-bottom: .4rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:480px){
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .success-box { padding: 40px 20px; }
}

/* Checklist grid responsive */
@media(max-width:768px){
    .checklist-grid { grid-template-columns: 1fr !important; }
}