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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
}

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

/* Header - Mobile First */
.header {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo h1 {
    color: #8b1c9c;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: none;
    margin: 0;
    white-space: nowrap;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(139, 28, 156, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #8b1c9c;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
.nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.nav a {
    color: #8b1c9c;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: none;
    display: block;
    text-align: center;
}

.nav a:hover {
    background: linear-gradient(45deg, #ff007b, #8b1c9c);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
}

.hero::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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-size="12" text-anchor="middle" fill="rgba(255,255,255,0.1)">💕</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff007b, #d6006f);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 0, 123, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 123, 0.4);
    background: linear-gradient(45deg, #d6006f, #ff007b);
}

.cta-button i {
    margin-right: 8px;
    color: #faa700;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    font-weight: 600;
}

.section-title i {
    color: #faa700;
    margin-right: 10px;
    font-size: 2.2rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #d6006f;
    border-width: 1px;
}

.product-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: linear-gradient(45deg, #ff007b, #d6006f);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.3);
    z-index: 10;
}

.product-badge.runner-up {
    background: linear-gradient(45deg, #faa700, #ff5100);
}

.product-badge.portable {
    background: linear-gradient(45deg, #8b1c9c, #d6006f);
}

.product-badge i {
    margin-right: 5px;
    color: #faa700;
}

/* Mobile-First Product Layout */
.product-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Desktop Product Layout */
@media (min-width: 769px) {
    .product-layout {
        display: grid;
        grid-template-columns: 1fr 480px;
        gap: 0;
        align-items: start;
    }
    
    /* Hide mobile carousel on desktop */
    .mobile-carousel {
        display: none;
    }
    
    /* Show desktop grid on desktop */
    .product-image .image-grid {
        display: grid;
    }
}

.product-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}


.product-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.stars {
    color: #faa700;
    font-size: 0.9rem;
    display: flex;
    gap: 0.1rem;
    flex-shrink: 0;
}

.rating-text {
    color: #666;
    font-weight: 500;
}

.price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff007b;
    margin-right: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.product-description {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.highlight-item i {
    color: #d6006f;
    width: 20px;
    text-align: center;
}

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

/* Scoring Section - Simplified */
.scoring-section {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 3px solid #e9ecef;
}

.scoring-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0.8rem 1rem;
    background: linear-gradient(45deg, #ff007b, #d6006f);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.2);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-3px);
}

.criteria-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Score-based colors */
.criteria-icon.score-5 {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.criteria-icon.score-4 {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.criteria-icon.score-3 {
    background: linear-gradient(135deg, #fd7e14, #dc3545);
}

.criteria-icon.score-2 {
    background: linear-gradient(135deg, #dc3545, #6f42c1);
}

.criteria-icon.score-1 {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.criteria-icon.score-0 {
    background: linear-gradient(135deg, #6c757d, #343a40);
}

.criteria-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.criteria-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.score-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Testimonial Section */
.testimonial-section {
    background: #ffffff;
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    margin-top: 0;
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff007b;
    display: inline-block;
    width: 100%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff007b 0%, #d6006f 50%, #8b1c9c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-content::before {
    background: rgba(0,0,0,0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff007b;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-item:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    z-index: 2;
}

.testimonial-overlay p {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff007b, #d6006f);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 123, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #faa700, #ff5100);
    color: white;
    box-shadow: 0 4px 15px rgba(250, 167, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 167, 0, 0.4);
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    /* Ensure this section doesn't affect global overflow */
    overflow: visible;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Enable smooth scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Prevent affecting other sections */
    max-width: 100%;
}

.comparison-table table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    min-width: 180px;
    border-right: 8px solid #f8f9fa;
}

.comparison-table th:first-child {
    min-width: 140px;
    position: sticky;
    left: 0;
    z-index: 10;
    border-right: 8px solid #f8f9fa;
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 8px solid #f8f9fa;
    border-right: 8px solid #f8f9fa;
    font-weight: 500;
    white-space: nowrap;
    min-width: 180px;
    vertical-align: middle;
}

.comparison-table td:first-child {
    min-width: 140px;
    position: sticky;
    left: 0;
    background: white;
    z-index: 9;
    font-weight: 600;
    color: #2c3e50;
    border-right: 8px solid #f8f9fa;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
    border-right: none;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.comparison-table tr:nth-child(even) td:first-child {
    background: #f8f9fa;
}

/* Custom scrollbar styling for comparison table */
.comparison-table::-webkit-scrollbar {
    height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 15px 15px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: #8b1c9c;
    border-radius: 4px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #7a1889;
}


/* Visual indicator for scrollable content */
.comparison-table::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
    border-radius: 0 15px 15px 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .comparison-table {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem;
        min-width: 140px;
        font-size: 0.9rem;
        border-right: 4px solid #f8f9fa;
        border-bottom: 4px solid #f8f9fa;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 110px;
    }
    
    .highlight,
    .best-value {
        margin: 2px;
        border-radius: 8px !important;
    }
}

.highlight {
    background: linear-gradient(45deg, #ff007b, #d6006f) !important;
    color: white !important;
    font-weight: 700;
    border-radius: 12px !important;
    margin: 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 0, 123, 0.3);
}

.best-value {
    background: linear-gradient(45deg, #faa700, #ff5100) !important;
    color: white !important;
    font-weight: 700;
    border-radius: 12px !important;
    margin: 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(250, 167, 0, 0.3);
}

/* Guide Section */
.guide-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.guide-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d6006f;
}

.guide-item:nth-child(2) {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guide-item:nth-child(3) {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guide-item:nth-child(4) {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff007b;
}

.guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.guide-item p {
    line-height: 1.7;
    color: #5a6c7d;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e9ecef;
}

.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: #faa700;
}

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

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

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

.footer-section a:hover {
    color: #faa700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .nav {
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .nav ul {
        flex-direction: row;
        gap: 2rem;
        padding: 0;
    }
    
    .nav a {
        padding: 0.5rem 1rem;
        border-radius: 25px;
        text-align: left;
        font-weight: 500;
    }
    
    .nav a:hover {
        background: rgba(139, 28, 156, 0.1);
        color: #d6006f;
        box-shadow: 0 2px 8px rgba(139, 28, 156, 0.2);
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    
    .product-card {
        border: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin-bottom: 3rem;
    }
    
    .product-card:hover {
        border: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .product-image {
        padding: 1rem;
    }
    
    .product-image img {
        max-height: 220px;
    }
    
    .product-image .image-grid {
        gap: 8px;
    }
    
    .product-image .grid-item {
        padding: 8px;
    }
    
    .product-image .grid-item img {
        max-height: clamp(180px, 40vw, 220px);
    }
    
    .product-image .image-grid {
        gap: 10px;
    }
    
    .product-image .image-label {
        font-size: 0.8rem;
    }
    
    .product-details {
        padding: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .criteria-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .criteria-info h5 {
        font-size: 0.8rem;
    }
    
    .score-display {
        font-size: 1rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .scoring-section {
        padding: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .testimonial-section {
        padding: 1.5rem;
    }
    
    .testimonial-overlay p {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.affiliate-link:hover {
    animation: pulse 0.5s ease;
}

/* Floating Elements */
.hero::after {
    content: '💕';
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

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

/* Detailed Review Section */
.detailed-review {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff007b;
}

.detailed-review h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff007b;
}

.detailed-review p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.detailed-review strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Mobile Carousel Styles */
.mobile-carousel {
    display: block;
    width: 100%;
}

.main-image-container {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.main-image-container img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.main-image-container .image-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.thumbnail-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0.5rem;
}

.thumbnail {
    background: #fff;
    border: 3px solid #e9ecef;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thumbnail:hover {
    border-color: #8b1c9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 28, 156, 0.2);
}

.thumbnail.active {
    border-color: #8b1c9c;
    background: rgba(139, 28, 156, 0.05);
    box-shadow: 0 4px 12px rgba(139, 28, 156, 0.3);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* Desktop Image Grid Styles */
.product-image .image-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.product-image .grid-item {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image .grid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.product-image .grid-item img {
    max-width: 100%;
    max-height: clamp(200px, 24vw, 280px);
    object-fit: contain;
    display: block;
    border-radius: 6px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.product-image .image-label {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #5a6c7d;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

/* Switch to single column for better image viewing on smaller screens */
@media (max-width: 600px) {
    .product-image .image-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-image .grid-item {
        /* Height adapts to image content */
    }
    
    .product-image .grid-item img {
        max-height: 220px;
    }
}