<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #8BC34A;
    --accent-color: #FFC107;
    --text-color: #333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Product Page Layout */
.product-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

/* Product Info */
.product-info {
    padding: 1rem;
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.rating-count {
    color: #666;
}

.product-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

/* Product Highlights */
.product-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.highlight i {
    color: var(--primary-color);
}

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

.product-features h2,
.product-benefits h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.product-features li,
.product-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.product-features i,
.product-benefits i {
    color: var(--primary-color);
}

/* Product CTA Sections */
.product-cta,
.gallery-cta {
    text-align: center;
    margin: 2rem 0;
}

.gallery-cta {
    margin-top: 3rem;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.buy-button i {
    font-size: 1.4rem;
}

/* Customer Reviews */
.customer-reviews {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customer-reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.review-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.review-card .stars {
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card cite {
    font-weight: bold;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .product-cta,
    .gallery-cta {
        margin: 1.5rem 0;
    }

    .buy-button {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-container,
.review-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Product Gallery */
.product-gallery {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

/* Update responsive design for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}</pre></body></html>