/* Modern Professional Design - Light Mode with Dark Mode Toggle */
/* Porto Shop 28 + Shop 55 Style + GoPro/Oakley Energy + 2Advanced Polish */

:root {
    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-tertiary: #adb5bd;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* Brand Colors */
    --brand-primary: #00d084;
    --brand-secondary: #1a8fb8;
    --brand-gradient: linear-gradient(135deg, #00d084 0%, #1a8fb8 100%);
    
    /* Accent Colors */
    --accent-success: #28a745;
    --accent-warning: #ffc107;
    --accent-danger: #dc3545;
}

.dark-mode {
    /* Dark Mode Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #adb5bd;
    --text-tertiary: #6c757d;
    --border-color: #333333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Promo Bar */
.promo-bar {
    background: var(--brand-gradient);
    color: #000;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Navigation */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: width 0.3s ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--brand-primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.btn-buy-nav {
    background: var(--brand-gradient);
    color: #000;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.btn-buy-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 208, 132, 0.5);
}

/* Video Hero */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 208, 132, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-price {
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 40px;
    font-weight: 300;
}

.price-highlight {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--brand-primary);
}

.btn-hero-cta {
    display: inline-block;
    background: var(--brand-gradient);
    color: #000;
    padding: 18px 48px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 208, 132, 0.4);
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 208, 132, 0.6);
    color: #000 !important;
    background: #00b89d;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

/* Feature Sections */
.feature-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.feature-section.alt {
    background: var(--bg-secondary);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-container.reverse {
    direction: rtl;
}

.feature-container.reverse > * {
    direction: ltr;
}

.feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.feature-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.feature-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.feature-section:hover .feature-image img {
    transform: scale(1.05);
}

/* Video Demo Section */
.video-demo-section {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.video-demo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.video-demo-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.video-demo-container > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 208, 132, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 400px;
    }
    
    /* Mobile video positioning - shift left to show product in action */
    .hero-bg-video {
        left: 70%;
        transform: translateX(-70%) translateY(-50%);
        min-width: 180%;
    }
}

/* Specifications Section */
.specs-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

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

.specs-header {
    text-align: center;
    margin-bottom: 80px;
}

.specs-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.specs-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.specs-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}



.spec-category {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.spec-category h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    font-size: 15px;
    line-height: 2;
    color: var(--text-secondary);
}

.spec-category strong {
    color: var(--text-primary);
}

.specs-price-card {
    background: var(--brand-gradient);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #000;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specs-price-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.price-large {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1;
}

.btn-specs-buy {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-specs-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reviews-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.reviews-container > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.review-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.review-author span {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Product Buy Section */
.product-buy-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.product-buy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-buy-image {
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.product-buy-details h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.stars {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 24px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.product-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-tertiary);
}

.product-options {
    margin-bottom: 24px;
}

.quantity-selector label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: var(--bg-secondary);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.qty-btn:hover {
    background: var(--bg-tertiary);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-size: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.btn-add-to-cart {
    width: 100%;
    background: var(--brand-gradient);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
    margin-bottom: 32px;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.5);
}

.product-features h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.product-features ul {
    list-style: none;
}

.product-features li {
    font-size: 15px;
    line-height: 2;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    padding: 80px 40px;
    background: var(--bg-secondary);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

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

.trust-badge svg {
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.trust-badge h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-badge p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 350px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-container,
    .product-buy-container {
        grid-template-columns: 1fr;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-video {
        height: 80vh;
    }
    
    .feature-section,
    .video-demo-section,
    .specs-section,
    .reviews-section,
    .product-buy-section,
    .trust-section {
        padding: 60px 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* CREATIVE FEATURE SECTIONS */

/* Feature 1: Full Width with Overlay */
.feature-fullwidth {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.feature-fullwidth-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transition: transform 0.3s ease;
}

.feature-fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 208, 132, 0.3) 100%);
}

.feature-fullwidth-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.feature-text-box {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.feature-text-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.feature-text-box p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* Feature 2: Split Screen */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.feature-split-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.feature-split-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.feature-split:hover .feature-split-image img {
    transform: scale(1.1);
}

.feature-split-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--brand-gradient);
    color: #000;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.6;
    box-shadow: 0 8px 30px rgba(0, 208, 132, 0.4);
}

.feature-split-badge span {
    display: block;
}

.feature-split-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
}

.feature-split-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.feature-highlight-box {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--brand-primary);
    transition: all 0.3s ease;
}

.feature-highlight-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-highlight-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-highlight-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.btn-feature-cta {
    display: inline-block;
    background: var(--brand-gradient);
    color: #000;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
    align-self: flex-start;
}

.btn-feature-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.5);
}

/* Feature 3: Asymmetric Grid */
.feature-asymmetric {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.asymmetric-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    min-height: 700px;
}

.asymmetric-large {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.asymmetric-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.asymmetric-large:hover img {
    transform: scale(1.05);
}

.asymmetric-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 60px 40px 40px;
    color: #fff;
}

.asymmetric-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.asymmetric-overlay p {
    font-size: 17px;
    opacity: 0.9;
}

.asymmetric-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.gradient-card {
    background: var(--brand-gradient);
    color: #000;
    border: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gradient-card h4,
.gradient-card p {
    color: #000;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

/* Responsive for Creative Sections */
@media (max-width: 1024px) {
    .feature-split,
    .asymmetric-container {
        grid-template-columns: 1fr;
    }
    
    .feature-fullwidth {
        height: auto;
        padding: 80px 20px;
    }
    
    .feature-text-box {
        padding: 40px;
    }
    
    .feature-stats {
        grid-template-columns: 1fr;
    }
    
    .asymmetric-large {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .feature-text-box h2 {
        font-size: 32px;
    }
    
    .feature-split-content {
        padding: 60px 30px;
    }
    
    .feature-split-content h2 {
        font-size: 32px;
    }
    
    .feature-split-badge {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 12px;
    }
}

/* UPDATES - Sticky Nav, Marine Card, Footer */

/* Make navigation truly sticky (override) */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Marine-themed feature card with barnacle texture */
.feature-text-box {
    background: linear-gradient(135deg, #0d4f5c 0%, #1a8fb8 100%) !important;
    color: #ffffff !important;
    padding: 60px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Barnacle texture effect on card edges */
.feature-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #2a5f6b 0px,
        #2a5f6b 12px,
        #1a4a54 12px,
        #1a4a54 24px,
        #3d7080 24px,
        #3d7080 36px
    );
    opacity: 0.6;
}

.feature-text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #2a5f6b 0px,
        #2a5f6b 12px,
        #1a4a54 12px,
        #1a4a54 24px,
        #3d7080 24px,
        #3d7080 36px
    );
    opacity: 0.6;
}

/* Side barnacle effects */
.feature-text-box {
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid rgba(255, 255, 255, 0.1);
}

/* Update text colors for marine card */
.feature-text-box h2,
.feature-text-box p,
.feature-label {
    color: #ffffff !important;
}

.feature-text-box .feature-label {
    color: #00d084 !important;
}

/* Darken the background overlay for better contrast */
.feature-fullwidth-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a1f2b 0%, #1a3a4a 100%);
    color: #ffffff;
    padding: 60px 40px 30px;
    border-top: 3px solid var(--brand-primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--brand-primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
}


/* UPDATES - Sticky Nav, Marine Card, Footer */

/* Make navigation truly sticky (override) */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Marine-themed feature card with barnacle texture */
.feature-text-box {
    background: linear-gradient(135deg, #0d4f5c 0%, #1a8fb8 100%) !important;
    color: #ffffff !important;
    padding: 60px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Barnacle texture effect on card edges */
.feature-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #2a5f6b 0px,
        #2a5f6b 12px,
        #1a4a54 12px,
        #1a4a54 24px,
        #3d7080 24px,
        #3d7080 36px
    );
    opacity: 0.6;
}

.feature-text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #2a5f6b 0px,
        #2a5f6b 12px,
        #1a4a54 12px,
        #1a4a54 24px,
        #3d7080 24px,
        #3d7080 36px
    );
    opacity: 0.6;
}

/* Side barnacle effects */
.feature-text-box {
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid rgba(255, 255, 255, 0.1);
}

/* Update text colors for marine card */
.feature-text-box h2,
.feature-text-box p,
.feature-label {
    color: #ffffff !important;
}

.feature-text-box .feature-label {
    color: #00d084 !important;
}

/* Darken the background overlay for better contrast */
.feature-fullwidth-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a1f2b 0%, #1a3a4a 100%);
    color: #ffffff;
    padding: 60px 40px 30px;
    border-top: 3px solid var(--brand-primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--brand-primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
}


/* UPDATED: Underwater Wave Background for POWERFUL TOOL Section */
.feature-fullwidth {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    overflow: hidden;
    background: #2a5f6b;
}

/* Underwater wave background image */
.feature-fullwidth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.85 !important;
    z-index: 1;
    filter: brightness(1.1) contrast(0.9);
}

/* Very light overlay for subtle depth */
.feature-fullwidth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
}

/* Update card positioning */
.feature-fullwidth-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced marine card for better contrast on light background */
.feature-text-box {
    background: linear-gradient(135deg, #0d4f5c 0%, #1a8fb8 100%) !important;
    color: #ffffff !important;
    padding: 60px;
    border-radius: 16px;
    max-width: 700px;
    box-shadow: 
        0 20px 60px rgba(13, 79, 92, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Subtle shine effect (2Advanced style) */
.feature-text-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    pointer-events: none;
}

/* Barnacle texture on edges (subtle) */
.feature-text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    opacity: 0.4;
}

/* Footer Styles for Product Pages */
.barnapole-footer {
    background: linear-gradient(135deg, #0a2540 0%, #0d3d5c 100%);
    color: #ffffff;
    padding: 80px 40px 40px;
    position: relative;
}

.barnapole-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
}

.barnapole-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.barnapole-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.barnapole-footer .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.barnapole-footer .footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.barnapole-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.barnapole-footer .footer-column ul li {
    margin-bottom: 12px;
}

.barnapole-footer .footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.barnapole-footer .footer-column ul li a:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

.barnapole-footer .social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.barnapole-footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.barnapole-footer .social-icon:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
}

.barnapole-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.barnapole-footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.barnapole-footer .footer-links {
    display: flex;
    gap: 24px;
}

.barnapole-footer .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.barnapole-footer .footer-links a:hover {
    color: var(--brand-primary);
}

/* Hide related products */
.related.products {
    display: none !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .barnapole-footer {
        padding: 60px 20px 30px;
    }
    
    .barnapole-footer .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .barnapole-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Alternative Uses Section */
.alternative-uses-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.alt-uses-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alt-uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.alt-use-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alt-use-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alt-use-card h3 {
    color: #0a4d3c;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.alt-use-card p {
    color: #666;
    line-height: 1.6;
}

/* TCO/Financials Section */
.tco-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a4d3c 0%, #064231 100%);
    color: white;
}

.tco-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tco-container .section-label {
    color: #4ade80;
}

.tco-container h2 {
    color: white;
}

.tco-container > p {
    color: rgba(255,255,255,0.9);
}

.tco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.tco-item {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.tco-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: #4ade80;
    transform: translateY(-5px);
}

.tco-cost {
    font-size: 3rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 10px;
}

.tco-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.tco-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.tco-callout {
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid #4ade80;
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    text-align: left;
}

.tco-callout h3 {
    color: #4ade80;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.tco-callout p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .alt-uses-grid,
    .tco-grid {
        grid-template-columns: 1fr;
    }
    
    .tco-cost {
        font-size: 2.5rem;
    }
    
    .tco-callout {
        padding: 30px 20px;
    }
}

/* Logo Fix - Prevent Distortion */
.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* iOS Portrait Display Fixes */
@media only screen and (max-width: 768px) and (orientation: portrait) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-menu {
        display: none; /* Hide on mobile, would need hamburger menu */
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .cart-icon {
        width: 36px;
        height: 36px;
    }
    
    .cart-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-buy-nav {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .hero-video {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-price {
        font-size: 18px;
    }
    
    .price-highlight {
        font-size: 32px;
    }
    
    .btn-hero-cta {
        padding: 14px 36px;
        font-size: 13px;
    }
    
    .feature-fullwidth-content {
        padding: 40px 20px;
    }
    
    .feature-text-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-split {
        flex-direction: column;
    }
    
    .feature-split-image,
    .feature-split-content {
        width: 100%;
    }
    
    .specs-grid-full {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet Responsive */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .feature-container {
        gap: 50px;
    }
    
    .specs-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Prevent Logo Stretching on Window Resize */
@media (max-width: 1200px) {
    .logo img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }
    
    .promo-bar {
        font-size: 11px;
        padding: 10px 15px;
    }
}

/* STRONGER CSS OVERRIDES FOR PORTO THEME */
body .alternative-uses-section {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

body .alt-uses-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

body .alt-uses-container .section-label {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #00d084 !important;
    margin-bottom: 16px !important;
}

body .alt-uses-container h2 {
    font-size: clamp(36px, 5vw, 56px) !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
    color: #1a1a1a !important;
}

body .alt-uses-container > p {
    font-size: 18px !important;
    color: #6c757d !important;
    margin-bottom: 60px !important;
}

body .alt-uses-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

body .alt-use-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

body .alt-use-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

body .alt-use-card h3 {
    color: #0a4d3c !important;
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

body .alt-use-card p {
    color: #666 !important;
    line-height: 1.6 !important;
}

/* TCO/Financials Section - Stronger Overrides */
body .tco-section {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #0a4d3c 0%, #064231 100%) !important;
    color: white !important;
}

body .tco-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

body .tco-container .section-label {
    color: #4ade80 !important;
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

body .tco-container h2 {
    color: white !important;
    font-size: clamp(36px, 5vw, 56px) !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

body .tco-container > p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px !important;
    margin-bottom: 60px !important;
}

body .tco-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 40px !important;
    margin: 50px 0 !important;
}

body .tco-item {
    background: rgba(255,255,255,0.1) !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    border: 2px solid rgba(74, 222, 128, 0.3) !important;
    transition: all 0.3s ease !important;
}

body .tco-item:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: #4ade80 !important;
    transform: translateY(-5px) !important;
}

body .tco-cost {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #4ade80 !important;
    margin-bottom: 10px !important;
}

body .tco-label {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 15px !important;
}

body .tco-item p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.95rem !important;
}

body .tco-callout {
    background: rgba(74, 222, 128, 0.1) !important;
    border: 2px solid #4ade80 !important;
    border-radius: 12px !important;
    padding: 40px !important;
    margin-top: 50px !important;
    text-align: left !important;
}

body .tco-callout h3 {
    color: #4ade80 !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
}

body .tco-callout p {
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
}

/* Product Section on Homepage */
body .product-section {
    padding: 100px 40px !important;
    background: var(--bg-secondary) !important;
}

body .product-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

body .product-container .section-label {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #00d084 !important;
    margin-bottom: 16px !important;
}

body .product-container h2 {
    font-size: clamp(36px, 5vw, 56px) !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: var(--text-primary) !important;
}

body .product-container > p {
    font-size: 18px !important;
    color: var(--text-secondary) !important;
    margin-bottom: 60px !important;
}

body .product-embed {
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Style the embedded WooCommerce product */
body .product-embed .product {
    background: var(--bg-primary) !important;
    padding: 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

/* Product Split Layout */
.product-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumbnails .thumb {
    aspect-ratio: 1;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
}

.product-thumbnails .thumb:hover,
.product-thumbnails .thumb.active {
    border-color: #10b981;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-category {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.product-rating {
    color: #fbbf24;
    font-size: 18px;
}

.product-rating span {
    color: #6b7280;
    font-size: 14px;
    margin-left: 8px;
}

.product-price {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-description p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.product-meta p {
    color: #6b7280;
    font-size: 14px;
    margin: 5px 0;
}

.product-meta strong {
    color: #1a1a1a;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 48px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #f3f4f6;
}

.quantity-selector input {
    width: 60px;
    height: 48px;
    border: none;
    border-left: 2px solid #e5e7eb;
    border-right: 2px solid #e5e7eb;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.add-to-cart-btn {
    flex: 1;
    height: 52px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-social {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.product-social a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.product-social a:hover {
    color: #10b981;
}

@media (max-width: 768px) {
    .product-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 28px;
    }
}

