
    /* DETAIL PAGE THEME */
    .details-section {
        padding: 150px 0 100px;
        background-color: #08061a;
        min-height: 100vh;
        color: #fff;
    }

    /* IMAGE STYLES */
    .product-img-container {
        position: sticky;
        top: 120px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(197, 160, 89, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .product-img-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .product-img-container:hover img {
        transform: scale(1.05);
    }

    /* INFO STYLES */
    .product-badge-group {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .badge-premium {
        background: rgba(197, 160, 89, 0.1);
        border: 1px solid var(--premium-gold);
        color: var(--premium-gold);
        padding: 5px 12px;
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 2px;
    }

    .category-path {
        font-size: 12px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .product-title {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .product-price {
        font-size: 28px;
        font-weight: 700;
        color: var(--premium-gold);
        margin-bottom: 30px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.8;
        color: #bbb;
        margin-bottom: 40px;
        border-left: 3px solid var(--premium-gold);
        padding-left: 20px;
    }

    /* ACTIONS */
    .action-group {
        display: flex;
        gap: 20px;
        margin-top: 50px;
    }

    .btn-cart-premium {
        background: linear-gradient(135deg, #c5a059 0%, #a38142 100%);
        color: #08061a;
        border: none;
        padding: 15px 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-radius: 2px;
        transition: 0.3s;
        flex-grow: 1;
        text-align: center;
        text-decoration: none;
    }

    .btn-cart-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
        color: #000;
    }

    .btn-back {
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 15px 30px;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-back:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #fff;
    }

    @media(max-width: 992px) {
            .details-section {
                padding-top: 100px;
            }

            .product-img-container {
                position: relative;
                top: 0;
                margin-bottom: 40px;
            }

            .product-title {
                font-size: 32px;
            }
        }
