/* Product Detail Styles - Clean & Premium */

/* Container */
.product-detail-page {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    padding: 40px 0;
}

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

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}

/* Left Column - Product Images */
.product-images-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zoom-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.zoom-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Thumbnails */
.thumbnails-row {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail:hover {
    border-color: #ccc;
}

.thumbnail.active {
    border-color: #00A896;
}

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

/* Right Column - Product Information */
.product-details {
    flex: 1;
    min-width: 300px;
}

/* Title */
.product-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #222;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* Ratings */
.rating-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700; /* Gold */
    margin-right: 10px;
    font-size: 18px;
}

.reviews-count {
    color: #666;
    font-size: 14px;
}

/* Price Block */
.price-block {
    margin-bottom: 20px;
}

.current-price {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin: 5px 0;
}

.savings {
    color: #00A896; /* Green */
    font-weight: 600;
    font-size: 14px;
}

/* Stock Info */
.stock-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 8px 15px;
    background-color: rgba(0, 168, 150, 0.1);
    border-radius: 6px;
    width: fit-content;
}

.stock-info.success i {
    color: #00A896;
    margin-right: 8px;
}

.bottom-stock {
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Delivery Info */
.delivery-info {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.delivery-info i {
    margin-right: 8px;
    color: #777;
}

/* Product Description */
.product-description {
    margin: 20px 0;
    line-height: 1.6;
    color: #555;
}

/* Key Features */
.key-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.key-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.success-icon {
    color: #00A896;
    margin-right: 10px;
    font-size: 14px;
}

/* Product Options */
.product-options {
    margin: 25px 0;
}

.option-section {
    margin-bottom: 20px;
}

.option-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

/* Storage Options */
.storage-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.storage-btn {
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.storage-btn span {
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}

.storage-btn:hover {
    border-color: #00A896;
}

.storage-btn.active {
    border-color: #00A896;
    background-color: rgba(0, 168, 150, 0.1);
}

/* Color Options */
.color-options {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px #00A896;
}

.selected-color {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* Purchase Section */
.purchase-section {
    margin: 25px 0;
}

/* Quantity Controls */
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity label {
    margin-right: 15px;
    color: #555;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.qty-input {
    width: 45px;
    height: 30px;
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Purchase Button */
.purchase-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #00A896;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-btn i {
    margin-right: 10px;
}

.purchase-btn:hover {
    background: #008d80;
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.payment-secure {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.payment-secure i {
    margin-right: 8px;
    color: #555;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-methods img {
    height: 30px;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-images-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 15px 0;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .current-price {
        font-size: 22px;
    }
    
    .thumbnails-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        width: 65px;
        height: 65px;
    }
    
    .storage-options {
        gap: 8px;
    }
    
    .storage-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .color-btn {
        width: 25px;
        height: 25px;
    }
}

/* Product Info Tabs Section */
.product-info-tabs {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tabs-header {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaecef;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding: 0 5px;
}

.tabs-header::-webkit-scrollbar {
    height: 4px;
}

.tabs-header::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.tab-btn {
    padding: 18px 25px;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #00A896;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #00A896;
}

.tab-btn:hover::after {
    width: 70%;
}

.tab-btn.active {
    color: #00A896;
    background-color: rgba(0, 168, 150, 0.08);
}

.tab-btn.active::after {
    width: 90%;
}

.tab-content {
    display: none;
    padding: 35px 30px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content h2 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #333;
    font-weight: 600;
}

.tab-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
    max-width: 800px;
}

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

/* Overview Tab */
.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #00A896, #00C2AD);
    transition: height 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.feature-item:hover::before {
    height: 100%;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.12), rgba(0, 168, 150, 0.18));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: #00A896;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 168, 150, 0.1);
}

.feature-icon i {
    font-size: 20px;
}

.feature-text h4 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Specifications Tab */
.specs-group {
    margin-bottom: 35px;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaecef;
    overflow: hidden;
}

.specs-group h3 {
    font-size: 18px;
    margin: 0;
    padding: 16px 20px;
    background-color: #f8f9fa;
    color: #333;
    border-bottom: 1px solid #eaecef;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}

.specs-table tr:nth-child(odd) {
    background-color: rgba(249, 250, 251, 0.6);
}

.specs-table tr:hover {
    background-color: rgba(0, 168, 150, 0.03);
}

.specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eaecef;
    font-size: 15px;
    line-height: 1.5;
}

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

.specs-table td:first-child {
    width: 35%;
    font-weight: 500;
    color: #333;
}

.specs-table td:last-child {
    color: #555;
    font-weight: 400;
}

/* Box Contents Tab */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.content-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaecef;
}

.content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 168, 150, 0.2);
}

.content-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
}

.content-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.content-text {
    flex: 1;
}

.content-text h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.content-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Condition Tab */
.condition-info {
    margin-bottom: 35px;
}

.condition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.condition-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaecef;
    position: relative;
    overflow: hidden;
}

.condition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.condition-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 70%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 0 0 0 100px;
}

.condition-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.condition-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 168, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #00A896;
    flex-shrink: 0;
}

.condition-grade {
    background-color: #00A896;
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-left: auto;
    letter-spacing: 0.5px;
}

.warranty-box {
    background-color: #f8f9fa;
    border: 1px solid #eaecef;
    border-left: 4px solid #00A896;
    padding: 20px 25px;
    margin-top: 20px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.warranty-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.warranty-icon {
    color: #00A896;
    margin-right: 10px;
    font-size: 18px;
}

.warranty-box h4 {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    color: #333;
}

.warranty-box h4 i {
    margin-right: 10px;
    color: #00A896;
}

.condition-checklist {
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.condition-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.condition-checklist li i {
    color: #00A896;
    margin-right: 10px;
    font-size: 16px;
}

/* Reviews Tab */
.reviews-section {
    margin-top: 20px;
}

.reviews-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 35px;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaecef;
}

.reviews-average {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    position: relative;
}

.reviews-average::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #eaecef;
    display: none;
}

@media (min-width: 768px) {
    .reviews-average::after {
        display: block;
    }
}

.average-rating {
    display: flex;
    align-items: flex-end;
    margin: 0 0 8px;
}

.rating-score {
    display: flex;
    align-items: baseline;
}

.rating-number {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.rating-max {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-left: 2px;
}

.rating-stars-large {
    font-size: 20px;
    color: #00A896;
    margin: 6px 0 10px;
    letter-spacing: 1px;
}

.total-reviews {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.ratings-count {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.2px;
}

.ratings-count span {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-right: 2px;
}

.rating-bars {
    flex: 2;
    min-width: 300px;
}

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

.rating-level {
    display: flex;
    align-items: center;
    width: 60px;
    margin-right: 12px;
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

.rating-level-stars {
    color: #00A896;
    margin-right: 4px;
    font-size: 14px;
}

.rating-progress {
    flex-grow: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.rating-percentage {
    height: 100%;
    background: linear-gradient(to right, #00A896, #00C2AD);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
    transition: width 0.8s ease;
    opacity: 0.9;
}

.rating-count {
    min-width: 40px;
    text-align: right;
    margin-left: 12px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.reviews-list {
    margin-top: 40px;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.review-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaecef;
    transition: all 0.25s ease;
    margin-bottom: 5px;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 168, 150, 0.1);
}

.reviewer-avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.reviewer-info {
    line-height: 1.3;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 168, 150, 0.1);
    color: #00A896;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 500;
}

.verified-badge i {
    font-size: 10px;
    margin-right: 3px;
}

.review-date {
    color: #666;
    font-size: 13px;
}

.review-rating {
    display: flex;
    align-items: center;
    background-color: rgba(0, 168, 150, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.review-stars {
    color: #00A896;
    margin-right: 5px;
    font-size: 14px;
    letter-spacing: -1px;
}

.review-text {
    color: #444;
    line-height: 1.7;
    margin: 15px 0;
    font-size: 15px;
}

.review-photos {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f8f9fa;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.load-more-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 30px auto 0;
    padding: 12px 20px;
    background-color: #fff;
    border: 1px solid #00A896;
    color: #00A896;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #00A896;
    color: white;
}

/* Responsive Adjustments for Tabs */
@media (max-width: 768px) {
    .tabs-header {
        flex-wrap: nowrap;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .overview-features, 
    .box-contents {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .specs-table td {
        padding: 10px;
    }
    
    .average-rating {
        font-size: 48px;
    }
    
    .rating-stars-large {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .overview-features,
    .box-contents {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reviews-average {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .reviews-overview {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-date {
        margin-top: 5px;
    }
}

/* Price Comparison Section Styling */
.price-comparison-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.price-comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.price-comparison-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.comparison-subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.price-comparison-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 0;
    border: 1px solid #eaecef;
}

.product-info {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #eaecef;
    background-color: transparent;
}

.product-image {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: transparent;
}

.product-name {
    font-weight: 500;
    color: #00A896;
    text-align: center;
    font-size: 16px;
}

.comparison-list {
    padding: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    border-bottom: 1px solid #eaecef;
    transition: background-color 0.2s ease;
}

.comparison-item:hover:not(.our-price) {
    background-color: rgba(0, 0, 0, 0.01);
}

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

.our-price {
    background-color: rgba(0, 168, 150, 0.04);
    border-left: 4px solid #00A896;
}

.provider {
    display: flex;
    align-items: center;
}

.provider-logo {
    font-weight: 500;
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 10px;
}

.provider-logo:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ccc;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

.provider-logo.renewly:before {
    background-color: #00A896;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.our-price .price {
    color: #00A896;
    font-size: 22px;
    font-weight: 700;
}

.price-tag {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background-color: #00A896;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

.price-diff {
    display: inline-block;
    font-size: 12px;
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    font-weight: 500;
}

.comparison-footer {
    padding: 16px 25px;
    background-color: #f9f9f9;
    border-top: 1px solid #eaecef;
    font-size: 13px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.last-updated {
    margin-bottom: 8px;
}

.last-updated i, .price-guarantee i {
    color: #00A896;
    margin-right: 4px;
}

.price-guarantee {
    font-weight: 500;
    color: #555;
}

/* Responsive styles for price comparison */
@media (max-width: 768px) {
    .price-comparison-section {
        padding: 40px 15px;
    }
    
    .price-comparison-container h2 {
        font-size: 24px;
    }

    .comparison-item {
        padding: 14px 20px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .comparison-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-info {
        text-align: left;
        margin-top: 8px;
        margin-left: 14px;
    }
    
    .price-comparison-container h2 {
        font-size: 22px;
    }
    
    .product-name {
        font-size: 15px;
    }
}

/* Recommended Products Section Styling */
.recommended-products-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.section-subtitle {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.product-slider-container {
    position: relative;
    padding: 0 40px;
    margin: 25px 0 15px;
    overflow: visible;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.5), rgba(240, 245, 248, 0.2));
    border-radius: 12px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #eaecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    opacity: 1 !important;
}

.prev-btn {
    left: 0px;
}

.next-btn {
    right: 0px;
}

.slider-nav:hover {
    background-color: #00A896;
    color: #fff;
}

.product-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
}

.product-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-slide {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(5px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    text-transform: uppercase;
    color: #fff;
}

.product-badge.popular {
    background-color: #00A896;
}

.product-badge.sale {
    background-color: #e74c3c;
}

.product-badge.new {
    background-color: #3498db;
}

.product-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 5px;
    position: relative;
    background: transparent;
    overflow: visible;
}

.product-slide .product-image img {
    max-height: 140px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 1 !important;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    mix-blend-mode: multiply;
    /* Extra offset om ruimte te creëren voor productafbeeldingen */
    transform: translateY(-5px);
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
    letter-spacing: -0.2px;
}

.product-specs {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-pricing {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #00A896;
    margin-right: 8px;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.stars {
    color: #00A896;
    margin-right: 5px;
    font-size: 12px;
}

.review-count {
    color: #777;
}

.btn-view {
    display: block;
    background-color: #00A896;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-top: auto;
    transition: background-color 0.2s ease;
}

.btn-view:hover {
    background-color: #008C7E;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background-color: #00A896;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(0, 168, 150, 0.5);
}

/* Verbeterde afbeelding transparantie */
.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

/* Responsive styles for product slider */
@media (max-width: 1024px) {
    .product-image {
        height: 130px;
    }
    
    .product-slide .product-image img {
        max-height: 130px;
    }
}

@media (max-width: 768px) {
    .recommended-products-section {
        padding: 40px 15px;
    }
    
    /* Breedte van product-slide wordt dynamisch ingesteld via JavaScript */
    
    .product-image {
        height: 120px;
    }
    
    .product-slide .product-image img {
        max-height: 120px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Verbeterde navigatie knoppen op mobiel */
    .slider-nav {
        width: 32px;
        height: 32px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 110px;
    }
    
    .product-slide .product-image img {
        max-height: 110px;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .slider-nav {
        width: 28px;
        height: 28px;
    }
}
