        /* Main Card Container */
        .product-card {
        border-radius: 12px;
        overflow: hidden;
        border: none;
        }

        /* Product Gallery Styles */
        .product-gallery {
        background-color: #f9f9f9;
        height: 100%;
        }

        .main-image-container {
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        }

        .main-image {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
        }

        .main-image:hover {
        transform: scale(1.05);
        }

        .thumbnail-scroller {
        scrollbar-width: thin;
        scrollbar-color: #ddd #f9f9f9;
        }

        .thumbnail-scroller::-webkit-scrollbar {
        height: 6px;
        }

        .thumbnail-scroller::-webkit-scrollbar-track {
        background: #f9f9f9;
        }

        .thumbnail-scroller::-webkit-scrollbar-thumb {
        background-color: #ddd;
        border-radius: 6px;
        }

        .thumbnail-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        }

        .thumbnail-img:hover {
        border-color: #4CAF50;
        transform: translateY(-2px);
        }

        /* Product Details Styles */
        .product-details {
        height: 100%;
        }

        .product-title {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
        }

        .sold-count {
        font-size: 0.9rem;
        }

        .wishlist-btn {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        }

        .wishlist-btn:hover {
        background-color: rgba(220, 53, 69, 0.1);
        }

        /* Price Section */
        .price-section {
        padding: 1rem;
        background-color: #f8f9fa;
        border-radius: 8px;
        }

        .current-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #000000;
        }

        .original-price {
        font-size: 1.2rem;
        }

        .discount-badge {
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
        }

        /* Variant Selection */
        .section-title {
        font-weight: 600;
        color: #333;
        font-size: 1rem;
        }

        .color-option,
        .size-option {
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
        }

        .color-option.active,
        .size-option.active {
        background-color: #333;
        color: white;
        border-color: #333;
        }

        .color-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 1px solid #ddd;
        }

        /* Quantity Selector */
        .quantity-selector .btn {
        width: 40px;
        padding: 0.375rem;
        }

        .quantity-input {
        font-weight: 600;
        }

        .stock-status {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 0.9rem;
        }

        .stock-text {
        margin-left: 5px;
        }

        /* Action Buttons */
        .action-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        }

        .add-to-cart-btn,
        .buy-now-btn {
        min-width: 180px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        }

        .add-to-cart-btn:hover {
        background-color: #e0b420;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .buy-now-btn:hover {
        background-color: #0b5ed7;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Product Description */
        .product-description {
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
        }

        .accordion-button:not(.collapsed) {
        color: inherit;
        background-color: transparent;
        }

        .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
        .main-image-container {
        height: 400px;
        }
        }

        @media (max-width: 768px) {
        .main-image-container {
        height: 350px;
        }

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

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

        .action-buttons {
        flex-direction: column;
        }

        .add-to-cart-btn,
        .buy-now-btn {
        width: 100%;
        }
        }
