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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: 'Google Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #202124;
    background-color: #ffffff;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo a {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.nav-logo a:hover,
.nav-logo a:focus,
.nav-logo a:visited {
    text-decoration: none !important;
    color: inherit;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Poppins', 'Google Sans', sans-serif;
    letter-spacing: -0.5px;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-logo h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(66, 133, 244, 0.1) 50%, rgba(52, 168, 83, 0.1) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover h2::before {
    opacity: 1;
}

.nav-logo h2::after {
    content: '™';
    font-size: 0.6rem;
    font-weight: 400;
    color: #5f6368;
    margin-left: 4px;
    vertical-align: super;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: #1a73e8;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

/* Add icons to nav links */
.nav-link[href="#home"]::before {
    content: '\f015';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
}

.nav-link[href="#products"]::before {
    content: '\f54e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
}

.nav-link[href="#about"]::before {
    content: '\f05a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
}

.nav-link[href="#contact"]::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(26, 115, 232, 0.08);
}

.bar {
    width: 24px;
    height: 2px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Slideshow Section */
.hero-slideshow {
    height: 60vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-only-slide {
    grid-template-columns: 1fr 1fr !important;
    text-align: left;
    justify-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.text-only-slide .slide-text {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    max-width: 600px;
}

.text-only-slide::after {
    content: '';
    grid-column: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    color: #ffffff;
    grid-column: 1;
    justify-self: start;
    align-self: center;
    max-width: 600px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: none !important;
    font-family: 'Google Sans', sans-serif;
}

.slide-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    animation: none !important;
    font-weight: 400;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.slide-buttons .btn {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Remove animations that cause movement */
.slide-text,
.slide-title,
.slide-subtitle,
.slide-buttons {
    animation: none !important;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    width: 500px;
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    z-index: 10;
    position: relative;
}

.product-showcase:hover {
    transform: none;
}

.service-showcase,
.quality-showcase {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.service-showcase i,
.quality-showcase i {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.8;
}

.product-badge,
.service-badge,
.quality-badge {
    display: none;
}

.badge-text {
    display: none;
}

.badge-label {
    display: none;
}

.product-badges {
    display: none;
}

.badge {
    display: none;
}

.badge.new {
    display: none;
}

.badge.featured {
    display: none;
}

.badge.cod {
    display: none;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Promotional Banner */
.promo-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e8eaed;
    z-index: 3;
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1.5rem 0;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #202124;
    font-weight: 500;
    font-size: 0.875rem;
}

.promo-item i {
    color: #1a73e8;
    font-size: 1.125rem;
    width: 24px;
}

/* Responsive Promotional Banner */
@media (max-width: 768px) {
    .promo-banner {
        display: none; /* Hide promotional banner on mobile */
    }
}

@media (max-width: 480px) {
    .promo-banner {
        display: none; /* Hide promotional banner on mobile */
    }
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Google Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

.btn-primary:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Get Quote Button Specific Styling */
.btn-secondary.btn-large {
    background: linear-gradient(135deg, #34a853, #0f9d58);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary.btn-large::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 ease;
}

.btn-secondary.btn-large:hover::before {
    left: 100%;
}

.btn-secondary.btn-large:hover {
    background: linear-gradient(135deg, #0f9d58, #0b8043);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary.btn-large .fa-envelope {
    transition: transform 0.3s ease;
    margin-right: 0.25rem;
}

.btn-secondary.btn-large:hover .fa-envelope {
    transform: translateX(3px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.section-header p {
    color: #5f6368;
    font-size: 1.125rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-card.featured {
    border: 1px solid #e8eaed;
}

.product-card:hover {
    transform: none;
    border-color: #dadce0;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    padding: 0;
    background: #ffffff;
    min-height: 350px;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: none;
}

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

.main-image:hover img {
    transform: none;
}

.thumbnail-images {
    display: none;
}

.thumbnail {
    display: none;
}

.product-badges {
    display: none;
}

.badge {
    display: none;
}

.badge.new {
    display: none;
}

.badge.featured {
    display: none;
}

.badge.cod {
    display: none;
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #ffffff;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 0;
    font-family: 'Google Sans', sans-serif;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbc04;
    font-size: 1rem;
}

.rating-text {
    color: #5f6368;
    font-weight: 400;
    font-size: 0.875rem;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 400;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.original-price {
    font-size: 1.125rem;
    color: #9aa0a6;
    text-decoration: line-through;
    font-weight: 400;
}

.discount {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-description {
    color: #5f6368;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #1557b0, #1a73e8);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
    color: white;
}

.btn-buy-now {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    min-width: 180px;
    width: auto;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-buy-now::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 ease;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #1557b0, #1a73e8);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    color: white;
    transform: translateY(-3px);
}

.btn-buy-now:hover::before {
    left: 100%;
}

.btn-buy-now .fa-arrow-right {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.btn-buy-now:hover .fa-arrow-right {
    transform: translateX(5px);
}

.btn-share {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
    min-width: 140px;
    width: auto;
    justify-content: center;
}

.btn-share:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    color: white;
    transform: translateY(-2px);
}

/* Delivery Info */
.delivery-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #1a73e8;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #5f6368;
    font-size: 0.875rem;
}

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

.delivery-item i {
    color: #1a73e8;
    font-size: 1rem;
    width: 16px;
}

.delivery-item strong {
    color: #202124;
    font-weight: 500;
}

/* Payment Options */
.payment-options h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #5f6368;
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.payment-method i {
    color: #1a73e8;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: visible;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
    overflow: visible;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #1a73e8;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.feature-card p {
    color: #5f6368;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
}

/* About Section - Modern Google Style */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 50%, #f1f3f4 100%);
    position: relative;
    overflow: visible;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8eaed" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e8eaed" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e8eaed" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e8eaed" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e8eaed" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.about-text {
    position: relative;
    overflow: visible;
    max-width: 500px;
    width: 100%;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.about-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34a853, #0f9d58);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite reverse;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 400;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-family: 'Google Sans', sans-serif;
    position: relative;
    line-height: 1.2;
    width: 100%;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

.about-text p {
    color: #5f6368;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-text p:first-of-type {
    font-size: 1.25rem;
    color: #202124;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    overflow: visible;
    width: 100%;
}

.stat {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-width: 200px;
    width: 100%;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(66, 133, 244, 0.05) 50%, rgba(52, 168, 83, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
}

.stat:nth-child(1) {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(66, 133, 244, 0.08) 100%);
}

.stat:nth-child(2) {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.08) 0%, rgba(15, 157, 88, 0.08) 100%);
}

.stat:nth-child(3) {
    background: linear-gradient(135deg, rgba(251, 188, 4, 0.08) 0%, rgba(249, 170, 22, 0.08) 100%);
}

.stat h3 {
    font-size: 3.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    min-height: auto;
    display: block;
    width: 100%;
    min-width: 120px;
}

.stat:hover h3 {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1557b0 0%, #1a73e8 50%, #0f9d58 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    color: #5f6368;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    width: 100%;
    min-width: 100px;
}

.stat:hover p {
    color: #202124;
    transform: translateY(-2px);
}

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

/* Expand width animation for underline */
@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* Pulse animation for stats */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat:hover {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.25rem;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text::before,
    .about-text::after {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        padding: 2rem 1.5rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text p:first-of-type {
        font-size: 1.125rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
}

/* Contact Section - Modern Google Style */
.contact {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
}

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

.contact .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact .section-badge i {
    font-size: 1rem;
}

.contact h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.contact .section-header p {
    color: #5f6368;
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.5rem;
    font-family: 'Google Sans', sans-serif;
}

.contact-details p {
    color: #5f6368;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 0.5rem;
    font-family: 'Google Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #202124;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa0a6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5f6368;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.form-note i {
    color: #34a853;
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1557b0, #0d47a1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 1.75rem;
    }
    
    .contact .section-header p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon i {
        font-size: 0.875rem;
    }
    
    .contact-details h4 {
        font-size: 0.875rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
    
    .btn-submit {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    background-color: #202124;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Google Sans', sans-serif;
}

.footer-section p {
    color: #9aa0a6;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
}

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

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

.footer-section ul li a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 400;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #5f6368;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1a73e8;
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #5f6368;
    color: #9aa0a6;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 80px 0 80px;
    background: #ffffff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Product Gallery - Sticky */
.product-gallery {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e8eaed;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: none;
}

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

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

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail.active {
    border-color: #1a73e8;
}

.thumbnail:hover {
    border-color: #1a73e8;
    transform: translateY(-1px);
}

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

/* Product Info */
.product-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e8eaed;
}

.product-header h1 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Google Sans', sans-serif;
}

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

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbc04;
    font-size: 0.875rem;
}

.rating-text {
    color: #5f6368;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Product Price */
.product-price {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #1a73e8;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a73e8;
    font-family: 'Google Sans', sans-serif;
}

.original-price {
    font-size: 1.125rem;
    color: #9aa0a6;
    text-decoration: line-through;
    font-weight: 400;
}

.discount-badge {
    background: #dc3545;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.price-note p {
    color: #5f6368;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 1.25rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #202124;
    font-size: 0.875rem;
    font-family: 'Google Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 180px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 0.25rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.quantity-controls button {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #5f6368;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans', sans-serif;
}

.quantity-controls button:hover {
    background: #1a73e8;
    color: #ffffff;
    transform: scale(1.05);
}

.quantity-controls button:active {
    transform: scale(0.95);
}

.quantity-controls button:disabled {
    background: #f1f3f4;
    color: #dadce0;
    cursor: not-allowed;
    transform: none;
}

#quantity {
    flex: 1;
    height: 36px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
    outline: none;
    min-width: 60px;
}

#quantity:focus {
    background: #e8f0fe;
    border-radius: 4px;
}

#quantity::-webkit-inner-spin-button,
#quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#quantity[type=number] {
    -moz-appearance: textfield;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 160px;
}

/* Promotional Offers */
.promo-offers {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #e8f0fe;
    border-radius: 6px;
    border-left: 3px solid #1a73e8;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #1a73e8;
    font-weight: 500;
    font-size: 0.875rem;
}

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

.promo-item i {
    font-size: 1rem;
    color: #1a73e8;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #5f6368;
    font-size: 0.875rem;
    font-weight: 400;
}

.product-features li i {
    color: #34a853;
    font-size: 0.875rem;
}

/* Product Tabs */
.product-tabs {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8eaed;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e8eaed;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: #e8eaed;
    color: #1a73e8;
}

.tab-btn.active {
    background: #ffffff;
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1.5rem;
    font-family: 'Google Sans', sans-serif;
}

.tab-content h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #202124;
    margin: 1.5rem 0 1rem;
    font-family: 'Google Sans', sans-serif;
}

.tab-content p {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.tab-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #5f6368;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
}

.tab-content li:before {
    content: "•";
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #1a73e8;
}

.spec-label {
    font-weight: 500;
    color: #202124;
    font-size: 0.875rem;
}

.spec-value {
    font-weight: 500;
    color: #1a73e8;
    font-size: 0.875rem;
}

/* Warranty Info */
.warranty-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.warranty-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #1a73e8;
}

.warranty-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #202124;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.warranty-item h4 i {
    color: #1a73e8;
    font-size: 1.125rem;
}

.warranty-item p {
    color: #5f6368;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.875rem;
    font-weight: 400;
}

.warranty-item p:last-child {
    margin-bottom: 0;
}

.warranty-item strong {
    color: #1a73e8;
    font-weight: 500;
}

/* Product Images Grid */
.product-images-grid {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.grid-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    flex-shrink: 0;
}

.grid-image:hover {
    border-color: #1a73e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.grid-image.active {
    border-color: #1a73e8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

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

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

/* Responsive Product Images Grid */
@media (max-width: 768px) {
    .product-images-grid {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .grid-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .product-images-grid {
        gap: 0.3rem;
        margin-top: 0.5rem;
    }
    
    .grid-image {
        width: 45px;
        height: 45px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .nav-container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
    }
    
    .slide-content .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .text-only-slide {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .products .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .features .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .about .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .contact .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .product-detail .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 1rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(232, 234, 237, 0.8);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 16px 24px;
        margin: 4px 20px;
        border-radius: 12px;
        font-size: 1rem;
        justify-content: center;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-logo h2 {
        font-size: 1.25rem;
        padding: 6px 12px;
    }

    .nav-logo {
        margin-left: 16px;
    }

    .nav-logo a {
        text-decoration: none !important;
        color: inherit;
    }
    
    .nav-logo a:hover,
    .nav-logo a:focus,
    .nav-logo a:visited {
        text-decoration: none !important;
        color: inherit;
    }

    .hero-slideshow {
        height: 70vh;
        min-height: 600px;
        margin-top: 72px;
    }

    .slide-content .container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        justify-items: center;
        align-items: center;
        height: 100%;
    }

    .text-only-slide {
        grid-template-columns: 1fr !important;
        text-align: center;
        justify-items: center;
        align-items: center;
        max-width: 100%;
        padding: 0 1rem;
        height: 100%;
    }
    
    .text-only-slide .slide-text {
        grid-column: 1;
        justify-self: center;
        align-self: center;
        max-width: 100%;
        text-align: center;
    }
    
    .text-only-slide::after {
        display: none;
    }
    
    .slide-text {
        grid-column: 1;
        justify-self: center;
        align-self: center;
        max-width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .slide-title {
        font-size: 1.75rem;
        margin-top: 1.5rem;
    }
    
    .slide-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .slide-buttons {
        justify-content: center;
        margin-top: 1.5rem;
        position: relative;
        z-index: 2;
        width: 100%;
    }
    
    .slide-buttons .btn {
        min-width: 140px;
        position: relative;
        z-index: 2;
    }
    
    .product-showcase {
       
    }
    
    .service-showcase,
    .quality-showcase {
        display: none;
    }
    
    /* Product Section Responsive */
    .product-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-gallery {
        position: static;
        top: auto;
        height: auto;
    }
    
    .main-image {
        height: 180px;
    }
    
    .product-content {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
    }
    
    .product-rating {
        gap: 0.3rem;
        font-size: 0.85rem;
    }
    
    .product-price {
        gap: 0.5rem;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .product-actions {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .product-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .features-grid,
    .specs-grid,
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-header h1 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .nav-container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        overflow-x: hidden;
    }
    
    .slide-content .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .text-only-slide {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .products .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .features .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .about .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .contact .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .footer .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    .product-detail .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 0.5rem;
        margin: 0;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-showcase {
        width: 220px;
        height: 220px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    }

    .service-showcase,
    .quality-showcase {
        width: 180px;
        height: 180px;
    }

    .product-content h3 {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1rem;
    }

    .main-image {
        height: 120px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }

    .product-badges {
        top: 1rem;
        left: 1rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .product-detail {
        padding: 80px 0 60px;
    }
    
    .product-gallery,
    .product-info {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .product-header h1 {
        font-size: 1.25rem;
    }
    
    .current-price {
        font-size: 1.25rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }

    .products {
        padding: 24px 0;
    }

    .product-content {
        padding: 0.5rem 0.5rem;
        gap: 0.7rem;
    }

    .product-rating {
        font-size: 0.8rem;
    }

    .product-price {
        gap: 0.3rem;
    }

    .product-actions {
        margin-top: 0.5rem;
        gap: 0.3rem;
    }

    .product-actions .btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .product-gallery {
        position: static;
        top: auto;
        height: auto;
    }
}

/* Enhanced Modal Overlay - Modern Google UI */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(32,33,36,0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2vw;
}

.modal-content {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 480px;
    width: 100%;
    padding: 0;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    min-width: 0;
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalIn {
    from { 
        opacity: 0; 
        transform: translateY(60px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(95, 99, 104, 0.1);
    border: none;
    font-size: 1.5rem;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-close:hover, .modal-close:focus {
    color: #ea4335;
    background: rgba(234, 67, 53, 0.1);
    transform: scale(1.1);
    outline: none;
}

.modal-title {
    font-family: 'Google Sans', 'Poppins', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #202124;
    margin: 0;
    padding: 32px 32px 24px 32px;
    text-align: center;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #e8eaed;
    background: #fafbfc;
}

.google-form-ui {
    padding: 32px;
    flex: 1;
    overflow-y: auto;
    background: #ffffff;
}

.google-form-ui .form-group,
.google-form-ui .form-row {
    margin-bottom: 24px;
}

.google-form-ui label {
    font-size: 0.875rem;
    color: #5f6368;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-family: 'Google Sans', Arial, sans-serif;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.google-form-ui input,
.google-form-ui select,
.google-form-ui textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #dadce0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Google Sans', Arial, sans-serif;
    background: #ffffff;
    color: #202124;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-weight: 400;
}

.google-form-ui input:hover,
.google-form-ui select:hover,
.google-form-ui textarea:hover {
    border-color: #1a73e8;
    background: #f8f9fa;
}

.google-form-ui input:focus,
.google-form-ui select:focus,
.google-form-ui textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
    background: #ffffff;
}

.google-form-ui input::placeholder,
.google-form-ui textarea::placeholder {
    color: #9aa0a6;
    font-weight: 400;
}

.google-form-ui textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.google-form-ui .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.google-form-ui .form-row .form-group {
    margin-bottom: 0;
}

.google-form-ui .btn-submit {
    width: 100%;
    margin-top: 32px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.25px;
    text-transform: uppercase;
    font-family: 'Google Sans', Arial, sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.google-form-ui .btn-submit::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 ease;
}

.google-form-ui .btn-submit:hover::before {
    left: 100%;
}

.google-form-ui .btn-submit:hover, 
.google-form-ui .btn-submit:focus {
    background: #1557b0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.google-form-ui .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* Custom select styling */
.google-form-ui select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        height: 85vh;
        max-height: 85vh;
        border-radius: 24px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding: 24px 24px 20px 24px;
    }
    
    .google-form-ui {
        padding: 24px;
    }
    
    .google-form-ui .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98vw;
        height: 90vh;
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .modal-title {
        font-size: 1.25rem;
        padding: 20px 20px 16px 20px;
    }
    
    .google-form-ui {
        padding: 20px;
    }
    
    .google-form-ui input,
    .google-form-ui select,
    .google-form-ui textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .google-form-ui .btn-submit {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    background: #128c7e;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #202124;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eaed;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.notification-success {
    background: #e6f4ea;
    border-color: #34a853;
    color: #137333;
}

.notification-success .notification-content i {
    color: #34a853;
}

.notification-error {
    background: #fce8e6;
    border-color: #ea4335;
    color: #c5221f;
}

.notification-error .notification-content i {
    color: #ea4335;
}

.notification-info {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #174ea6;
}

.notification-info .notification-content i {
    color: #1a73e8;
}

/* Mobile responsive notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-buy-now,
    .btn-get-quote {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .quantity-selector {
        padding: 1rem;
    }
    
    .quantity-controls {
        max-width: 160px;
    }
    
    .quantity-controls button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    #quantity {
        height: 32px;
        font-size: 0.875rem;
    }
}

/* Product card share button specific styles */
.product-actions .btn-share {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1rem;
    background: linear-gradient(135deg, #34a853, #0f9d58);
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-actions .btn-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-actions .btn-share:hover {
    background: linear-gradient(135deg, #0f9d58, #0b8043);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4);
    transform: translateY(-3px) scale(1.1);
}

.product-actions .btn-share:hover::before {
    opacity: 1;
}

.product-actions .btn-share i {
    font-size: 1.2rem;
    color: white;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.product-actions .btn-share:hover i {
    transform: scale(1.1);
}

.product-actions .btn-quote {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
    min-width: 140px;
    width: auto;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-actions .btn-quote::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 ease;
}

.product-actions .btn-quote:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
    color: white;
    transform: translateY(-3px);
}

.product-actions .btn-quote:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .products,
    .products-grid,
    .product-card {
        width: 90vw !important;
        max-width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow-x: visible !important;
    }
}
@media (max-width: 480px) {
    .products,
    .products-grid,
    .product-card {
        width: 90vw !important;
        max-width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow-x: visible !important;
    }
}

@media (min-width: 769px) {
  .products-scroll-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    /* Height will be set by JS for scroll effect */
  }
  .products-scroll-area {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .product-scroll-step {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .product-scroll-step .product-card {
    position: sticky;
    top: 10vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
    transform: scale(0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .product-scroll-step.active .product-card {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .product-scroll-step:not(.active) .product-card {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
  }
}

@media (max-width: 768px) {
  .products-scroll-wrapper,
  .products-scroll-area {
    position: static !important;
    height: auto !important;
    min-height: unset !important;
  }
  .product-scroll-step {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    pointer-events: auto !important;
  }
  .product-scroll-step .product-card {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    margin-bottom: 1.5rem;
  }
  .product-scroll-step:not(.active) .product-card {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 769px) {
  .sticky-product-card {
    position: sticky;
    top: 10vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    min-height: 400px;
    display: block;
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-products {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sticky-product-card {
    display: none !important;
  }
  .mobile-products {
    display: block !important;
  }
}

/* Modern Product Section Styles */
.modern-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
.modern-product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
  padding: 0 0 1.5rem 0;
}
.modern-product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(26,115,232,0.12);
}
.modern-product-image {
  width: 100%;
  aspect-ratio: 1.2/1;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modern-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.modern-product-info {
  padding: 1.25rem 1.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.modern-product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #202124;
}
.modern-product-description {
  color: #5f6368;
  font-size: 1rem;
  margin-bottom: 1rem;
  flex: 1;
}
.modern-product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 1.25rem;
}
.modern-product-price .original-price {
  color: #9aa0a6;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.75rem;
}
.modern-product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.modern-product-actions .btn {
  flex: 1;
  padding: 0.85rem 0;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.modern-product-actions .btn-primary {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
  border: none;
}
.modern-product-actions .btn-primary:hover {
  background: linear-gradient(135deg, #1557b0, #1a73e8);
}
.modern-product-actions .btn-secondary {
  background: #f1f3f4;
  color: #1a73e8;
  border: 1px solid #e8eaed;
}
.modern-product-actions .btn-secondary:hover {
  background: #e8f0fe;
  color: #1557b0;
}
@media (max-width: 1024px) {
  .modern-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .modern-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1rem 0;
  }
  .modern-product-card {
    padding: 0 0 1rem 0;
  }
  .modern-product-info {
    padding: 1rem 1rem 0 1rem;
  }
  .modern-product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .modern-product-actions .btn {
    width: 100%;
    font-size: 1.05rem;
  }
}

.footer, .footer * {
    color: #5f6368 !important;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
        padding: 0.25rem 0;
    }
    
    /* Hide any social media icons on mobile */
    .social-links {
        display: none !important;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    /* Ensure social media icons are hidden on small mobile */
    .social-links {
        display: none !important;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #e8eaed;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: #fff;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text h4 i {
    color: #ffd700;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e8eaed;
    margin: 0;
}

.cookie-text a {
    color: #4285f4;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #5a9eff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.cookie-actions .btn-primary {
    background: #4285f4;
    color: #fff;
}

.cookie-actions .btn-primary:hover {
    background: #3367d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.cookie-actions .btn-secondary {
    background: transparent;
    color: #e8eaed;
    border: 1px solid #5f6368;
}

.cookie-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e8eaed;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text h4 {
        justify-content: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions .btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-actions .btn {
        max-width: none;
        width: 100%;
    }
}