/* ==================== PRODUCT DETAIL PAGE ==================== */

/* Header */
.product-header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-subtle);
}

.product-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-header .back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--cream-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-header .back-btn:hover {
    background: var(--primary-color);
    color: white;
}

.product-header .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.product-header .logo {
    width: 50px;
    height: 50px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.3rem;
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 500;
}

/* Main Content */
.product-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Loading State */
.loading-state {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.skeleton-gallery {
    aspect-ratio: 1;
    background: var(--cream-color);
    border-radius: var(--border-radius);
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 1rem 0;
}

.skeleton-block {
    background: var(--cream-color);
    border-radius: 8px;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-block.title { height: 32px; width: 70%; }
.skeleton-block.price { height: 28px; width: 35%; }
.skeleton-block.desc { height: 14px; width: 100%; }
.skeleton-block.desc-short { height: 14px; width: 60%; }
.skeleton-block.btn { height: 50px; width: 100%; margin-top: 8px; border-radius: 12px; }

.loading-spinner {
    display: none;
}

.loading-state p {
    display: none;
}

@media (max-width: 968px) {
    .loading-state {
        grid-template-columns: 1fr;
    }
}

/* Error State */
.error-state {
    text-align: center;
    padding: 4rem 2rem;
}

.error-state h2 {
    font-family: var(--font-elegant);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.back-to-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #2ab0c0);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-to-catalog:hover {
    box-shadow: 0 6px 20px rgba(32, 141, 154, 0.3);
}

/* Product Detail Container */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--cream-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: zoom-in;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s ease;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.product-main-image:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: #fff;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Zoom Button */
.gallery-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.product-main-image:hover .gallery-zoom-btn {
    opacity: 1;
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.product-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-track {
    background: var(--cream-color);
    border-radius: 2px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    cursor: pointer;
    padding: 0;
    background: var(--cream-color);
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.thumb-active {
    border-color: var(--primary-color);
    opacity: 1;
}

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

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    letter-spacing: 0.5px;
}

.lightbox-img-wrap {
    position: absolute;
    inset: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-img.zoomed {
    cursor: grab;
}

.lightbox-img.zoomed:active {
    cursor: grabbing;
}

/* Product Info */
.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
}

.product-title-detail {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}

.product-price-detail {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price-detail::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: gentle-pulse 2s ease-in-out infinite;
}

.price-compare-detail {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.6;
}

.product-description-full {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--cream-color);
    border-radius: var(--border-radius);
}

/* Benefits Section */
.product-benefits {
    background: var(--white-surface);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-subtle);
}

.benefits-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-color);
}

.benefits-title svg {
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--beige-color);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #2ab0c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Ingredients Section */
.product-ingredients {
    background: var(--white-surface);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-subtle);
}

.ingredients-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-color);
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ingredient-tag {
    background: linear-gradient(135deg, var(--cream-color), var(--beige-color));
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ingredient-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), #2ab0c0);
    color: white;
}

/* CTA Section */
.product-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream-color), var(--beige-color));
    border-radius: var(--border-radius);
}

.product-cta .whatsapp-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.product-cta .whatsapp-btn-large:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.product-cta .whatsapp-btn-large svg {
    transition: transform 0.3s ease;
}

.product-cta .whatsapp-btn-large:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

.cta-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==================== ACCORDION ==================== */
.accordion-container {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white-surface);
}

.accordion-item {
    border-bottom: 1px solid var(--border-subtle);
}

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

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--cream-color);
}

.accordion-header span {
    flex: 1;
}

.accordion-icon {
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: var(--cream-color);
}

.accordion-item.active .accordion-content {
    max-height: 1500px;
    padding: 1.5rem;
}

.accordion-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content ul li {
    padding: 0.6rem 0;
    color: var(--text-color);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.accordion-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.accordion-content ul li strong {
    color: var(--text-dark);
}

.accordion-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Features Tags */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white-surface);
    color: var(--text-color);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-subtle);
}

.feature-tag svg {
    color: var(--primary-color);
}

/* Related Products */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--cream-color);
}

.related-products h3 {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-grid .product-card {
    min-width: unset;
    max-width: unset;
}

/* Product Footer */
.product-footer {
    background: var(--cream-color);
    padding: 2rem;
    margin-top: 3rem;
}

.product-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo-small {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.product-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-footer .footer-links {
    display: flex;
    gap: 2rem;
}

.product-footer .footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* ==================== DARK MODE ==================== */
[data-theme="dark"] .product-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .product-header .back-btn {
    background: var(--beige-color);
}

[data-theme="dark"] .product-header .back-btn:hover {
    background: var(--primary-color);
    color: #121212;
}

[data-theme="dark"] .product-main-image {
    background: var(--beige-color);
}

[data-theme="dark"] .gallery-thumb {
    background: var(--beige-color);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .gallery-arrow,
[data-theme="dark"] .gallery-zoom-btn {
    background: rgba(30, 30, 30, 0.8);
    color: #fff;
}

[data-theme="dark"] .gallery-arrow:hover,
[data-theme="dark"] .gallery-zoom-btn:hover {
    background: rgba(50, 50, 50, 0.9);
}

[data-theme="dark"] .product-category-tag {
    background: var(--beige-color);
}

[data-theme="dark"] .product-description-full {
    background: var(--beige-color);
}

[data-theme="dark"] .product-benefits,
[data-theme="dark"] .product-ingredients {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .benefits-title,
[data-theme="dark"] .ingredients-title {
    border-bottom-color: var(--beige-color);
}

[data-theme="dark"] .benefit-item {
    background: var(--beige-color);
}

[data-theme="dark"] .ingredient-tag {
    background: var(--beige-color);
}

[data-theme="dark"] .product-cta {
    background: linear-gradient(135deg, var(--beige-color), var(--card-bg));
}

[data-theme="dark"] .feature-tag {
    background: var(--beige-color);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .related-products {
    border-top-color: var(--beige-color);
}

[data-theme="dark"] .product-footer {
    background: var(--beige-color);
}

/* Accordion - Dark Mode */
[data-theme="dark"] .accordion-container {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .accordion-item {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .accordion-header:hover {
    background: var(--beige-color);
}

[data-theme="dark"] .accordion-content {
    background: var(--beige-color);
}

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        padding: 12px 16px;
        background: var(--header-bg);
        border-top: 1px solid var(--border-subtle);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        gap: 10px;
        align-items: center;
    }

    .sticky-cta-mobile .sticky-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        white-space: nowrap;
    }

    .sticky-cta-mobile .sticky-price .price-compare {
        font-size: 0.85rem;
        color: var(--text-light);
        text-decoration: line-through;
        font-weight: 400;
        margin-right: 4px;
    }

    .sticky-cta-mobile .sticky-wa-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        padding: 12px 16px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
    }

    /* Offset main content so it doesn't hide behind sticky bar */
    .product-footer {
        padding-bottom: 80px;
    }

    /* Hide the floating WhatsApp button on product page (sticky bar replaces it) */
    .whatsapp-float {
        bottom: 80px;
    }

    .scroll-to-top {
        bottom: 80px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-title-detail {
        font-size: 2rem;
    }

    .product-price-detail {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-header .back-btn span {
        display: none;
    }

    .product-header .back-btn {
        padding: 0.6rem;
        border-radius: 50%;
    }

    .product-main {
        padding: 1.5rem 1rem 3rem;
    }

    .product-title-detail {
        font-size: 1.7rem;
    }

    .product-benefits,
    .product-ingredients {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 0.8rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-title-detail {
        font-size: 1.5rem;
    }

    .product-price-detail {
        font-size: 1.5rem;
    }

    .product-description-full {
        font-size: 1rem;
        padding: 1rem;
    }

    .product-cta .whatsapp-btn-large {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .product-features {
        gap: 0.5rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

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

    .accordion-header {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1rem;
    }

    .accordion-content ul li {
        font-size: 0.9rem;
    }
}
