/* ==========================================================================
   UPGYANAM PREMIUM LIGHT-THEME ECOMMERCE DESIGN SYSTEM
   ========================================================================== */

/* Typography & Variables (Aligned with positive.upgyanam.in) */
:root {
    /* Color Palette */
    --bg-page: #F8FAFC;             /* Clean off-white/light gray page background */
    --bg-card: #FFFFFF;             /* Pure white for cards */
    --bg-navy: #0F172A;             /* Slate 900 for main headers and text */
    --bg-navy-light: #1E293B;       /* Slate 800 for subtext and elements */
    --bg-navy-dark: #090E1A;        /* Dark navy for footers and special cards */
    
    --primary: #FFC526;             /* Gold/yellow from screenshot CTA buttons */
    --primary-hover: #E2B01F;
    --primary-glow: rgba(255, 197, 38, 0.25);
    
    --accent-red: #B91C1C;          /* Crimson for highlighting pain points */
    --accent-red-glow: rgba(185, 28, 28, 0.1);
    
    --accent-green: #10B981;        /* Green for solution checkmarks and solution badges */
    --accent-green-glow: rgba(16, 185, 129, 0.1);
    
    --text-main: #334155;           /* Slate 700 for body text readability */
    --text-muted: #64748B;          /* Slate 500 for captions and secondary details */
    --text-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Borders & Shadows */
    --border-color: #E2E8F0;        /* Slate 200 thin border */
    --border-color-hover: #CBD5E1;  /* Slate 300 */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 30px rgba(255, 197, 38, 0.35);
    
    /* Layout */
    --container-max-width: 1140px;
    --header-height: 80px;

    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-page);
}

/* Typography Overrides */
h1, h2, h3, h4, .brand-badge, .trust-quote, .logo, .section-title {
    font-family: var(--font-heading);
    color: var(--bg-navy);
    font-weight: 700;
}

p {
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */

.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

/* Section Header (dashed border style matching screenshot) */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    color: var(--bg-navy);
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
}

.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    border-bottom: 1px dashed var(--primary);
}

.section-title::before {
    left: -45px;
}

.section-title::after {
    right: -45px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-title::before, .section-title::after {
        display: none;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0.75rem auto 0 auto;
}

/* Premium Card Panel */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.premium-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

/* Premium Gold Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary) 0%, #F59E0B 100%);
    color: var(--bg-navy) !important;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #FFD15C 0%, #D97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4), var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-navy);
    color: var(--text-white) !important;
    border-color: var(--bg-navy);
}

.btn-secondary:hover {
    background: var(--bg-navy-light);
    border-color: var(--bg-navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--bg-card);
    color: var(--bg-navy);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-page);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.15rem 2.75rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-full {
    width: 100%;
}

/* Highlights */
.highlight-red {
    color: var(--accent-red) !important;
}

.highlight-green {
    color: var(--accent-green) !important;
}

/* Ambient glow bubbles (refined for light theme) */
.glow-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--bg-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}

.logo-img-footer {
    height: 54px;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--bg-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-navy);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Drawer Styles */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--bg-navy);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.drawer-link:hover {
    color: var(--bg-navy);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   SECTION 1 - HERO
   ========================================================================== */

.hero-section {
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    padding-bottom: var(--spacing-lg);
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(255, 197, 38, 0.08) 0%, var(--bg-page) 60%);
    overflow: hidden;
}

.glow-bubble-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 197, 38, 0.12);
    top: 5%;
    left: -10%;
}

.glow-bubble-2 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.08);
    top: 25%;
    right: -10%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: var(--spacing-lg);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-icon {
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-navy);
    letter-spacing: -0.75px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin-bottom: var(--spacing-md);
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-navy-light);
}

.hero-bullet-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-ratings {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.rating-stars {
    display: flex;
    gap: 0.1rem;
    color: var(--primary);
}

.rating-stars i {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-text strong {
    color: var(--bg-navy);
}

.hero-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* CSS 3D Ebooks styling */
.hero-books-wrapper {
    display: flex;
    gap: 2rem;
    perspective: 1500px;
    position: relative;
    padding: 2rem 0;
}

/* The interactive 3D Book Layout */
.book-container {
    width: 150px;
    height: 220px;
    perspective: 1200px;
    cursor: pointer;
    position: relative;
}

.book-3d {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 2px 4px 4px 2px;
    backface-visibility: hidden;
}

.book-front {
    transform: translateZ(10px);
    z-index: 5;
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: 4px 6px 15px rgba(15, 23, 42, 0.15);
}

.book-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-back {
    transform: rotateY(180deg) translateZ(10px);
    background: var(--bg-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.book-spine {
    position: absolute;
    width: 20px;
    height: 100%;
    left: -10px;
    transform: rotateY(-90deg) translateZ(0);
    background: linear-gradient(90deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.3);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spine-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 6px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    transform: rotate(90deg);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.book-pages {
    position: absolute;
    width: calc(100% - 4px);
    height: calc(100% - 6px);
    top: 3px;
    left: 2px;
    transform: translateZ(0);
    background: linear-gradient(90deg, 
        #fff 0%, 
        #f1f5f9 4%, 
        #e2e8f0 8%, 
        #fff 12%, 
        #f1f5f9 16%, 
        #fff 100%
    );
    box-shadow: 2px 2px 8px rgba(15, 23, 42, 0.08);
    border-radius: 0 3px 3px 0;
    z-index: 3;
}

/* Hover dynamic tilt triggers */
.book-container:hover .book-3d {
    transform: rotateY(-35deg) rotateX(15deg) translateZ(20px);
}

.hero-books-wrapper .book-container:nth-child(2) {
    margin-top: 2.5rem;
}

.hero-books-wrapper .book-container:hover {
    z-index: 20;
}

/* ==========================================================================
   SECTION 2 - WHY UPGYANAM
   ========================================================================== */

.why-section {
    position: relative;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem var(--spacing-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.why-card:hover .card-icon-wrapper {
    background: var(--primary);
    border-color: var(--primary);
}

.why-card:hover .card-icon-wrapper i {
    color: var(--bg-navy);
}

.card-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
    transition: var(--transition-normal);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 3 - FEATURED EBOOKS
   ========================================================================== */

.ebooks-section {
    position: relative;
    background: var(--bg-page);
}

.ebooks-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ebook-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 3.5rem;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.ebook-product-card:hover {
    box-shadow: var(--shadow-premium), 0 10px 30px rgba(0, 0, 0, 0.02);
    border-color: var(--border-color-hover);
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Scaling book inside products list */
.ebook-product-card .book-container {
    width: 180px;
    height: 260px;
}

.ebook-product-card .book-front {
    transform: translateZ(10px);
}

.ebook-product-card .book-back {
    transform: rotateY(180deg) translateZ(10px);
}

.ebook-product-card .book-pages {
    width: calc(100% - 4px);
    height: calc(100% - 6px);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-tag-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--bg-navy);
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.98rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.bullet-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1.25rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.current-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-navy);
    white-space: nowrap;
}

.discount-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    background: var(--accent-red-glow);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.product-btn {
    box-shadow: none;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 480px) {
    .product-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    .product-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   SECTION 4 - BENEFITS (आप क्या सीखेंगे?)
   ========================================================================== */

.benefits-section {
    position: relative;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
}

.benefit-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-green-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.benefit-icon {
    width: 16px;
    height: 16px;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-navy);
}

/* ==========================================================================
   HOMEPAGE ADDITIONS: ABOUT FOUNDER
   ========================================================================== */

.founder-section {
    background: var(--bg-page);
    border-top: 1px solid var(--border-color);
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.founder-avatar-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.founder-avatar-frame {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
    padding: 6px;
    box-shadow: var(--shadow-md);
}

.founder-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-navy-light);
    color: var(--text-white);
    font-size: 4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-info h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 0.95rem;
    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.founder-bio {
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-quotes {
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    color: var(--bg-navy-light);
    font-weight: 500;
    font-size: 1rem;
}

/* ==========================================================================
   HOMEPAGE ADDITIONS: REVIEWS & TESTIMONIALS
   ========================================================================== */

.reviews-section {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-img-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--border-color-hover);
    color: var(--bg-navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.user-verified {
    font-size: 0.75rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==========================================================================
   HOMEPAGE ADDITIONS: FREQUENTLY ASKED QUESTIONS (FAQ Accordion)
   ========================================================================== */

.faq-section {
    background: var(--bg-page);
    border-top: 1px solid var(--border-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg-navy);
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(15, 23, 42, 0.01);
}

.faq-icon-chevron {
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active Open FAQ States */
.faq-item.active {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid var(--border-color);
}

.faq-item.active .faq-icon-chevron {
    transform: rotate(180deg);
    color: var(--bg-navy);
}

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
}

/* ==========================================================================
   SECTION 5 - TRUST SECTION
   ========================================================================== */

.trust-section {
    position: relative;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
}

.trust-content {
    background: radial-gradient(100% 100% at 50% 0%, var(--bg-card) 0%, var(--bg-page) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 4.5rem 3.5rem;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.trust-quote-icon {
    font-size: 2.5rem;
    color: rgba(16, 185, 129, 0.15);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.trust-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.trust-quote {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bg-navy);
    margin-bottom: 2rem;
}

.trust-quote-highlight {
    display: block;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    line-height: 1.6;
}

.trust-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-navy);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.author-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 6 - CTA (आज ही अपने विकास की शुरुआत करें)
   ========================================================================== */

.cta-section {
    position: relative;
    background: var(--bg-page);
    border-top: 1px solid var(--border-color);
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-navy-light) 0%, var(--bg-navy-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
}

.cta-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   EBOOKS PAGE FILTER & HEADER STYLES
   ========================================================================== */

.store-header-section {
    padding-top: calc(var(--header-height) + var(--spacing-sm));
    padding-bottom: var(--spacing-sm);
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.store-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--bg-navy);
    color: var(--text-white);
    border-color: var(--bg-navy);
}

.store-search {
    position: relative;
    width: 320px;
}

.store-search-input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-page);
    color: var(--bg-navy);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-fast);
}

.store-search-input:focus {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.store-search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.product-ratings {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.ratings-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */

.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: calc(100% - 2rem);
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    z-index: 2000;
    padding: 2.25rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -0.75rem;
    right: -0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--bg-navy);
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--bg-navy);
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-item {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-sm);
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-green-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    flex-shrink: 0;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.info-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.info-value[href]:hover {
    color: var(--accent-green);
}

/* Checkout Modal Styling */
.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: calc(100% - 2rem);
    max-width: 460px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    z-index: 2000;
    padding: 2.25rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-navy-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bg-navy);
    background-color: var(--bg-page);
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.checkout-product-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
}

.summary-img-wrapper {
    width: 50px;
    height: 70px;
    flex-shrink: 0;
}

.summary-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.summary-details h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-navy);
    line-height: 1.3;
}

.summary-details .summary-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-navy);
    margin-top: 0.25rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--bg-navy-dark);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    color: var(--text-white);
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer .logo {
    color: var(--text-white);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-link:hover {
    color: var(--text-white);
    padding-left: 2px;
}

.newsletter-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    background: var(--bg-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 0.25rem;
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 0.6rem 0.85rem;
    color: var(--text-white);
    font-size: 0.88rem;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-input::placeholder {
    color: #475569;
}

.newsletter-btn {
    background: var(--primary);
    color: var(--bg-navy);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: var(--spacing-sm) 0;
}

.footer-bottom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-socials a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    color: var(--primary);
    background: rgba(255, 197, 38, 0.06);
    border-color: rgba(255, 197, 38, 0.2);
    transform: translateY(-2px);
}

.footer-socials a i {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   SCROLL AND ENTRY ANIMATIONS
   ========================================================================== */

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Scroll trigger animations */
.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--spacing-md);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ebook-product-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.25rem;
    }
    
    .product-visual {
        order: -1;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        padding: 2.25rem;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-info h3 {
        text-align: center;
    }
    
    .founder-quotes {
        border-left: none;
        border-top: 1px solid var(--primary);
        padding-top: 1rem;
        padding-left: 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4.5rem;
    }
    
    .nav-menu, .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .brand-badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-bullets {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-ratings {
        justify-content: center;
    }
    
    .hero-books-wrapper {
        margin-top: 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        padding: 3rem 1.5rem;
    }
    
    .trust-quote {
        font-size: 1.35rem;
    }
    
    .trust-quote-highlight {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 3.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.85rem;
    }
    
    .store-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .store-search {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
}

/* ==========================================================================
   THANK YOU & DOWNLOAD PAGES
   ========================================================================== */
.thankyou-section {
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - var(--header-height) - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.thankyou-header {
    margin-bottom: 2.5rem;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-green-glow);
    color: var(--accent-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.15);
}

.success-icon-wrapper i {
    width: 40px;
    height: 40px;
}

.thankyou-title {
    font-size: 2.25rem;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.thankyou-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .thankyou-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thankyou-grid .product-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
}

.download-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--bg-navy);
}

.download-info p {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-btn-wrapper {
    margin-top: 1.5rem;
}

.support-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.support-note a {
    color: var(--accent-green);
    font-weight: 700;
}

/* ==========================================================================
   PRODUCT DETAIL PAGES
   ========================================================================== */

.product-detail-section {
    padding-top: calc(var(--header-height) + var(--spacing-sm));
    padding-bottom: var(--spacing-lg);
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, var(--bg-page) 50%);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--bg-navy);
}

.breadcrumbs .separator {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumbs .separator i {
    width: 12px;
    height: 12px;
}

.breadcrumbs .current {
    color: var(--bg-navy);
    font-weight: 700;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.product-detail-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

@media (max-width: 992px) {
    .product-detail-visual {
        position: relative;
        top: 0;
        padding: 2rem 1.5rem;
    }
}

.product-detail-visual .book-container {
    width: 220px;
    height: 320px;
    margin-bottom: 1.5rem;
}

.mockup-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-hint i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--bg-navy);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .product-detail-title {
        font-size: 1.75rem;
    }
}

.product-detail-meta {
    margin-bottom: 1.5rem;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ratings-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-detail-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.price-discount-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.price-discount-box .price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.price-discount-box .current-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-navy);
    white-space: nowrap;
}

.price-discount-box .original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-discount-box .discount-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-red);
    background: var(--accent-red-glow);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(185, 28, 28, 0.15);
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-red);
    font-weight: 600;
}

.urgency-text i {
    width: 16px;
    height: 16px;
}

.product-detail-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.product-detail-bullets .bullet-item {
    font-size: 0.95rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

.specs-table td.label {
    font-weight: 700;
    color: var(--bg-navy);
    width: 30%;
    background: var(--bg-page);
    border-right: 1px solid var(--border-color);
}

.specs-table td.value {
    color: var(--text-main);
}

@media (max-width: 576px) {
    .specs-table td.label {
        width: 40%;
    }
}

/* Chapters breakdown section */
.chapters-section {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .chapters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.chapter-item {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.chapter-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
}

.chapter-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.chapter-content {
    display: flex;
    flex-direction: column;
}

.chapter-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.chapter-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Recommended Section */
.recommended-section {
    background: var(--bg-page);
}

.recommended-grid {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.recommended-grid .ebook-product-card {
    max-width: 800px;
    width: 100%;
}

/* ==========================================================================
   POLICY & CONTENT PAGES LAYOUT
   ========================================================================== */
.policy-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-page);
    min-height: 60vh;
}
.policy-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}
.policy-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-premium);
}
.policy-title {
    font-size: 2.25rem;
    color: var(--bg-navy);
    margin-bottom: var(--spacing-xs);
    font-weight: 800;
}
.policy-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-sm);
}
.policy-content h3 {
    font-size: 1.35rem;
    color: var(--bg-navy);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}
.policy-content p {
    color: var(--text-main);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    line-height: 1.7;
}
.policy-content ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}
.policy-content li {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.policy-content strong {
    color: var(--bg-navy);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-item {
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}
.contact-item-icon {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}
.contact-item-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-navy);
    margin-bottom: 0.15rem;
}
.contact-item-details p, .contact-item-details a {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}
.contact-item-details a:hover {
    color: var(--primary-hover);
}

/* Book Description Grid Layout (Responsive) */
.book-description-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    align-items: center;
}
@media (min-width: 992px) {
    .book-description-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Sticky Bottom Buy Now CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: -120px; /* Hidden initially (height + padding) */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
    padding: 0.85rem 1.5rem;
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sticky-cta-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.sticky-cta-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-cta-price-row .current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-navy);
    white-space: nowrap;
}

.sticky-cta-price-row .original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.sticky-cta-price-row .discount-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    background: var(--accent-green-glow);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.sticky-cta-bar .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 197, 38, 0.2);
}

.sticky-cta-bar .btn i {
    width: 18px;
    height: 18px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 0.75rem 1rem;
    }
    
    .sticky-cta-title {
        font-size: 0.85rem;
        max-width: 200px;
    }
    
    .sticky-cta-price-row .current-price {
        font-size: 1.1rem;
    }
    
    .sticky-cta-price-row .original-price {
        font-size: 0.8rem;
    }
    
    .sticky-cta-price-row .discount-tag {
        display: none;
    }
    
    .sticky-cta-bar .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .sticky-cta-title {
        display: none; /* Hide title to make space on small devices */
    }
    
    .sticky-cta-container {
        gap: 1rem;
    }
    
    .sticky-cta-info {
        flex-shrink: 0;
    }
    
    .sticky-cta-bar .btn {
        flex-grow: 1;
        justify-content: center;
    }

    /* Responsive tweaks for price and detail buttons */
    .price-discount-box .current-price {
        font-size: 1.85rem !important; /* Scale down on mobile */
    }
    
    .price-discount-box .price-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .detail-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .detail-actions .btn {
        width: 100% !important;
        flex: none !important;
        justify-content: center;
        padding: 0.85rem 1.25rem !important;
        font-size: 0.95rem !important;
        white-space: nowrap;
    }
}

/* ==========================================================================
   LANDING PAGES REDESIGN (MATCHING Mockup)
   ========================================================================== */

.lp-badge-gold {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #B45309;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.lp-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.lp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 90px;
    max-width: 140px;
}

.lp-stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bg-navy);
}

.lp-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.15rem;
    white-space: nowrap;
}

.lp-social-proof-sec {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-sm);
}

.lp-avatars-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.lp-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -10px;
    object-fit: cover;
    background-color: var(--border-color);
}

.lp-avatar:first-child {
    margin-left: 0;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .lp-features-grid {
         grid-template-columns: 1fr;
         gap: 1rem;
    }
}

.lp-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.lp-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.lp-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--bg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-feature-card.red .lp-feature-icon-wrapper {
    background: var(--accent-red-glow);
    color: var(--accent-red);
}

.lp-feature-card.green .lp-feature-icon-wrapper {
    background: var(--accent-green-glow);
    color: var(--accent-green);
}

.lp-feature-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lp-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.lp-feature-desc {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
}

.lp-timeline {
    position: relative;
    max-width: 700px;
    margin: 2.5rem auto 0 auto;
    padding-left: 3.5rem;
}

.lp-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 1.5rem;
    width: 2px;
    background: var(--border-color);
}

.lp-timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.lp-timeline-item:last-child {
    margin-bottom: 0;
}

.lp-timeline-badge {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #FFFBEB;
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #B45309;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    text-align: center;
    line-height: 1.15;
}

.lp-timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.lp-timeline-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.lp-timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-navy);
    margin-bottom: 0.35rem;
}

.lp-timeline-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
}

.lp-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .lp-bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.lp-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.lp-bonus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 197, 38, 0.1);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-bonus-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1;
}

.lp-bonus-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-hover);
    letter-spacing: 0.5px;
}

.lp-bonus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.lp-bonus-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.lp-bonus-val {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-red);
    background: var(--accent-red-glow);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(185, 28, 28, 0.1);
}

.lp-bonuses-total {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-red);
    background: var(--accent-red-glow);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px dashed var(--accent-red);
    margin-top: 2rem;
}

.lp-author-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 750px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .lp-author-card {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
}

.lp-author-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.lp-author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-author-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-navy);
}

.lp-author-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.lp-author-bio {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.6;
}

.lp-author-sig {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

.lp-guarantee-box {
    background: radial-gradient(circle at 10% 20%, rgba(255, 197, 38, 0.05) 0%, var(--bg-card) 90%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 750px;
    margin: 2rem auto 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .lp-guarantee-box {
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
}

.lp-guarantee-badge-wrapper {
    flex-shrink: 0;
    margin: 0 auto;
}

.lp-guarantee-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-glow);
    border: 4px solid var(--bg-card);
}

.lp-guarantee-badge .pct {
    font-size: 1.5rem;
    line-height: 1;
}

.lp-guarantee-badge .txt {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 0.15rem;
    font-weight: 800;
}

.lp-guarantee-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-guarantee-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-navy);
}

.lp-guarantee-desc {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.65;
}

.lp-offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 600px;
    margin: 2.5rem auto 0 auto;
    box-shadow: var(--shadow-premium);
}

@media (max-width: 576px) {
    .lp-offer-card {
        padding: 2rem 1.5rem;
    }
}

.lp-offer-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-navy);
    text-align: center;
    margin-bottom: 0.35rem;
}

.lp-offer-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.lp-offer-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.lp-offer-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.lp-offer-check-item i {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Custom visual alignment tweaks for landing pages */
@media (max-width: 992px) {
    .product-detail-section .breadcrumbs {
        justify-content: center;
    }
    
    .product-detail-visual {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .product-detail-visual .book-container {
        width: 180px;
        height: 260px;
        margin-bottom: 0.5rem;
    }
    
    .product-detail-info {
        text-align: center;
        align-items: center;
    }
    
    .product-detail-bullets {
        align-self: center;
        text-align: left;
    }
}

/* ==========================================================================
   SALES NOTIFICATION POPUP (SOCIAL PROOF)
   ========================================================================== */
.sales-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-radius: var(--border-radius-md);
    padding: 12px 32px 12px 12px; /* Extra right padding for close button */
    max-width: 360px;
    width: calc(100% - 48px); /* Responsive width */
    transform: translateY(120px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease, bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sales-notification.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Image cover style */
.sales-notification-image-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 58px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.sales-notification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content wrapper */
.sales-notification-content {
    flex-grow: 1;
    font-family: var(--font-body);
}

.sales-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.sales-notification-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-navy);
}

.sales-notification-verified {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 600;
}

.sales-notification-title {
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 2px;
    font-weight: 500;
}

.sales-notification-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Close button style */
.sales-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 2px 6px;
    line-height: 1;
}

.sales-notification-close:hover {
    color: var(--accent-red);
}

/* Mobile & Tablet responsiveness */
@media (max-width: 767px) {
    .sales-notification {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        max-width: none;
    }
    
    /* When sticky CTA bar is active on mobile, shift the sales notification upwards */
    .sticky-cta-bar.visible ~ #salesNotification {
        bottom: 84px;
    }
}





