.product-details-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.product-gallery {
    padding: 40px;
    background: #fafafa;
    border-right: 1px solid #f0f0f0;
}

.fade-carousel-main {
    position: relative;
    height: 500px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.fade-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.fade-carousel-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-top: 20px;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #b8926a #f0f0f0;
}

.fade-carousel-thumbs::-webkit-scrollbar {
    height: 6px;
}

.fade-carousel-thumbs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.fade-carousel-thumbs::-webkit-scrollbar-thumb {
    background: #b8926a;
    border-radius: 10px;
}

.fade-thumb {
    width: 110px;
    height: 80px;
    flex-shrink: 0;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.fade-thumb:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.fade-thumb.active {
    border-color: #b8926a;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(184,146,106,0.3);
}


.product-info {
    padding: 50px 45px;
}

.product-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #b8926a;
    margin-bottom: 25px;
    font-family: 'Garamond', serif;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f9f7f4 0%, #faf8f5 100%);
    border-radius: 12px;
    border-left: 4px solid #b8926a;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.meta-item i {
    color: #b8926a;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-product {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-product {
    background: linear-gradient(135deg, #b8926a, #a07a55);
    color: #fff;
    box-shadow: 0 4px 15px rgba(184,146,106,0.3);
}

.btn-primary-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,146,106,0.4);
}

.btn-secondary-product {
    background: #fff;
    color: #b8926a;
    border: 2px solid #b8926a;
}

.btn-secondary-product:hover {
    background: #b8926a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184,146,106,0.3);
}

.btn-product i {
    font-size: 18px;
}

.glightbox-container {
    background: rgba(0,0,0,0.95) !important;
}


.product-breadcrumb {
    padding: 20px 0;
    margin-bottom: 30px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.breadcrumb-list li a {
    color: #b8926a;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #8a6a47;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    color: #ccc;
    font-size: 18px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 30px;
    }

    .fade-carousel-main {
        height: 400px;
    }

    .product-info {
        padding: 35px 30px;
    }

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

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

@media (max-width: 768px) {
    .product-details-section {
        padding: 30px 0;
    }

    .product-container {
        padding: 0 15px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-gallery {
        padding: 20px;
    }

    .fade-carousel-main {
        height: 300px;
    }

    .fade-thumb {
        width: 85px;
        height: 65px;
    }

    .product-info {
        padding: 25px 20px;
    }

    .product-title {
        font-size: 1.6rem;
    }

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

    .product-meta {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .meta-item {
        font-size: 14px;
    }

    .product-description {
        font-size: 15px;
    }

    .btn-product {
        padding: 14px 28px;
        font-size: 15px;
    }
}

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

    .product-price {
        font-size: 1.3rem;
    }

    .fade-thumb {
        width: 75px;
        height: 55px;
    }
}


.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b8926a, #a07a55);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(184,146,106,0.4);
}

