
        
        
        /* Product Details Page Styles */
        .product-details-page {
            padding: 80px 0;
            font-family: "Merriweather", Georgia, serif !important;
        }
        
        .product-gallery {
            position: relative;
        }
        
        .main-product-image {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            height: 400px;
        }
        
        .main-product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border: 2px solid #e55d00 !important;
        }
        
        .thumbnail-images {
            display: flex;
            gap: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .thumbnail.active {
            border-color: #ff6b00;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-details {
            padding-left: 30px;
        }
        
        .product-title-large {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .rating-stars {
            color: #ffc107;
            margin-right: 10px;
        }
        
        .rating-count {
            color: #666;
            font-size: 14px;
        }
        
        .product-price-large {
            font-size: 32px;
            font-weight: 700;
            color: #ff6b00;
            margin-bottom: 15px;
        }
        
        .product-price-large .original-price {
            font-size: 22px;
            color: #999;
            text-decoration: line-through;
            margin-right: 10px;
        }
        
        .product-offer {
            color: #388e3c;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .product-info-list {
            margin-bottom: 25px;
        }
        
        .product-info-item {
            display: flex;
            margin-bottom: 10px;
        }
        
        .info-label {
            min-width: 120px;
            font-weight: 500;
            color: #555;
        }
        
        .info-value {
            color: #222;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background: #f1f1f1;
            border: none;
            font-size: 18px;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 5px;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .btn-add-to-cart {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-add-to-cart:hover {
            background: #e55d00;
        }
        
        .btn-buy-now {
            background: #fb641b;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-buy-now:hover {
            background: #e55d00;
        }
        
        .product-description {
            margin-top: 40px;
        }
        
        .description-content {
            margin-top: 20px;
            line-height: 1.6;
            color: #444;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .product-card {
                margin-bottom: 20px;
            }
            
            .product-details {
                padding-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .shop-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .products-count {
                margin-top: 10px;
            }
            
            .product-image {
                height: 200px;
            }
            
            .main-product-image {
                height: 300px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .product-title {
                font-size: 16px;
                height: 48px;
            }
            
            .product-price {
                font-size: 18px;
            }
            
            .product-title-large {
                font-size: 24px;
            }
            
            .product-price-large {
                font-size: 26px;
            }
        }
   