/* ============================================
   BHOOJEEVAN ORGANICS - Main Stylesheet
   Mobile-First Design
   ============================================ */

/* CSS Variables */
:root {
    --primary: #2d5016;
    --primary-light: #3a6b1e;
    --primary-dark: #1e3a0e;
    --primary-50: #f0f7ec;
    --primary-100: #dcefd2;
    --primary-200: #b8dfa5;
    --primary-300: #8bcb6e;
    --primary-400: #5fb33f;
    --primary-500: #2d5016;
    --accent: #e8a838;
    --accent-light: #f5c76b;
    --accent-dark: #c88a1e;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --bg: #ffffff;
    --bg-light: #f8faf6;
    --bg-warm: #faf8f5;
    --bg-green: #f0f7ec;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 64px; /* Mobile bottom nav */
}

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

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

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.announcement-bar p {
    margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 12px;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
}

.site-logo-img {
    height: 32px;
    max-height: 32px;
    width: auto;
    display: block;
}

.mobile-logo-img {
    height: 30px;
    max-height: 30px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 36px;
    max-height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.2);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.main-nav {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

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

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text);
    transition: all var(--transition);
    position: relative;
}

.header-action:hover {
    background: var(--bg-green);
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.desktop-only {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 100;
}

.search-overlay.active {
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.search-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 2px solid var(--primary-100);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
}

.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.search-submit:hover {
    background: var(--primary-light);
}

.search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: white;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-header .logo-main {
    font-size: 20px;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
}

.mobile-menu-content {
    padding: 16px 0;
    flex: 1;
}

.mobile-nav-menu li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.mobile-nav-menu li a:hover {
    background: var(--bg-green);
    color: var(--primary);
    padding-left: 28px;
}

.mobile-menu-extras {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 60px 0 48px;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background-image: url('../assets/images/farm-site.jpeg');
}

.hero-slide-2 {
    background-image: url('../assets/images/product-bags-wide.png');
}

.hero-slide-3 {
    background-image: url('../assets/images/product-bags.jpeg');
}

.hero-slide-4 {
    background-image: url('../assets/images/earthworms.jpeg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 14, 0.82) 0%, rgba(45, 80, 22, 0.72) 50%, rgba(30, 58, 14, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.text-accent {
    color: var(--accent-light);
    position: relative;
}

.hero-content > p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.hero-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 56px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card-image {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-green);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
    min-height: 180px;
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.sale {
    background: var(--accent);
    color: white;
}

.product-card-info {
    padding: 14px;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.star-rating .star {
    display: flex;
    color: var(--accent);
}

.star-rating .star.empty {
    color: #ddd;
}

.rating-count {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-card-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.product-card-info h3 a {
    color: var(--text);
}

.product-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 480px) {
    .product-card-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.product-price del {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 13px;
}

.product-price ins {
    text-decoration: none;
}

/* ============================================
   WHY ORGANIC SECTION
   ============================================ */
.why-organic-section {
    background: white;
}

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

.benefit-card {
    padding: 24px;
    background: var(--bg-green);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   PRODUCT HIGHLIGHT SECTION
   ============================================ */
/* ============================================
   FACILITY & CUSTOMER GARDENS - BENTO GRID
   ============================================ */
.facility-section {
    background: var(--bg-light) !important;
}

.customer-gardens-section {
    background: #fff !important;
}

.facility-bento {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.bento-item {
    position: relative !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    width: 100% !important;
    min-width: 0 !important;
}

.bento-item:not(.bento-large):not(.bento-wide) {
    aspect-ratio: 1 / 1 !important;
    height: 0 !important;
    padding-bottom: 100% !important;
}

.bento-item.bento-large {
    grid-column: 1 / -1 !important;
    aspect-ratio: auto !important;
    height: 0 !important;
    padding-bottom: 56% !important;
}

.bento-item.bento-wide {
    grid-column: 1 / -1 !important;
    aspect-ratio: auto !important;
    height: 0 !important;
    padding-bottom: 56% !important;
}

.bento-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 24px 12px 10px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%) !important;
    z-index: 2 !important;
}

.bento-overlay strong {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
}

@media (min-width: 768px) {
    .facility-bento {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
    }

    .bento-item.bento-large {
        grid-column: 1 / 3 !important;
        grid-row: 1 / 3 !important;
        padding-bottom: 100% !important;
    }

    .bento-item.bento-wide {
        grid-column: 3 / 5 !important;
        padding-bottom: 50% !important;
    }

    .bento-overlay {
        padding: 28px 16px 14px !important;
    }

    .bento-overlay strong {
        font-size: 14px !important;
    }
}

@media (min-width: 1024px) {
    .facility-bento {
        gap: 14px !important;
    }

    .bento-overlay strong {
        font-size: 15px !important;
    }
}

/* ============================================
   PRODUCT HIGHLIGHTS
   ============================================ */
.product-highlight {
    background: var(--bg-light);
}

.product-highlight.alt {
    background: white;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.highlight-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.highlight-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.highlight-placeholder.pot-mix {
    background: linear-gradient(135deg, #f5e6d0, #e8d5b8);
}

.highlight-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    opacity: 0.6;
}

.highlight-placeholder-inner span {
    font-size: 14px;
    font-weight: 600;
}

.highlight-content .section-tag {
    margin-bottom: 12px;
}

.highlight-content h2 {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.highlight-content > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-features {
    margin-bottom: 24px;
}

.highlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.highlight-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-price {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.highlight-price strong {
    font-size: 28px;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ============================================
   HOW TO USE SECTION
   ============================================ */
.how-to-section {
    background: var(--bg-green);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-100);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: white;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-card > p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
    min-height: 160px;
}

.blog-card-content {
    padding: 20px;
}

.blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.blog-card-content h3 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text);
}

.blog-card-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more:hover {
    gap: 8px;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    background: var(--bg-green, #f0f7eb);
}

.certs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.cert-card .cert-img-wrap {
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cert-card .cert-info {
    padding: 16px;
    text-align: center;
}

@media (max-width: 767px) {
    .certs-grid {
        gap: 16px;
    }

    .cert-card .cert-img-wrap {
        padding: 12px;
    }

    .cert-card .cert-info {
        padding: 14px;
    }

    .cert-card h3 {
        font-size: 14px;
    }

    .cert-card p {
        font-size: 12px;
    }
}

.cert-card .cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-green, #f0f7eb);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.cert-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}

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

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 56px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bulk {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-bulk a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.footer-newsletter {
    background: var(--bg-green);
    padding: 48px 0;
}

.newsletter-inner {
    text-align: center;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.newsletter-text p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-input-wrap input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 2px solid var(--primary-100);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    min-width: 0;
}

.newsletter-input-wrap input:focus {
    border-color: var(--primary);
}

.newsletter-input-wrap button {
    height: 48px;
    padding: 0 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.newsletter-input-wrap button:hover {
    background: var(--primary-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: var(--primary-dark);
    padding: 48px 0 32px;
    color: rgba(255,255,255,0.8);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.footer-logo .logo-main {
    color: white;
}

.footer-logo .logo-sub {
    color: var(--accent);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
}

.footer-contact li a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.payment-methods {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.payment-methods span {
    margin-right: 4px;
}

.payment-icons {
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item svg {
    transition: color var(--transition);
}

.cart-nav-item .cart-count {
    position: absolute;
    top: 0;
    right: 4px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: 12px 0;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

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

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

.breadcrumbs .sep {
    margin: 0 8px;
    color: var(--border);
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.site-main {
    min-height: 60vh;
}

.page-hero {
    background: var(--bg-green);
    padding: 40px 0;
    text-align: center;
}

.page-hero-title {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

/* Page Content Body */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 36px 0 56px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.page-content h2 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-top: 36px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-100);
}

.page-content h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content strong {
    color: var(--text);
    font-weight: 600;
}

.page-content ul,
.page-content ol {
    margin-bottom: 18px;
    padding-left: 0;
}

.page-content ul {
    list-style: none;
}

.page-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.page-content ol {
    list-style: decimal;
    padding-left: 20px;
}

.page-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--primary-light);
}

.page-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--bg-green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

.page-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

/* Contact info cards style */
.page-content h3 + p {
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    margin-bottom: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 32px 0 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form-wrap h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.contact-owner,
.contact-deals,
.contact-website {
    margin-bottom: 16px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.contact-owner strong,
.contact-deals strong,
.contact-website strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-owner span,
.contact-deals p,
.contact-website p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.contact-website a {
    color: var(--primary);
    text-decoration: none;
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form-note {
    font-size: 14px;
    color: var(--text-light);
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .contact-page {
        padding: 48px 0 64px;
    }
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: 0;
    }

    .container {
        padding: 0 24px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .page-hero {
        padding: 48px 0;
    }

    .page-hero-title {
        font-size: 2.25rem;
    }

    .page-content {
        font-size: 16px;
        padding: 48px 0 64px;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .header-inner {
        height: 68px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .desktop-only {
        display: flex;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .whatsapp-float {
        bottom: 24px;
        right: 24px;
    }

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

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 48px;
    }

    .trust-items {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 72px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .highlight-grid.reverse {
        direction: rtl;
    }

    .highlight-grid.reverse > * {
        direction: ltr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

    .blog-card-image {
        aspect-ratio: 4/3;
    }

    /* Blog listing tablet */
    .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-listing-content {
        padding: 18px;
        gap: 8px;
    }

    .blog-listing-content h2 {
        font-size: 1.05rem;
    }

    .blog-listing-content p {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    /* Single post tablet */
    .single-post-title {
        font-size: 2rem;
    }

    .post-body {
        font-size: 17px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-page-hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }

    .header-inner {
        height: 72px;
    }

    .hero-section {
        padding: 100px 0 80px;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content > p {
        font-size: 17px;
    }

    .section {
        padding: 88px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-card-info {
        padding: 18px;
    }

    .product-card-info h3 {
        font-size: 15px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 32px;
    }

    .newsletter-text {
        margin-bottom: 0;
    }

    .newsletter-text p {
        margin-bottom: 0;
    }

    .newsletter-input-wrap {
        min-width: 400px;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    /* Blog listing desktop */
    .blog-listing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .blog-listing-content h2 {
        font-size: 1.15rem;
    }

    .blog-listing-content p {
        font-size: 14px;
    }

    /* Single post desktop */
    .single-post-hero {
        padding: 48px 0 44px;
    }

    .single-post-title {
        font-size: 2.5rem;
    }

    .post-body {
        font-size: 18px;
    }

    .post-body h2 {
        font-size: 1.5rem;
    }

    .blog-page-hero {
        padding: 56px 0;
    }

    .blog-page-hero h1 {
        font-size: 2.75rem;
    }
}

/* ============================================
   BLOG LISTING PAGE
   ============================================ */
.blog-page-hero {
    background: var(--bg-green);
    padding: 40px 0;
    text-align: center;
}

.blog-page-hero h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-top: 8px;
    margin-bottom: 8px;
}

.blog-page-hero p {
    color: var(--text-light);
    font-size: 14px;
}

.blog-listing-container {
    padding-top: 32px;
    padding-bottom: 56px;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.blog-listing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.blog-listing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.blog-listing-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-green);
}

.blog-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.blog-listing-card:hover .blog-listing-image img {
    transform: scale(1.04);
}

.blog-listing-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-listing-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-listing-date {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-listing-content h2 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
}

.blog-listing-content h2 a {
    color: inherit;
}

.blog-listing-content h2 a:hover {
    color: var(--primary);
}

.blog-listing-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-listing-content .blog-read-more {
    margin-top: 4px;
}

/* ============================================
   SINGLE POST PAGE
   ============================================ */
.single-post-hero {
    background: var(--bg-green);
    padding: 32px 0 36px;
}

.single-post-meta-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.post-category-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.single-post-title {
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.single-post-meta {
    display: flex;
    align-items: center;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.post-author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.post-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.single-post-image {
    margin-top: -20px;
    margin-bottom: 8px;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.post-featured-image img {
    width: 100%;
    display: block;
}

.single-post-content {
    padding: 28px 0 48px;
}

.single-post-content .container {
    max-width: 760px;
}

.post-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-light);
}

.post-body h2 {
    font-size: 1.35rem;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 700;
}

.post-body h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.post-body p {
    margin-bottom: 18px;
}

.post-body ul,
.post-body ol {
    margin-bottom: 18px;
    padding-left: 20px;
}

.post-body ul {
    list-style: disc;
}

.post-body ol {
    list-style: decimal;
}

.post-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.post-body strong {
    color: var(--text);
    font-weight: 600;
}

.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--bg-green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

.post-body img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.post-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    transition: all var(--transition);
}

.post-tag:hover {
    background: var(--bg-green);
    color: var(--primary);
}

.post-share {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.post-share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

.post-share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    color: white;
}

.share-btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.whatsapp-share {
    background: #25D366;
}

.facebook-share {
    background: #1877F2;
}

.related-posts-section {
    background: var(--bg-light);
    padding: 48px 0;
}

.related-posts-heading {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.related-posts-grid .blog-card-image {
    aspect-ratio: 16/9;
}

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

.related-posts-grid .blog-card-content {
    padding: 16px;
}

.related-posts-grid .blog-card-content h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.related-posts-grid .blog-card-content p {
    font-size: 13px;
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
