/* ============================================================
   MANNUP — Main Stylesheet
   Colours:
     --navy:    #1a1a2e  (primary dark)
     --blue:    #0066ff  (male accent)
     --pink:    #e91e8c  (female accent)
     --light:   #f8f8f8  (light section bg)
     --white:   #ffffff
     --grey:    #666666  (body text on light)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:  #1a1a2e;
    --blue:  #0066ff;
    --pink:  #e91e8c;
    --light: #f8f8f8;
    --white: #ffffff;
    --grey:  #666666;
    --font:  'Inter', sans-serif;
    --gutter: 24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.1s;
    text-transform: uppercase;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--blue);    color: var(--white); }
.btn-female   { background: var(--pink);    color: var(--white); }
.btn-shilajit { background: #d4890a;        color: var(--white); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid var(--white); }

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo { flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}
.main-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }
.main-nav a.active { border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

.nav-cta { flex-shrink: 0; padding: 10px 24px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ---- Hero ---- */
.hero {
    background: var(--navy) url('../images/hero-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 800px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,30,0.82) 0%, rgba(10,10,30,0.55) 55%, rgba(10,10,30,0.15) 100%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-headline {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@keyframes highlightPulse {
    0%, 100% { color: var(--blue);  text-shadow: none; }
    50%      { color: #78b4ff;      text-shadow: 0 0 30px rgba(0,102,255,0.9), 0 0 60px rgba(0,102,255,0.5); }
}

.hero-headline .highlight {
    color: var(--blue);
    animation: highlightPulse 1.8s ease-in-out infinite;
    animation-delay: 1.4s;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero-image img {
    width: 575px;
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ---- Hero entry animations ---- */
@keyframes cardJiggle {
    0%   { transform: translateY(-8px) scale(1.02) rotate(0deg); }
    20%  { transform: translateY(-8px) scale(1.02) rotate(-1.5deg); }
    40%  { transform: translateY(-8px) scale(1.02) rotate(1.5deg); }
    60%  { transform: translateY(-8px) scale(1.02) rotate(-1deg); }
    80%  { transform: translateY(-8px) scale(1.02) rotate(0.8deg); }
    100% { transform: translateY(-8px) scale(1.02) rotate(0deg); }
}

@keyframes heroTextIn {
    0%   { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes heroImageIn {
    0%   { opacity: 0;    transform: translate(160px, -120px) scale(2.4) rotate(180deg); }
    45%  { opacity: 1;    transform: translate(0, 0) scale(1) rotate(0deg); }
    58%  { transform: translate(0, 10px) scale(1.07, 0.93) rotate(0deg); }
    70%  { transform: translate(0, -14px) scale(0.94, 1.06) rotate(0deg); }
    82%  { transform: translate(0, 6px)  scale(1.03, 0.97) rotate(0deg); }
    91%  { transform: translate(0, -4px) scale(0.98, 1.02) rotate(0deg); }
    100% { transform: translate(0, 0)    scale(1) rotate(0deg); }
}

.hero-content {
    animation: heroTextIn 1.4s ease forwards;
}

.hero-image {
    animation: heroImageIn 1.6s linear 0.5s both;
}

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--navy);
    padding: 64px 0;
    color: #fff;
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

/* ---- Benefits Ticker ---- */
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.benefits-ticker {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 0 28px;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.ticker-item:hover { opacity: 0.75; }

.ticker-item.male   { color: var(--blue); }
.ticker-item.female { color: var(--pink); }

.ticker-symbol {
    font-size: 16px;
    line-height: 1;
}

.ticker-sep {
    color: rgba(255,255,255,0.25);
    font-size: 18px;
    flex-shrink: 0;
}

/* ---- How It Works ---- */
.how-it-works {
    padding: 80px 0;
    background: var(--white) url('../images/how-it-works-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 56px;
    color: var(--navy);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.step {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid #e0e0e0;
}

.step:last-child {
    border-right: none;
}

.step-icon {
    display: none;
}

.step-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.how-it-works .step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.how-it-works .step p {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.6;
}

/* ---- Products Section ---- */
.products-section {
    background: linear-gradient(180deg, #2b4869 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
}

.products-section .section-title { color: var(--white); }

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card-image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home product cards */
.home-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.home-product-card:hover {
    animation: cardJiggle 0.4s ease forwards;
    box-shadow: 0 28px 64px rgba(0,0,0,0.55);
}

.home-product-card.male .home-product-img       { background: linear-gradient(135deg, #0044cc 0%, #0066ff 100%); }
.home-product-card.male-black .home-product-img { background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%); }
.home-product-card.female .home-product-img     { background: linear-gradient(135deg, #c2006a 0%, #e91e8c 100%); }
.home-product-card.shilajit .home-product-img   { background: linear-gradient(135deg, #3a2000 0%, #7a4a00 100%); }
.home-product-card.shilajit .home-product-img img { width: 200px; transform: scale(1.65); }
.home-product-card.shilajit:hover .home-product-img img { transform: scale(2.6); }

.home-product-img {
    position: relative;
    padding: 40px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
}

.home-product-img img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s;
    transform-origin: center center;
}

.home-product-card:hover .home-product-img img {
    transform: scale(1.75);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.home-product-body {
    padding: 28px 28px 32px;
    color: var(--white);
    text-align: left;
    background: #2a2a3e;
}

.home-product-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.home-product-brand.passion  { color: var(--pink); }
.home-product-brand.shilajit { color: #d4890a; }

.home-product-body h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.home-product-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.5;
}

.home-product-price {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.home-product-price strong {
    color: var(--white);
    font-size: 20px;
}

.product-card {
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.product-card.male   { background: var(--blue); }
.product-card.female { background: var(--pink); }

.product-card-content { flex: 1; color: var(--white); }

.product-range {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.product-card-content h3 {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}

.product-from {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.product-card img {
    width: 180px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    flex-shrink: 0;
}

/* ---- Reviews ---- */
.reviews-section {
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.reviews-section .section-title { text-align: center; }

/* Carousel */
.carousel-wrapper {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex: 0 0 calc(33.333% - 16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.review-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.stars {
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}

.review-card cite {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    font-style: normal;
    display: block;
    margin-bottom: 8px;
}

.review-product {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--blue);
    transform: scale(1.4);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { margin-bottom: 16px; }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-brand a {
    color: var(--blue);
    font-size: 14px;
}

.footer-links h4,
.footer-products h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-range h4.male   { color: var(--blue); }
.footer-range h4.female { color: var(--pink); }

.footer-range img {
    width: 140px;
    max-width: 100%;
    margin-top: 0;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
    transition: transform 0.2s;
}

.footer-range a:hover img {
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ---- Product Page ---- */
.product-main { padding: 60px 0; background: url('../images/bg_product.jpg') center/cover no-repeat fixed; background-color: #f0f2f8; }

.product-main .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {}

.product-image-wrap {
    background: var(--light);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-image-wrap img { max-height: 380px; object-fit: contain; transition: opacity 0.2s; }

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    background: var(--light);
    transition: border-color 0.2s;
}

.thumb.active, .thumb:hover { border-color: var(--blue); }

.product-brand {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-brand.male   { color: var(--blue); }
.product-brand.female { color: var(--pink); }

.product-details h1 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 6px;
}

.product-tagline {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 20px;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-was {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.price-now {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
}

.product-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.order-form { margin-bottom: 20px; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 10px;
}

.variant-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.variant-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s;
    min-width: 90px;
}

.variant-btn span { font-size: 13px; color: var(--grey); font-weight: 400; margin-top: 2px; }

.variant-btn:hover  { border-color: var(--blue); }
.variant-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.variant-btn.active span { color: rgba(255,255,255,0.8); }

.range-female .variant-btn:hover  { border-color: var(--pink); }
.range-female .variant-btn.active { border-color: var(--pink); background: var(--pink); }

.qty-group .qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.qty-control button {
    width: 42px;
    height: 42px;
    background: var(--light);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--navy);
    transition: background 0.2s;
}

.qty-control button:hover { background: #e0e0e0; }

.qty-control input {
    width: 56px;
    height: 42px;
    border: none;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
}

.btn-add-to-cart { width: 100%; padding: 16px; font-size: 16px; margin-top: 8px; }

.product-trust-micro {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 13px;
    color: var(--grey);
}

/* ---- Product Tabs ---- */
.product-tabs { padding: 60px 0; background: var(--light); }

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:hover  { color: var(--navy); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 12px; }

.ingredients-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}

.ingredients-table th {
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
}

.ingredients-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e8e8e8;
    color: #444;
}

.ingredients-table tr:nth-child(even) td { background: #f0f0f0; }
.ingredients-note { font-size: 13px; color: var(--grey); }

/* ---- Related Products ---- */
/* ---- Product Ads ---- */
.product-ads {
    padding: 60px 0;
    background: var(--white);
}

.product-ads .section-title { text-align: center; margin-bottom: 40px; }

.product-ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-ads-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.related-products { padding: 60px 0; background: var(--navy); }
.related-products .section-title { color: var(--white); text-align: center; margin-bottom: 40px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero .container       { grid-template-columns: 1fr; padding-right: var(--gutter); }
    .hero-content          { padding-bottom: 40px; }
    .hero-image            { min-height: 260px; }
    .hero-image img        { width: 220px; }
    .trust-bar .container  { grid-template-columns: repeat(2, 1fr); }
    .trust-item            { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 20px; }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .steps                 { grid-template-columns: 1fr; gap: 0; }
    .step                  { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 32px 20px; }
    .step:last-child       { border-bottom: none; }
    .product-cards         { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .review-cards          { grid-template-columns: 1fr; }
    .footer-grid           { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom         { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
    .main-nav ul  { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; }
    .main-nav ul.open { display: flex; }
    .nav-toggle   { display: block; }
    .nav-cta      { display: none; }
    .main-nav     { position: relative; }
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .trust-item           { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 16px; }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .trust-item img       { width: 56px; height: 56px; }
}

/* =========================================================
   PAGE HERO (products, faqs, blog)
   ========================================================= */

.page-hero {
    background: var(--navy);
    padding: 64px 0 56px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 12px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    margin: 0 auto;
}

/* =========================================================
   PRODUCTS LISTING PAGE
   ========================================================= */

.products-range {
    padding: 64px 0;
}

.products-range:nth-child(odd) {
    background: #f5f6fa;
}

.products-range#male {
    background-image: url('../images/bg_male_products.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0a0a1e;
}

.products-range#female {
    background-image: url('../images/bg_female_products.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #2a0a1a;
}

.products-range#shilajit {
    background-image: url('../images/bg_shilajit.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #3a2000;
}

.products-range#shilajit .range-title,
.products-range#shilajit .range-header p {
    color: var(--navy);
}

.products-range#male .range-title,
.products-range#male .range-header p,
.products-range#female .range-title,
.products-range#female .range-header p {
    color: var(--navy);
}

/* Home-style cards inside products-grid */
.products-grid .home-product-card {
    flex: 0 1 calc(50% - 14px);
    min-width: 280px;
}

/* Sale badge inside home-product-img */
.home-product-img .plc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.range-header {
    text-align: center;
    margin-bottom: 40px;
}

.range-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.range-title.male     { color: var(--blue); }
.range-title.female   { color: var(--pink); }
.range-title.shilajit { color: #d4890a; }

.range-header p {
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.product-listing-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    flex: 0 1 calc(50% - 14px);
    min-width: 280px;
}

.product-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,.22);
}

.plc-image {
    position: relative;
    background: #f5f6fa;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.plc-image img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.product-listing-card.shilajit .plc-image img {
    transform: scale(1.65);
}

.plc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 20px;
}

.plc-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plc-brand {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 6px;
}

.plc-brand.male     { color: var(--blue); }
.plc-brand.female   { color: var(--pink); }
.plc-brand.shilajit { color: #d4890a; }

.plc-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}

.plc-tagline {
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 16px;
}

.plc-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}

.plc-was {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
}

.plc-from {
    font-size: 0.8rem;
    color: #888;
}

.plc-now {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}

.plc-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.plc-variant-pill {
    font-size: 0.75rem;
    background: #eef1f8;
    color: var(--navy);
    border-radius: 20px;
    padding: 4px 10px;
    font-weight: 500;
}

.plc-variant-pill.female {
    background: #fce8f4;
    color: #9c1066;
}

.plc-variant-pill.shilajit {
    background: #fdf0d8;
    color: #7a4a00;
}

/* Products Trust Grid */
.products-trust {
    background: var(--navy);
    padding: 64px 0;
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-block {
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.trust-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.trust-block p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
    margin: 0;
    line-height: 1.6;
}

/* =========================================================
   FAQs PAGE
   ========================================================= */

.faqs-section {
    padding: 64px 0 80px;
}

.faqs-list {
    max-width: 760px;
    margin: 0 auto 48px;
}

.faq-item {
    border-bottom: 1px solid #e8eaf0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
}

.faq-question:hover {
    color: var(--blue);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .25s;
    stroke: var(--blue);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--blue);
}

.faqs-cta {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #f5f6fa;
    border-radius: 12px;
    padding: 32px;
}

.faqs-cta p {
    color: #555;
    margin: 0 0 20px;
}

.faqs-cta a.btn {
    display: inline-block;
}

/* =========================================================
   BLOG PAGE
   ========================================================= */

.blog-section {
    padding: 64px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
    background: #e8eaf0;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8eaf0, #d0d4e0);
}

.blog-image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: #b0b4c0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-date {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 8px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
}

.blog-coming {
    display: inline-block;
    font-size: 0.75rem;
    background: #f0f4ff;
    color: var(--blue);
    border-radius: 20px;
    padding: 4px 12px;
    font-weight: 600;
}

.btn-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.btn-link:hover { text-decoration: underline; }

.blog-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--blue);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px 4px 0 0;
    margin: 0 0 0 24px;
}

.blog-card-body { padding: 16px 24px 24px; }

.blog-title a {
    color: var(--navy);
    text-decoration: none;
}

.blog-title a:hover { color: var(--blue); }

/* Blog post article */
.blog-post-body {
    padding: 64px 0 80px;
    background: var(--white);
}

.blog-post-body .container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.blog-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin: 40px 0 16px;
}

.blog-post-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 10px;
}

.blog-post-content p { margin-bottom: 20px; }

.blog-post-content ul {
    margin: 0 0 20px 24px;
}

.blog-post-content ul li { margin-bottom: 8px; }

.blog-post-content a {
    color: var(--blue);
    font-weight: 600;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.blog-post-content th {
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.blog-post-content td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
}

.blog-post-content tr:nth-child(even) td { background: #f8f8f8; }

.blog-post-content em {
    font-size: 0.85rem;
    color: #888;
}

.blog-post-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.blog-post-cta {
    background: var(--navy);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    color: #fff;
    position: sticky;
    top: 100px;
}

.blog-post-cta h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-post-cta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    line-height: 1.6;
}

.blog-post-cta .btn {
    display: block;
    margin-bottom: 16px;
}

.blog-post-cta .btn-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .blog-post-body .container {
        grid-template-columns: 1fr;
    }
    .blog-post-cta { position: static; }
}

/* =========================================================
   PRODUCTS / FAQs / BLOG RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .blog-grid  { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* =========================================================
   SAFETY LEAFLET MODAL
   ========================================================= */

.leaflet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, 0.80);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn .3s ease;
}

.leaflet-overlay.closing {
    animation: fadeOut .4s ease forwards;
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.leaflet-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,.4);
    overflow: hidden;
}

.leaflet-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid #e8eaf0;
    flex-shrink: 0;
}

.leaflet-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}

.leaflet-header p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.leaflet-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
    scroll-behavior: smooth;
}

.leaflet-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
}

.leaflet-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 8px;
}

.leaflet-body ul {
    padding-left: 20px;
    margin: 0 0 12px;
}

.leaflet-body ul li {
    margin-bottom: 6px;
}

.leaflet-body p {
    margin: 0 0 12px;
}

.leaflet-download {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.85rem;
}

.leaflet-download a {
    color: var(--blue);
    text-decoration: underline;
}

.leaflet-footer {
    padding: 20px 28px;
    border-top: 1px solid #e8eaf0;
    flex-shrink: 0;
    background: #f8f9fc;
}

.leaflet-scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 12px;
    justify-content: center;
    animation: bounce 1.5s ease infinite;
}

.leaflet-scroll-hint svg {
    width: 16px;
    height: 16px;
    stroke: #888;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

.leaflet-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 16px;
    opacity: 0.4;
    transition: opacity .3s;
}

.leaflet-checkbox.active {
    opacity: 1;
}

.leaflet-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--blue);
    cursor: pointer;
}

.leaflet-checkbox span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333;
}

.leaflet-confirm-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.leaflet-confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* =========================================================
   CHECKOUT PAGE
   ========================================================= */

.checkout-main {
    padding: 48px 0 80px;
    min-height: 70vh;
    background: #f5f6fa;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}

/* ---- Order Summary (left) ---- */
.order-summary {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.summary-product {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.summary-product img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f6fa;
    padding: 4px;
    flex-shrink: 0;
}

.summary-brand {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 4px;
}

.summary-brand.male   { color: var(--blue); }
.summary-brand.female { color: var(--pink); }

.summary-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}

.summary-variant {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #555;
}

.summary-line .free {
    color: #16a34a;
    font-weight: 600;
}

.summary-total {
    padding-top: 12px;
    border-top: 2px solid var(--navy);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.summary-trust {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.summary-trust p { margin: 0; }

/* ---- Checkout Steps ---- */
.checkout-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.checkout-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #aaa;
    flex: 1;
    position: relative;
}

.checkout-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: #e0e0e0;
}

.checkout-step.done {
    color: #16a34a;
}

.checkout-step.active {
    color: var(--navy);
    font-weight: 600;
}

.checkout-step .step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-step.done .step-number {
    background: #16a34a;
    color: #fff;
    font-size: 0.7rem;
}

.checkout-step.active .step-number {
    background: var(--blue);
    color: #fff;
}

/* ---- Checkout Form ---- */
.checkout-form-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group label span {
    color: var(--blue);
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d8dce6;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #222;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, .12);
}

.form-group input.error {
    border-color: #e53e3e;
    background: #fff8f8;
}

.form-error {
    background: #fff3f3;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #b91c1c;
    margin-bottom: 20px;
}

/* ---- PayPal Section ---- */
.paypal-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.paypal-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 12px;
}

#paypal-button-container {
    margin-bottom: 12px;
}

.paypal-note {
    font-size: 0.78rem;
    color: #888;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.uk-only-notice {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   ORDER CONFIRMATION PAGE
   ========================================================= */

.confirm-main {
    padding: 64px 0 100px;
    background: #f5f6fa;
    min-height: 70vh;
}

.confirm-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    text-align: center;
}

.confirm-icon {
    width: 72px;
    height: 72px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirm-icon svg {
    width: 40px;
    height: 40px;
    stroke: #16a34a;
}

.confirm-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 12px;
}

.confirm-intro {
    font-size: 1rem;
    color: #555;
    margin: 0 0 24px;
}

.confirm-ref {
    display: inline-block;
    background: #f0f4ff;
    border: 1px solid #c7d7ff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 32px;
}

.confirm-summary {
    text-align: left;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
}

.confirm-summary h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}

.confirm-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.confirm-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #555;
}

.confirm-line-total {
    padding-top: 10px;
    border-top: 2px solid var(--navy);
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}

.confirm-address {
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.confirm-address h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 8px;
}

.confirm-address p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.confirm-notes {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.confirm-notes p {
    font-size: 0.875rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.confirm-notes a {
    color: var(--blue);
}

.confirm-card-error h1 {
    font-size: 1.5rem;
    color: #b91c1c;
}

/* =========================================================
   CHECKOUT & CONFIRM RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
    .checkout-steps {
        flex-direction: column;
        gap: 8px;
    }
    .checkout-step::after { display: none; }
}

@media (max-width: 600px) {
    .checkout-form-section { padding: 24px 20px; }
    .order-summary         { padding: 24px 20px; }
    .confirm-card          { padding: 32px 20px; }
    .form-row              { grid-template-columns: 1fr; }
    .leaflet-modal         { max-height: 95vh; }
    .leaflet-header,
    .leaflet-body,
    .leaflet-footer        { padding-left: 20px; padding-right: 20px; }
}

/* =========================================================
   REVIEWS PAGE
   ========================================================= */

.rating-summary {
    background: var(--white);
    padding: 56px 0;
    border-bottom: 1px solid #eee;
}

.rating-summary-inner {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 700px;
    margin: 0 auto;
}

.rating-score {
    text-align: center;
    flex-shrink: 0;
}

.score-number {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.rating-score .stars {
    font-size: 28px;
    margin-bottom: 8px;
}

.rating-score p {
    font-size: 14px;
    color: var(--grey);
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--grey);
}

.rating-bar-row span:first-child {
    width: 48px;
    flex-shrink: 0;
    text-align: right;
}

.rating-bar-row span:last-child {
    width: 32px;
    flex-shrink: 0;
}

.bar-wrap {
    flex: 1;
    background: #eee;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: #f5a623;
    border-radius: 4px;
}

.reviews-page-section {
    padding: 72px 0;
    background: var(--light);
}

.reviews-female-bg {
    background: var(--white);
}

.reviews-range-title {
    text-align: center;
    margin-bottom: 40px;
}

.male-title  { color: var(--navy); }
.female-title { color: var(--navy); }

.male-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--blue);
    margin: 12px auto 0;
    border-radius: 2px;
}

.female-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--pink);
    margin: 12px auto 0;
    border-radius: 2px;
}

.review-product {
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.reviews-cta {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.reviews-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
}

.reviews-cta p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .rating-summary-inner { flex-direction: column; gap: 32px; }
    .review-cards          { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT PAGE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .product-main { padding: 32px 0; }

    .product-main .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-image-wrap {
        min-height: 280px;
        padding: 24px;
    }

    .product-image-wrap img {
        max-height: 260px;
        width: 100%;
        object-fit: contain;
    }

    .product-thumbnails {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        gap: 8px;
    }

    .thumb {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .product-details h1 { font-size: 24px; }

    .variant-buttons { flex-wrap: wrap; }

    .product-tabs .tab-nav { flex-wrap: wrap; gap: 6px; }
    .product-tabs .tab-btn { font-size: 13px; padding: 8px 14px; }
}

/* Disable parallax on touch devices — iOS ignores fixed attachment */
@media (hover: none) {
    .hero,
    .how-it-works,
    .products-range#male,
    .products-range#female,
    .products-range#shilajit,
    .product-main {
        background-attachment: scroll;
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.anim {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim.anim-left {
    transform: translateX(-40px);
}

.anim.anim-right {
    transform: translateX(40px);
}

.anim.anim-scale {
    transform: scale(0.92);
}

.anim.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
