:root {
    --color-primary: #0072CE;
    --color-primary-dark: #003B73;
    --color-accent: #F5A623;
    --color-accent-dark: #D4860A;
    --color-success: #10B981;
    --color-success-dark: #059669;
    --color-bg-light: #E6F1FB;
    --color-bg-extra-light: #F9FAFB;
    --color-text: #1A1A1A;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    background: #fff;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Social Share Buttons */
.social-share-buttons-mobile {
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.social-share-title {
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 10px;
    text-align: center;
}

.social-buttons-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    font-family: 'Manrope', sans-serif;
    flex-shrink: 0;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.social-btn svg {
    flex-shrink: 0;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.whatsapp:hover {
    background: #1ec756;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-btn.twitter {
    background: #000000;
}

.social-btn.twitter:hover {
    background: #1a1a1a;
}

.social-btn.pinterest {
    background: #E60023;
}

.social-btn.pinterest:hover {
    background: #d4001f;
}

/* Desktop - VERBERG social buttons */
@media (min-width: 769px) {
    .social-share-buttons-mobile {
        display: none !important;
    }
}

/* Mobile - TOON social buttons onder prijs alert */
@media (max-width: 768px) {
    .social-share-buttons-mobile {
        display: block;
    }
    
    .social-btn {
        width: 38px;
        height: 38px;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .social-share-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .social-buttons-grid {
        gap: 6px;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
    }
    
    .social-btn svg {
        width: 16px;
        height: 16px;
    }
}

.skeleton-image {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
}

.skeleton-text {
    height: 20px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.skeleton-title {
    height: 32px;
    width: 80%;
    border-radius: 4px;
    margin-bottom: 16px;
}

.content-loading {
    opacity: 0;
}

.content-loaded {
    opacity: 1;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    padding-top: 25px;
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: var(--color-text-light);
}

.breadcrumbs .current {
    color: var(--color-text);
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-header {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    align-items: start;
}

.product-images {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	gap: 12px;
    border: 2px solid #E6F1FB;
    border-radius: 8px;
    position: relative;
	max-height: 500px;
}

.savings-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    animation: slideIn 0.5s ease-out 0.3s both;
}

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

.price-alert-btn {
    width: 100%;
    max-width: 380px;
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.price-alert-btn:hover {
    background: var(--color-accent-dark);
}

.mobile-price-alert-btn {
    display: none;
    width: 100%;
    max-width: 100%;
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mobile-price-alert-btn:hover {
    background: var(--color-accent-dark);
}

.main-image {
    width: 380px;
    height: 350px;
    object-fit: contain;
}

.product-info {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.product-listings-inline {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-grow: 1;
    justify-content: flex-end;
}

.listing-card-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    min-height: 80px;
}

.listing-card-inline.cheapest {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0) 100%);
    border-left: 4px solid #10B981;
    padding: 10px 0 10px 12px;
    margin-left: -16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.listing-card-inline:first-child:not(.cheapest) {
    padding-top: 0;
}

.listing-card-inline:last-child {
    border-bottom: none;
}

.expand-listings-btn, .collapse-listings-btn {
    margin-top: 16px;
    width: 100%;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.expand-listings-btn:hover, .collapse-listings-btn:hover {
    background: var(--color-bg-light);
}

.listing-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.provider-logo {
    width: 80px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.provider-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.provider-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.delivery-time {
    font-size: 13px;
    color: var(--color-text-light);
}

.listing-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.listing-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 140px;
}

.listing-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    min-width: 120px;
    text-align: right;
}

.listing-savings {
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
}

.cta-button {
    background: var(--color-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    gap: 6px;
}

.cta-button:hover {
    background: var(--color-primary-dark);
}

.cta-button.cheapest {
    background: var(--color-success);
}

.cta-button.cheapest:hover {
    background: var(--color-success-dark);
}

.specs-section {
    background: white;
    margin-bottom: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.specs-sidebar {
    background: white;
    height: fit-content;
    position: sticky;
    top: 24px;
}

.specs-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.quick-info-item:first-child {
    padding-top: 0;
}

.quick-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-info-label {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.quick-info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.specs-main {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.specs-search {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-extra-light);
}

.search-input-specs {
    width: 100%;
    background-color: white;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.search-input-specs:focus {
    outline: none;
    border-color: var(--color-primary);
}

.specs-list {
    padding: 0;
}

.spec-category {
    border-bottom: 1px solid var(--color-border);
}

.spec-category:last-child {
    border-bottom: none;
}

.spec-category.hidden {
    display: none;
}

.category-header {
    padding: 16px 24px;
    background: var(--color-bg-extra-light);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.category-header:hover {
    background: var(--color-bg-light);
}

.category-arrow {
    transition: transform 0.2s ease;
    color: var(--color-text-light);
}

.spec-category.collapsed .category-arrow {
    transform: rotate(-90deg);
}

.category-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-border);
}

.spec-category.collapsed .category-items {
    display: none;
}

.spec-item {
    background: white;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-item.hidden {
    display: none;
}

.spec-key {
    color: var(--color-text-light);
    font-size: 13px;
    font-weight: 500;
}

.spec-value {
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
}

.spec-value mark {
    background-color: #F5A623;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

.no-results {
    padding: 48px 24px;
    text-align: center;
    color: var(--color-text-light);
}

.no-results.hidden {
    display: none;
}

.related-products-section {
    background: white;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.related-products-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-text);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #E6F1FB;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    transition: box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
}

.product-card-skeleton {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #E6F1FB;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.product-card-skeleton .skeleton-image {
    height: 300px;
    width: 100%;
}

.product-card-skeleton .skeleton-content {
    padding: 16px;
}

.product-card-skeleton .skeleton-title {
    height: 48px;
    width: 100%;
    margin-bottom: 12px;
}

.product-card-skeleton .skeleton-price {
    height: 24px;
    width: 100px;
    margin-bottom: 16px;
}

.product-card-skeleton .skeleton-button {
    height: 44px;
    width: 100%;
}

.product-image-container {
    position: relative;
    height: 300px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.elementor img {
    border: none;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.product-discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-success);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 16px;
    font-weight: 500;
}

.product-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-current-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: var(--color-primary);
}

.product-original-price {
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    color: #A5A5A5;
    text-decoration: line-through;
}

.product-cta {
    padding: 8px;
    padding-top: 0;
}

.product-cta-button {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-cta-button:hover {
    background: var(--color-primary-dark);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--color-bg-extra-light);
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-input.error {
    border-color: #DC2626;
}

.error-message {
    color: #DC2626;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.error-message.active {
    display: block;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover:not(:disabled) {
    background: var(--color-primary-dark);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    background: #D1FAE5;
    border: 1px solid #10B981;
    color: #065F46;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: none;
}

.success-message.active {
    display: block;
}

.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 48px 24px;
    animation: fadeIn 0.5s ease-in;
}

.error-animation {
    margin-bottom: 32px;
}

.error-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 114, 206, 0.15));
}

.error-circle {
    animation: drawCircle 1s ease-out forwards;
}

.error-search {
    animation: fadeInScale 0.4s ease-out 0.8s forwards;
    transform-origin: center;
}

.error-handle {
    animation: fadeInSlide 0.3s ease-out 1s forwards;
}

.error-cross-1 {
    animation: fadeInRotate 0.3s ease-out 1.2s forwards;
    transform-origin: center;
}

.error-cross-2 {
    animation: fadeInRotate 0.3s ease-out 1.3s forwards;
    transform-origin: center;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    animation: slideUp 0.5s ease-out 0.3s both;
}

.error-description {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
    animation: slideUp 0.5s ease-out 0.4s both;
}

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

.error-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.5s ease-out 0.5s both;
}

.error-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.error-button-primary {
    background: var(--color-primary);
    color: white;
}

.error-button-primary:hover {
    background: var(--color-primary-dark);
}

.error-button-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.error-button-secondary:hover {
    background: var(--color-bg-light);
}

.error-suggestions {
    animation: slideUp 0.5s ease-out 0.6s both;
}

.error-suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.error-suggestions-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-tag {
    padding: 8px 16px;
    background: var(--color-bg-extra-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-tag:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ============================================
   FAQ & PRODUCT DESCRIPTION - SIDE BY SIDE
   ============================================ */

.faq-description-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: white;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

/* FAQ Section - Left Side */
.faq-section {
    background: white;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-text);
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.faq-answer p {
    margin: 0 0 10px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Product Description - Right Side */
.product-description-section {
    background: var(--color-bg-extra-light);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.product-description-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
    line-height: 1.2;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Product Intro - Top of page */
.product-intro {
    background: var(--color-bg-extra-light);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-left: 4px solid var(--color-primary);
}

.product-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

/* Lightbox styles */
.lightbox-content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--color-text);
    border: none;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lightbox-close:hover {
    background: var(--color-bg-extra-light);
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 40px;
    min-height: 400px;
    max-height: calc(90vh - 100px);
    background: white;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: default;
}

.lightbox-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    background: white;
    border-top: 1px solid var(--color-border);
}

.lightbox-prev,
.lightbox-next {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary-dark);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--color-border);
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    background: var(--color-border);
}

.lightbox-counter {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    min-width: 70px;
    text-align: center;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 968px) {

@media (max-width: 968px) {
    .faq-section {
        padding: 24px 16px 0;
        margin-top: 24px;
    }
    
    .faq-section h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
}

.product-intro {
	display: none;
    background: var(--color-bg-extra-light);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-left: 4px solid var(--color-primary);
}

.product-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

.product-description-section {
    background: white;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.product-description-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.faq-answer p {
    margin: 0 0 8px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .product-intro {
        margin: 16px 0 24px;
        padding: 14px 16px;
    }
    
    .product-description-section {
        padding: 24px 16px 0;
        margin-top: 24px;
    }
    
    .product-description-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .description-content p {
        font-size: 14px;
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    animation: slideUp 0.5s ease-out 0.3s both;
}

.error-description {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
    animation: slideUp 0.5s ease-out 0.4s both;
}

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

.error-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.5s ease-out 0.5s both;
}

.error-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.error-button-primary {
    background: var(--color-primary);
    color: white;
}

.error-button-primary:hover {
    background: var(--color-primary-dark);
}

.error-button-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.error-button-secondary:hover {
    background: var(--color-bg-light);
}

.error-suggestions {
    animation: slideUp 0.5s ease-out 0.6s both;
}

.error-suggestions-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.error-suggestions-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-tag {
    padding: 8px 16px;
    background: var(--color-bg-extra-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-tag:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--color-text);
    border: none;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lightbox-close:hover {
    background: var(--color-bg-extra-light);
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 40px;
    min-height: 400px;
    max-height: calc(90vh - 100px);
    background: white;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: default;
}

.lightbox-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
    background: white;
    border-top: 1px solid var(--color-border);
}

.lightbox-prev,
.lightbox-next {
    background: var(--color-primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-primary-dark);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--color-border);
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    background: var(--color-border);
}

.lightbox-counter {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    min-width: 70px;
    text-align: center;
}

@media (max-width: 968px) {
	
	.main-image {
		width: 300px;
		height: 350px;
		object-fit: contain;
	}
	
    .product-page {
        padding: 0;
    }
    
    .breadcrumbs {
        margin-bottom: 16px;
        padding-top: 10px;
    }
    
    .product-header {
        grid-template-columns: 1fr;
        border-radius: 0;
        margin-bottom: 0;
    }
    
    .product-images {
        border: 2px solid #E6F1FB;
        border-radius: 8px;
    }
    
    .product-info {
        padding: 0;
    }
    
    .product-images .price-alert-btn {
        display: none;
    }
    
    .brand.content-loaded,
    .product-title.content-loaded {
        display: none !important;
    }
    
    .product-listings-inline {
        background: #f9fafb;
    }
    
    .listing-card-inline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        align-items: flex-start;
        padding: 16px;
        background: white;
        margin-bottom: 1px;
        min-height: auto;
    }
    
    .listing-card-inline:first-child:not(.cheapest) {
        padding-top: 16px;
    }
    
    .listing-card-inline.cheapest {
        background: white;
        border-left: none;
        border-top: none;
        border-bottom: 3px solid #10B981;
        margin-left: 0;
        padding: 16px;
        border-radius: 0;
        display: flex;
        align-items: flex-start;
    }
    
    .listing-left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .provider-logo {
        width: 60px;
        height: 30px;
    }
    
    .provider-info {
        flex: 1;
    }
    
    .provider-name {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 2px;
    }
    
    .delivery-time {
        font-size: 13px;
    }
    
    .listing-right {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        align-items: flex-end;
        justify-content: space-between;
    }
    
    .listing-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    .listing-price {
        font-size: 24px;
        min-width: auto;
        text-align: left;
        line-height: 1.2;
    }
    
    .listing-savings {
        font-size: 12px;
        align-self: flex-start;
        white-space: nowrap;
    }
    
    .cta-button {
        width: auto;
        min-width: 100px;
        max-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .specs-section {
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .specs-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .specs-sidebar {
        position: static;
        padding: 0 0 16px 0;
    }
    
    .specs-sidebar h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .category-items {
        grid-template-columns: 1fr;
    }

    .related-products-section {
        padding: 24px 16px 0;
        margin-top: 24px;
    }
    
    .related-products-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    
    .product-card {
        border: 1px solid #E6F1FB;
    }
    
    .product-card-title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .product-current-price {
        font-size: 20px;
    }
    
    .product-cta-button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .savings-badge {
        padding: 6px 12px;
        font-size: 11px;
        top: 12px;
        right: 12px;
    }
    
    .mobile-price-alert-btn {
        display: block !important;
        width: calc(100% - 32px);
        margin: 8px 16px 16px;
    }
    
    .expand-listings-btn,
    .collapse-listings-btn {
        margin: 8px 16px 0;
        width: calc(100% - 32px);
    }
    
    .product-image-container {
        height: 150px;
        padding: 12px;
    }
    
    .product-cta-button {
        padding: 10px 8px;
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-cta-button svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
	
	.main-image {
		width: 300px;
		height: 350px;
		object-fit: contain;
	}
	
    .lightbox-content {
        max-width: 95vw;
        border-radius: 8px;
    }
    
    .lightbox-image-container {
        padding: 60px 24px 24px;
        min-height: 300px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
	.main-image {
		width: 270px;
        height: 270px;
		object-fit: contain;
	}
	
    .product-page {
        padding: 16px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .listing-price {
        font-size: 24px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .error-button {
        width: 100%;
        justify-content: center;
    }
}