/* =========================================
   READY PEP GO — MAIN STYLESHEET
   Loaded after style.css (variables defined there)
   ========================================= */

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2.5rem; }
}

.section {
    padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Content + Sidebar layout */
.content-area {
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
}

.content-area.has-sidebar {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .content-area.has-sidebar {
        grid-template-columns: 1fr 320px;
    }
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
}

.section-header--center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

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

.btn--primary:hover {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 111, 217, 0.35);
}

.btn--cyan {
    background: var(--color-cyan);
    color: var(--color-navy);
    border-color: var(--color-cyan);
}

.btn--cyan:hover {
    background: var(--color-cyan-dark);
    border-color: var(--color-cyan-dark);
    color: var(--color-navy);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 200, 255, 0.4);
}

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

.btn--outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-1px);
}

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

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    text-decoration: none;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    text-decoration: none;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.site-logo {
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img,
.site-logo .custom-logo {
    height: 44px;
    width: auto;
    display: block;
}

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

.logo-name {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.logo-name span {
    color: var(--color-cyan);
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1px;
}

/* Primary Nav */
.primary-nav {
    display: none;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--color-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
    list-style: none;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-search-toggle,
.header-account-link,
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.header-search-toggle:hover,
.header-account-link:hover,
.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
}

.header-search-toggle svg,
.header-account-link svg {
    width: 18px;
    height: 18px;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.875rem;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.header-cart:hover {
    background: rgba(0, 200, 255, 0.15);
    color: var(--color-cyan);
    text-decoration: none;
}

.header-cart svg {
    width: 18px;
    height: 18px;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--color-cyan);
    color: var(--color-navy);
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
    transition: all 0.2s ease;
}

.cart-count:not(.has-items) {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
}

.mobile-nav .nav-menu a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
}

.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.25rem;
    margin-left: 1rem;
}

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.search-overlay-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* =========================================
   SKIP LINK
   ========================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-cyan);
    color: var(--color-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30, 111, 217, 0.25) 0%, transparent 65%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 60%);
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 200, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 0 4rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 1.25rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-cyan);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-title .line-accent {
    color: var(--color-cyan);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-visual-inner {
    position: relative;
    height: 420px;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    position: absolute;
    transition: transform 0.3s ease;
}

.hero-visual-card:nth-child(1) {
    top: 40px;
    left: 0;
    right: 60px;
}

.hero-visual-card:nth-child(2) {
    top: 20px;
    right: 0;
    width: 130px;
}

.hero-visual-card:nth-child(3) {
    bottom: 60px;
    right: 20px;
    width: 130px;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scroll-hint 2s infinite;
}

@keyframes scroll-hint {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    background: var(--color-off-white);
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 8px 32px rgba(30, 111, 217, 0.12);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(30, 111, 217, 0.1), rgba(0, 200, 255, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-blue);
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.625rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    background: var(--color-navy);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-cyan);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================
   FEATURED PRODUCTS
   ========================================= */
.featured-products-section {
    background: var(--color-white);
}

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

@media (min-width: 640px) {
    .featured-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .featured-products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background: var(--color-off-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-inner { grid-template-columns: 1fr 1fr; }
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-blue);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(30, 111, 217, 0.4);
}

.about-image-badge .number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-image-badge .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    max-width: 90px;
}

.about-content .section-title {
    margin-top: 0.5rem;
}

.about-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(30, 111, 217, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-blue);
}

.about-feature-title {
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.about-feature-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: var(--color-navy);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 200, 255, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #F59E0B;
    stroke: none;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-navy);
    flex-shrink: 0;
}

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

.testimonial-author-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--color-blue) 0%, #0B3E8C 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 200, 255, 0.15) 0%, transparent 65%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-banner-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--color-gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-social-link:hover {
    background: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
    font-size: 0.8125rem;
}

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

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-cyan);
}

/* =========================================
   PAGE HERO (INNER PAGES)
   ========================================= */
.page-hero {
    background: var(--color-navy);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 30% 50%, rgba(30, 111, 217, 0.2) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-white);
    margin-top: 0.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   BLOG POSTS GRID
   ========================================= */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.post-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 8px 32px rgba(30, 111, 217, 0.1);
    transform: translateY(-2px);
}

.post-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.post-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-cat a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    text-decoration: none;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
    margin: 0.5rem 0 0.75rem;
}

.post-card-title a {
    color: inherit;
    text-decoration: none;
}

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

.post-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    margin-top: auto;
}

.post-card-link:hover {
    gap: 0.5rem;
    color: var(--color-blue-dark);
}

/* =========================================
   SINGLE POST
   ========================================= */
.post-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.post-meta-top {
    margin-bottom: 1rem;
}

.post-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    background: rgba(30, 111, 217, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    text-decoration: none;
    margin-right: 0.5rem;
}

.single-post-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 900;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-thumbnail {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Entry Content Typography */
.post-content.entry-content h2,
.post-content.entry-content h3,
.post-content.entry-content h4 {
    color: var(--color-navy);
    font-weight: 800;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content.entry-content h2 { font-size: 1.5rem; }
.post-content.entry-content h3 { font-size: 1.25rem; }
.post-content.entry-content h4 { font-size: 1.0625rem; }

.post-content.entry-content p {
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.post-content.entry-content a {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content.entry-content ul,
.post-content.entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    line-height: 1.8;
}

.post-content.entry-content blockquote {
    border-left: 4px solid var(--color-cyan);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-gray-100);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--color-gray-600);
}

.post-content.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-content.entry-content pre {
    background: var(--color-navy);
    color: var(--color-cyan);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.post-content.entry-content code {
    background: var(--color-gray-100);
    color: var(--color-blue-dark);
    padding: 0.2em 0.45em;
    border-radius: 4px;
    font-size: 0.875em;
}

.post-content.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Post Footer */
.post-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.tags-label { font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); }

.post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-border);
    border-radius: 99px;
    font-size: 0.8rem;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-tag:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
}

.post-share { display: flex; gap: 0.5rem; align-items: center; }
.share-label { font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); }

.share-link {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-twitter { background: rgba(29, 161, 242, 0.1); color: #1da1f2; }
.share-twitter:hover { background: #1da1f2; color: white; text-decoration: none; }
.share-linkedin { background: rgba(0, 119, 181, 0.1); color: #0077b5; }
.share-linkedin:hover { background: #0077b5; color: white; text-decoration: none; }

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.post-nav-prev, .post-nav-next {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
    background: var(--color-gray-100);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--color-border);
}

.post-nav-next { text-align: right; }

.post-nav-prev:hover, .post-nav-next:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    text-decoration: none;
}

.post-nav-prev:hover .nav-label,
.post-nav-next:hover .nav-label,
.post-nav-prev:hover .nav-title,
.post-nav-next:hover .nav-title {
    color: var(--color-white);
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-nav-next .nav-label { justify-content: flex-end; }

.nav-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-gray-100);
    border-radius: 16px;
    margin: 2rem 0;
    align-items: flex-start;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 800;
    color: var(--color-navy);
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
}

.author-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Related Posts */
.related-posts { padding: 2rem 0; }

.related-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.related-card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 4px 16px rgba(30, 111, 217, 0.1);
}

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

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-card-content {
    padding: 1rem;
}

.related-card-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
}

.related-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

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

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

/* =========================================
   SIDEBAR
   ========================================= */
.sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-cyan);
    display: inline-block;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.widget ul li:last-child { border-bottom: none; }

.widget ul li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget ul li a:hover {
    color: var(--color-blue);
}

/* =========================================
   SEARCH FORM
   ========================================= */
.search-form-inner {
    display: flex;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease;
}

.search-form-inner:focus-within {
    border-color: var(--color-cyan);
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem 1.25rem;
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
}

.search-field::placeholder { color: rgba(255, 255, 255, 0.4); }

.search-submit {
    background: var(--color-cyan);
    border: none;
    padding: 0 1.25rem;
    color: var(--color-navy);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
}

.search-submit:hover { background: var(--color-cyan-dark); }

/* =========================================
   404 PAGE
   ========================================= */
.error-404 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem 0;
    align-items: center;
}

@media (min-width: 1024px) {
    .error-404 { grid-template-columns: 1fr 1fr; }
}

.error-404-visual {
    position: relative;
    text-align: center;
}

.error-404-number {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.05em;
}

.error-404-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 200, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.error-404-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.error-404-text {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.error-404-search {
    margin-bottom: 2rem;
}

.error-404-search .search-form-inner {
    border-color: var(--color-border);
    background: var(--color-gray-100);
}

.error-404-search .search-field {
    color: var(--color-text);
}

.error-404-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.error-404-popular h2 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.error-404-popular ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.error-404-popular a {
    font-size: 0.9rem;
    color: var(--color-blue);
    text-decoration: none;
}

.error-404-popular a:hover { text-decoration: underline; }

/* =========================================
   NO RESULTS
   ========================================= */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results svg {
    color: var(--color-gray-300);
    margin: 0 auto 1.5rem;
    display: block;
}

.no-results h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.no-results p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* =========================================
   COMMENTS
   ========================================= */
.comments-area {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.comments-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    padding: 1.5rem;
    background: var(--color-gray-100);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.comment-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.875rem; }

.comment-author img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.comment-author .fn {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.comment-metadata a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.comment-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* Comment Form */
.comment-reply-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.comment-form p { margin-bottom: 1.25rem; }

.comment-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s ease;
    outline: none;
    font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: var(--color-blue);
}

.comment-form textarea { resize: vertical; min-height: 140px; }

/* =========================================
   PAGINATION
   ========================================= */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.page-numbers,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-numbers.current,
.nav-links .current {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

.page-numbers:hover,
.nav-links a:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    text-decoration: none;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.woocommerce-breadcrumb {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--color-cyan);
}

/* =========================================
   SHOP PAGE
   ========================================= */
.shop-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .shop-hero-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.shop-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge svg {
    color: var(--color-cyan);
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .shop-layout {
        grid-template-columns: 260px 1fr;
    }
}

.shop-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .shop-sidebar {
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
}

.sidebar-close-btn {
    display: none;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-text);
}

.filter-toggle-btn:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .filter-toggle-btn { display: none; }
}

/* =========================================
   PRODUCT CARDS (SHOP)
   ========================================= */
.rpg-product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    list-style: none;
}

.rpg-product-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 8px 32px rgba(30, 111, 217, 0.12);
    transform: translateY(-3px);
}

.rpg-product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-gray-100);
}

.rpg-product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.rpg-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpg-product-card:hover .rpg-product-card__img {
    transform: scale(1.05);
}

.rpg-product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge--sale { background: var(--color-error); color: white; }
.badge--featured { background: var(--color-blue); color: white; }
.badge--out { background: var(--color-gray-500); color: white; }

.rpg-product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.rpg-product-card:hover .rpg-product-card__actions {
    transform: translateY(0);
}

.rpg-product-card__view-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.rpg-product-card__view-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
}

.rpg-product-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.rpg-product-card__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rpg-product-card__cat a {
    color: var(--color-blue);
    text-decoration: none;
}

.rpg-product-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
    margin: 0;
}

.rpg-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.rpg-product-card__title a:hover { color: var(--color-blue); }

.rpg-product-card__purity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.purity-label {
    color: var(--color-text-muted);
}

.purity-value {
    font-weight: 800;
    color: var(--color-cyan);
    background: rgba(0, 200, 255, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.rpg-product-card__price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-navy);
}

.rpg-product-card__price .woocommerce-Price-amount { color: var(--color-navy); }
.rpg-product-card__price del { color: var(--color-text-muted); font-size: 0.85em; font-weight: 500; }
.rpg-product-card__price ins { text-decoration: none; color: var(--color-error); }

.rpg-product-card__stock {
    margin-top: auto;
}

.stock-in {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-success);
}

.stock-in svg { color: var(--color-success); }

.stock-out {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* =========================================
   CART PAGE
   ========================================= */
.rpg-cart {
    padding: 3rem 0;
}

.rpg-cart-table {
    width: 100%;
    margin-bottom: 2rem;
}

.rpg-cart-table__head {
    display: none;
}

@media (min-width: 768px) {
    .rpg-cart-table__head { display: block; }
}

.rpg-cart-table__head-row {
    display: grid;
    grid-template-columns: 1fr 120px 140px 120px 44px;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--color-border);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.rpg-cart-table__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .rpg-cart-table__row {
        grid-template-columns: 1fr 120px 140px 120px 44px;
        align-items: center;
    }
}

.rpg-cart-product {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.rpg-cart-product__image {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-gray-100);
}

.rpg-cart-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rpg-cart-product__name {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9375rem;
}

.rpg-cart-product__name a {
    color: inherit;
    text-decoration: none;
}

.rpg-cart-product__name a:hover { color: var(--color-blue); }

.rpg-cart-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-gray-100);
    border-radius: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.rpg-cart-remove:hover {
    background: var(--color-error);
    color: white;
    text-decoration: none;
}

.rpg-cart-table__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.coupon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.coupon input[type="text"] {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.coupon input[type="text"]:focus { border-color: var(--color-blue); }

.rpg-cart-collaterals {
    display: flex;
    justify-content: flex-end;
}

.rpg-cart-totals {
    width: 100%;
    max-width: 420px;
}

.rpg-checkout-cta {
    margin-top: 1.5rem;
}

.rpg-cart-secure {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    justify-content: center;
    margin-top: 0.875rem;
}

/* =========================================
   MY ACCOUNT
   ========================================= */
.rpg-my-account {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .rpg-my-account {
        grid-template-columns: 220px 1fr;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-MyAccount-navigation li:last-child { border-bottom: none; }

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active > a {
    background: var(--color-blue);
    color: var(--color-white);
}

/* =========================================
   RESEARCH DISCLAIMER
   ========================================= */
.research-disclaimer {
    background: var(--color-gray-900);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.research-disclaimer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.research-disclaimer strong {
    color: rgba(255, 255, 255, 0.55);
}

/* =========================================
   PAGE TEMPLATES
   ========================================= */
.page-content-area {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content-area h2 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 2rem 0 1rem;
}

.page-content-area h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 1.5rem 0 0.75rem;
}

.page-content-area p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* =========================================
   RESPONSIVE HELPERS
   ========================================= */
@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image-badge {
        bottom: -1rem;
        right: -0.5rem;
    }

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

    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .footer-top { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
