/* Boba Shaker - Professional Bubble Tea Equipment Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
    color: #2d3748;
    box-shadow: 0 8px 25px rgba(192, 225, 92, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(192, 225, 92, 0.4);
}

.btn-secondary {
    background: rgba(26, 32, 44, 0.1);
    color: #2d3748;
    border: 2px solid rgba(26, 32, 44, 0.2);
}

.btn-secondary:hover {
    background: rgba(26, 32, 44, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #C0E15C;
    border: 2px solid #C0E15C;
}

.btn-outline:hover {
    background: #C0E15C;
    color: #2d3748;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 32, 44, 0.1);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
}

.logo-placeholder i {
    color: #C0E15C;
    font-size: 2rem;
}

/* Image-based logo */
.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Remove all footer social links site-wide */
footer .social-links { display: none !important; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2d3748;
    background: rgba(192, 225, 92, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(192, 225, 92, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(192, 225, 92, 0.05) 0%, transparent 50%);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, rgba(192, 225, 92, 0.1), rgba(192, 225, 92, 0.2));
    border-radius: 50% 50% 0 0;
    animation: wave 6s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.5;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.3;
    height: 60px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center; /* Center align for better balance */
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 225, 92, 0.2);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(192, 225, 92, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 225, 92, 0.1);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(192, 225, 92, 0.2);
}

.feature-pill i {
    color: #C0E15C;
}

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

/* Hero Card & Trust Indicators */
.hero-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 1.75rem; /* Slightly tighter to reduce height */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.hero-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    background: rgba(192, 225, 92, 0.18);
    border: 1px solid rgba(192, 225, 92, 0.35);
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.trust-item i {
    color: #8BC34A;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; /* Center for improved proportion */
}

.product-showcase {
    position: relative;
    width: 100%;
    height: auto; /* Natural height, avoids overly tall crops */
    max-width: 720px;
}

.showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 2px solid rgba(192, 225, 92, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(192, 225, 92, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.hero-image {
    width: 100%;
    height: auto;
    max-height: 70vh; /* Keep large but controlled */
    object-fit: cover; /* Fill column, may crop edges */
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-bubble {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 8rem 0;
    background: #fff;
}

/* Dark variant for video section */
.video-showcase-section.dark {
    background: linear-gradient(135deg, #1a202c 0%, #111827 100%);
}

.video-showcase-section.dark .video-info h2 {
    color: #f7fafc;
}

.video-showcase-section.dark .video-info p {
    color: #cbd5e0;
}

.video-showcase-section.dark .stat-label {
    color: #a0aec0;
}

/* Stat cards */
.video-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.video-showcase-section.dark .stat-card .stat-number {
    color: #C0E15C;
}

.video-showcase-section.dark .stat-card .stat-label {
    color: #cbd5e0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.video-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.video-info p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.video-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #C0E15C;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.video-player {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(192, 225, 92, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.video-container:hover .play-overlay {
    opacity: 1;
}

/* Features Mosaic Section */
.features-mosaic-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.features-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
}

.feature-tile {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-tile.large {
    grid-column: span 2;
    grid-row: span 2;
}

.feature-tile.wide {
    grid-column: span 2;
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 225, 92, 0.05), transparent);
    transition: left 0.6s;
}

.feature-tile:hover::before {
    left: 100%;
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(192, 225, 92, 0.15);
    border-color: rgba(192, 225, 92, 0.3);
}

.tile-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(192, 225, 92, 0.3);
}

.feature-tile.large .tile-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.feature-tile h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.feature-tile.large h3 {
    font-size: 1.8rem;
}

.feature-tile p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.feature-tile.large p {
    font-size: 1.1rem;
}

.tile-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
}

/* Product Variants Section */
.variants-section {
    padding: 8rem 0;
    background: #fff;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.variant-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
}

.variant-card.featured {
    border-color: #C0E15C;
    transform: scale(1.05);
}

.variant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(192, 225, 92, 0.15);
}

.variant-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.variant-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.variant-card:hover .variant-image img {
    transform: scale(1.1);
}

.variant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(45, 55, 72, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.variant-badge.popular {
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
    color: #2d3748;
}

.variant-content {
    padding: 2rem;
}

.variant-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.variant-content p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.variant-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.variant-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.variant-features i {
    color: #48bb78;
    font-size: 0.8rem;
}

.variant-price {
    margin-bottom: 1.5rem;
}

.variant-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #C0E15C;
}

/* Specifications Section */
.specifications-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.specs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.specs-visual {
    position: relative;
}

.specs-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.specs-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.specs-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.spec-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.point-dot {
    width: 12px;
    height: 12px;
    background: #C0E15C;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(192, 225, 92, 0.3);
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.point-label {
    background: rgba(192, 225, 92, 0.9);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.point-1 {
    top: 20%;
    left: 10%;
}

.point-2 {
    top: 50%;
    right: 15%;
}

.point-3 {
    bottom: 25%;
    left: 20%;
}

.specs-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.specs-content > p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-group {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.spec-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.spec-group h3 i {
    color: #C0E15C;
    font-size: 1.2rem;
}

.spec-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #4a5568;
}

.spec-value {
    color: #2d3748;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(192, 225, 92, 0.1) 0%, transparent 50%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-text p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e0;
    font-weight: 500;
}

.benefit-item i {
    color: #C0E15C;
    font-size: 1.2rem;
}

.cta-action {
    text-align: center;
}

.price-highlight {
    background: rgba(192, 225, 92, 0.1);
    border: 1px solid rgba(192, 225, 92, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #C0E15C;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #cbd5e0;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.guarantee-text i {
    color: #48bb78;
}

/* Footer */
footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C0E15C;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(192, 225, 92, 0.1);
    color: #C0E15C;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #C0E15C;
    color: #2d3748;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    /* Ensure image resizes naturally when stacked */
    .hero-visual {
        align-items: center;
    }
    .product-showcase {
        height: auto;
        max-width: 560px;
    }
    .hero-image {
        height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .feature-tile.large,
    .feature-tile.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .specs-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .product-showcase {
        max-width: 480px;
    }

    /* Shop page: prevent product hero overflow on tablets/mobiles */
    .product-hero-section {
        padding: 6rem 0 3rem !important; /* reduce vertical padding */
    }
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }
    .product-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }
    .main-product-view {
        max-height: 55vh;
    }
    .main-image {
        max-height: 55vh;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Make product gallery scrollable on mobile */
    .product-gallery {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 4px; /* space for scrollbar */
    }
    .main-product-view {
        margin-bottom: 0.75rem; /* ensure thumbnails remain visible */
    }
    .thumbnail-gallery {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 0.25rem;
        scroll-snap-type: x mandatory;
    }
    .thumbnail {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-mosaic {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
    }
    
    .variant-card.featured {
        transform: none;
    }
    
    .spec-items {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .product-showcase {
        max-width: 380px;
    }
    /* Shop page: tighter on small phones */
    .product-hero-section {
        padding: 5.5rem 0 2.25rem !important;
    }
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1rem;
    }
    .main-product-view {
        max-height: 48vh;
    }
    .main-image {
        max-height: 48vh;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .product-gallery {
        max-height: 60vh; /* slightly smaller on very small phones */
    }
    .thumbnail {
        width: 56px;
        height: 56px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Page Sections - Shared Page Hero */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #718096;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Shop Page Specific Styles */
.product-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #2d3748;
    position: relative;
    overflow: hidden;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Ensure product info text is left-aligned */
.product-info { text-align: left; }
.product-info h1 { text-align: left; }
.product-info .product-subtitle { text-align: left; }

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 225, 92, 0.2);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(192, 225, 92, 0.3);
}

.product-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-highlights {
    margin-bottom: 3rem;
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #C0E15C;
    width: 40px;
    text-align: center;
}

.highlight-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.product-pricing {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 225, 92, 0.2);
    backdrop-filter: blur(10px);
}

.price-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-option {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(192, 225, 92, 0.2);
    transition: all 0.3s ease;
}

.price-option.featured {
    border-color: #C0E15C;
    background: rgba(192, 225, 92, 0.1);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: #C0E15C;
    font-weight: 600;
}

.product-gallery {
    position: relative;
}

.main-product-view {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

.image-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(192, 225, 92, 0.9);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #C0E15C;
    transform: scale(1.1);
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: #fff;
}

.legal-header h1 {
    font-size: 2rem;
}

.last-updated {
    color: #718096;
}

.legal-content {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.legal-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

/* Contact Page */
.contact-content-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info .info-header h2 {
    font-size: 1.75rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
    align-items: center;
}

.method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(192, 225, 92, 0.1);
    color: #C0E15C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-features .feature-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-form label {
    font-weight: 600;
    color: #4a5568;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font: inherit;
    color: #2d3748;
    background: #fff;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C0E15C;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: #f8fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(192, 225, 92, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

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

/* Blog Pages */
.blog-content-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.blog-card .blog-image {
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    display: block;
}

.blog-card .blog-content {
    padding: 1.25rem;
}

.blog-card .blog-meta {
    display: flex;
    gap: 1rem;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 a {
    color: #2d3748;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #C0E15C;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #C0E15C;
    text-decoration: none;
    font-weight: 600;
}

.blog-card.featured {
    border-color: #C0E15C;
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C0E15C;
    color: #2d3748;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
}

.category-list {
    display: grid;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(192, 225, 92, 0.1);
    border-color: #C0E15C;
}

.support-links .support-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    align-items: center;
    text-decoration: none;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.support-links .support-item:hover {
    background: rgba(192, 225, 92, 0.1);
    border-color: #C0E15C;
}

/* Article Pages */
.article-hero {
    padding: 7rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.article-header .breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-header .breadcrumb a {
    color: #C0E15C;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #718096;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: #4a5568;
    max-width: 800px;
}

.article-content-section {
    padding: 3rem 0;
}

.article-layout.single-column {
    max-width: 900px;
    margin: 0 auto;
}

.article-content .content-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
    color: #4a5568;
}

.checklist i {
    color: #48bb78;
}

/* About Page */
.about-content-section {
    padding: 4rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-top: 1.5rem;
}

.image-stack {
    position: relative;
}

.stack-image {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.stack-image.secondary {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 60%;
    border: 6px solid #fff;
}

.stats-overlay {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}

.stat-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
}

.stat-number {
    color: #C0E15C;
    font-weight: 800;
    font-size: 1.5rem;
}

.values-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(192, 225, 92, 0.15);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #C0E15C, #8BC34A);
    color: #2d3748;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(192, 225, 92, 0.3);
    margin-bottom: 1rem;
}

/* Small tweaks for fixed navbar offset on inner pages */
main {
    padding-top: 4.5rem;
}

/* Responsive overrides for subpages */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stack-image.secondary {
        position: static;
        width: 100%;
        border: none;
        margin-top: 1rem;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-options {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-hero-section h1 {
        font-size: 2.5rem;
    }
}