.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-item h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
}

      /* Breadcrumbs */
        .breadcrumbs {
            padding: 20px 0;
            background: #111;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 120px;
        }

        .breadcrumb-nav {
            color: #ccc;
            font-size: 0.9rem;
        }

        .breadcrumb-nav a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-nav a:hover {
            color: #f7ef8a;
        }

        .breadcrumb-nav .current {
            color: #fff;
        }

        /* Product Section */
        .product-section {
            padding: 60px 0;
            background: #000;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Image Gallery */
        .product-gallery {
            position: sticky;
            top: 140px;
        }

        .main-image {
            position: relative;
            width: 100%;
            height: 500px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-bottom: 20px;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .main-image:hover img {
            transform: scale(1.05);
        }

        .stock-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 16px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
        }

        .stock-badge.out-of-stock {
            background: #ef4444;
        }

        .stock-badge.low-stock {
            background: #f59e0b;
        }

        .image-thumbnails {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .thumbnail.active,
        .thumbnail:hover {
            border-color: #d4af37;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .product-info {
            color: #fff;
        }

        .product-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .brand-logo-small {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .brand-logo-small.brand-logo-image img {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
        }

        .brand-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4af37;
        }

        .brand-origin {
            color: #ccc;
            font-size: 0.9rem;
            margin-left: auto;
        }

        .product-title {
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        .product-sku {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .stars {
            color: #d4af37;
            font-size: 1.2rem;
        }

        .rating-text {
            color: #ccc;
            font-size: 0.9rem;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .current-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            font-family: 'Playfair Display', serif;
        }

        .old-price {
            font-size: 1.8rem;
            color: #888;
            text-decoration: line-through;
        }

        .discount {
            background: #10b981;
            color: #fff;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .product-description {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .product-category {
            margin-bottom: 30px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .category-label {
            color: #ccc;
            margin-right: 10px;
        }

        .category-value {
            color: #d4af37;
            font-weight: 500;
        }

        .product-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .product-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            color: #d4af37;
            font-size: 0.9rem;
        }

        .feature-icon {
            font-size: 1.2rem;
        }

        /* Detailed Description */
        .detailed-description {
            padding: 100px 0;
            background: #111;
        }

        .description-content {
            max-width: 800px;
            margin: 0 auto;
            color: #ccc;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: left;
        }

        /* Related Products */
        .related-products {
            padding: 100px 0;
            background: #000;
        }

        .gold-text {
            color: #d4af37;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .breadcrumbs {
                margin-top: 80px;
            }

            .product-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-gallery {
                position: static;
            }

            .main-image {
                height: 350px;
            }

            .product-title {
                font-size: 1.8rem;
            }

            .current-price {
                font-size: 2rem;
            }

            .old-price {
                font-size: 1.4rem;
            }

            .product-actions {
                flex-direction: column;
            }

            .product-features {
                grid-template-columns: 1fr;
            }

            .detailed-description,
            .related-products {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .product-section {
                padding: 40px 0;
            }

            .image-thumbnails {
                grid-template-columns: repeat(4, 1fr);
            }

            .thumbnail {
                width: 100%;
                height: 60px;
            }

            .product-brand {
                flex-wrap: wrap;
            }

            .brand-origin {
                margin-left: 0;
                margin-top: 5px;
                width: 100%;
            }
        }