/**
 * Shop Stylesheet
 * Evolux Cards - Webshop specifieke styling
 * Premium, moderne layout voor producten en shop functionaliteit
 */

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ===== BANNER SECTION ===== */
.banner-section {
    padding: 0;
    margin: 0;
    background: var(--bg-white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: var(--transition);
    margin: 0;
    padding: 0;
}

.banner-link:hover {
    opacity: 0.95;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .banner-section {
        padding: 0;
        margin: 0;
    }
}

/* ===== SECTIONS ===== */
.categories-section,
.products-section,
.features-section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.section-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.section-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .categories-section,
    .products-section,
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.category-card:hover .category-name {
    color: var(--primary-color);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: none;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .feature-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs-section {
    background: var(--bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

.trust-badges-mobile {
    display: none;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.trust-badge span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-badge.sale-badge {
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.trust-badge.sale-badge i {
    color: white;
}

/* ===== PRODUCT RATING ===== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 18px;
}

.trustpilot-stars {
    height: 20px;
    width: auto;
    display: block;
}

.rating-text {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== IMAGE ZOOM ===== */
.image-zoom-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.image-zoom-btn:hover {
    background: white;
    transform: scale(1.1);
}

.main-image.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* ===== STOCK STATUS ===== */
.product-stock {
    margin: 20px 0;
}

.stock-low,
.stock-available,
.stock-unavailable {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.stock-low {
    background: #fef3c7;
    color: #92400e;
}

.stock-low i {
    color: #f59e0b;
}

.stock-available {
    background: #d1fae5;
    color: #065f46;
}

.stock-available i {
    color: #10b981;
}

.stock-unavailable {
    background: #fee2e2;
    color: #991b1b;
}

.stock-unavailable i {
    color: #ef4444;
}

/* ===== PRODUCT META ===== */
.product-meta {
    margin: 24px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
}

.meta-item i {
    font-size: 16px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.meta-item span {
    font-family: 'Fredoka One', cursive;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Hide mobile version on desktop */
.product-meta-mobile {
    display: none;
}

/* Show desktop version on desktop */
.product-meta-desktop {
    display: flex;
}

/* Meta content wrapper for desktop layout */
.meta-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.meta-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.meta-image-wrapper {
    flex-shrink: 0;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
}

.meta-trust-image {
    max-width: 120px;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: 0;
    padding-top: 0;
}

/* Responsive: Hide image on mobile */
@media (max-width: 768px) {
    .meta-image-wrapper {
        display: none;
    }
    
    .meta-content-wrapper {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
}

/* Mobile: Product Meta - Clean style under price */
@media (max-width: 768px) {
    /* Hide desktop version on mobile */
    .product-meta-desktop {
        display: none;
    }
    
    /* Show mobile version on mobile */
    .product-meta-mobile {
        display: flex;
        flex-direction: column;
        margin: 16px 0 0 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        gap: 10px;
        align-items: flex-start;
    }
    
    .product-meta-mobile .meta-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: none;
        text-align: left;
    }
    
    .product-meta-mobile .meta-item i {
        font-size: 16px;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #10b981;
        flex-shrink: 0;
    }
    
    .product-meta-mobile .meta-item span {
        font-size: 13px;
        font-weight: 400;
        color: var(--text-dark);
        line-height: 1.5;
        font-family: 'Fredoka One', cursive;
    }
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 32px;
    align-items: center;
}

.payment-icons i.fa-cc-visa {
    color: #1434CB;
}

.payment-icons i.fa-cc-mastercard {
    color: #EB001B;
}

.payment-icons i.fa-cc-paypal {
    color: #0070BA;
}

.payment-icons i.fa-cc-amex {
    color: #006FCF;
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* ===== PRODUCT TABS ===== */
.product-tabs-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.product-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 32px;
}

.tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ===== DETAILS GRID ===== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--text-gray);
}

.full-description {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    line-height: 1.8;
}

/* ===== SHIPPING INFO ===== */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-box i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-box p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews-summary {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 16px;
}

.rating-overview {
    text-align: center;
}

.rating-score {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.stars-large {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 32px;
    margin-bottom: 12px;
}

.trustpilot-stars-large {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.rating-overview p {
    font-size: 16px;
    color: var(--text-gray);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.review-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== RESPONSIVE TABS & REVIEWS ===== */
@media (max-width: 768px) {
    .tabs-header {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badge {
        font-size: 12px;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating-score {
        font-size: 48px;
    }
    
    .stars-large {
        font-size: 24px;
    }
    
    .info-box {
        flex-direction: column;
        gap: 12px;
    }
    
    .breadcrumbs {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .payment-icons {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
}

/* ===== FILTERS SECTION ===== */
.filters-section {
    background: var(--bg-light);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.filter-form,
.sort-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-select,
.sort-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.filter-select:focus,
.sort-select:focus {
    border-color: var(--primary-color);
}

.sort-label {
    font-weight: 500;
    color: var(--text-gray);
}

.products-info {
    margin-bottom: 24px;
}

.products-count {
    color: var(--text-gray);
    font-size: 15px;
}

@media (max-width: 768px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-form,
    .sort-form {
        width: 100%;
    }
    
    .filter-select,
    .sort-select {
        width: 100%;
    }
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 20px 0 60px 0;
    overflow-x: hidden;
    width: 100%;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    overflow-x: hidden;
}

.product-images {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-slider {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    touch-action: pan-y;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    position: relative;
}

.slide.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 350px;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    font-size: 18px;
    touch-action: manipulation;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-main-image {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    margin: 0 auto 20px auto;
    position: relative;
}

.main-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-image-placeholder.large {
    width: 100%;
    padding-top: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--text-light);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-images .product-description {
    margin-top: 30px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.product-images .product-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-images .product-description p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.product-description-mobile {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.product-description-mobile h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-description-mobile p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.product-info-detail {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.product-title {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.product-category-link {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-category-link i {
    color: var(--text-gray);
    font-size: 14px;
}

.product-category-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.product-category-link a:hover {
    text-decoration: underline;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-price-detail .price-current {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Klarna Payment Bar */
.klarna-payment-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.klarna-bar-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.klarna-bar-text {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.product-price-detail .price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discount {
    background: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.product-description {
    margin-bottom: 32px;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-description p {
    color: var(--text-gray);
    line-height: 1.8;
}

.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 48px;
    background: var(--bg-gray);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-controls input {
    width: 50px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.btn-add-to-cart-large {
    flex: 1;
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-add-to-cart-large i {
    font-size: 18px;
}

.product-stock {
    padding: 16px 0;
    background: transparent;
    margin-bottom: 24px;
}

.stock-available {
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-unavailable {
    color: #ef4444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 10px 0 40px 0;
    }
    
    .product-image-slider {
        max-width: 100%;
    }
    
    .slide img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
    }
    
    .trust-badges-mobile {
        display: flex;
        flex-direction: row;
        margin-bottom: 12px;
        padding: 10px;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .trust-badges-mobile .trust-badge {
        font-size: 9px;
        gap: 3px;
        flex: 0 0 auto;
        justify-content: center;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .trust-badges-mobile .trust-badge i {
        font-size: 11px;
    }
    
    .trust-badges-mobile .trust-badge span {
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-info-detail .trust-badges {
        display: none;
    }
    
    .product-images .product-description {
        display: none;
    }
    
    .product-description-mobile {
        display: block;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price-detail .price-current {
        font-size: 28px;
    }
    
    .product-price-detail .price-old {
        font-size: 20px;
    }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .quantity-selector {
        width: 100%;
        align-items: flex-start;
    }
    
    .btn-add-to-cart-large {
        width: 100%;
        min-width: unset;
    }
    
    .product-main-image {
        border-radius: 16px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 20px;
    }
    
    .product-price-detail .price-current {
        font-size: 24px;
    }
    
    .product-price-detail .price-old {
        font-size: 18px;
    }
    
    .quantity-controls {
        width: auto;
    }
    
    .quantity-controls input {
        width: 50px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-add-to-cart-large {
        width: 100%;
    }
}

/* ===== CART ===== */
.cart-section {
    padding: 60px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.cart-header {
    margin-bottom: 24px;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 24px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.cart-item-name a:hover {
    color: var(--primary-color);
}

.cart-item-category {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.cart-item-quantity .quantity-controls {
    width: auto;
}

.cart-item-quantity .quantity-controls input {
    width: 50px;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-unit {
    font-size: 14px;
    color: var(--text-gray);
}

.price-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-item-remove {
    display: flex;
    align-items: center;
}

.btn-remove {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.cart-summary-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.cart-summary-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
}

.summary-row span:first-child {
    color: var(--text-gray);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 24px 0;
}

.summary-total {
    font-size: 20px;
    margin-top: 8px;
}

.summary-total span:last-child {
    font-size: 24px;
    color: var(--primary-color);
}

.shipping-free {
    color: #10b981 !important;
}

.shipping-info {
    background: var(--primary-light);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-checkout,
.btn-continue {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: none;
    display: block;
}

/* Cart empty styles moved to cart.css */

@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-card {
        position: static;
    }
}

/* ===== RECOMMENDED PRODUCTS SECTION ===== */
.recommended-products-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.recommended-products-section .section-title {
    text-align: left;
    margin-bottom: 12px;
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
}

.recommended-products-section .section-subtitle {
    text-align: left;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .recommended-products-section {
        padding: 40px 0;
    }
    
    .recommended-products-section .section-title {
        font-size: 24px;
    }
    
    .recommended-products-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .recommended-products-section .section-title {
        font-size: 20px;
    }
    
    .recommended-products-section .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-quantity,
    .cart-item-price,
    .cart-item-remove {
        grid-column: 1 / -1;
    }
    
    .cart-item-quantity {
        justify-self: start;
    }
    
    .cart-item-price {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .cart-item-remove {
        justify-self: end;
    }
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

@media (max-width: 768px) {
    .notification {
        right: 16px;
        left: 16px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

