


.text-maroon {
    color: var(--maroon) !important;
}

.btn-brand {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-brown) 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 2, 2, 0.3);
    color: white;
}

.btn-outline-maroon {
    border: 2px solid var(--maroon);
    color: var(--maroon);
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-maroon:hover {
    background: var(--maroon);
    color: white;
}

/* Image Gallery */
.thumbnail-gallery .img-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-gallery .img-thumbnail.active,
.thumbnail-gallery .img-thumbnail:hover {
    opacity: 1;
    border-color: var(--maroon);
}

.main-product-img {
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}

/* Size, Material & Framing Options */
.size-option, .material-option, .framing-option {
    position: relative;
    cursor: pointer;
}

.size-option input, .material-option input, .framing-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.size-label, .material-label, .framing-label {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: white;
}

.size-option input:checked + .size-label,
.material-option input:checked + .material-label,
.framing-option input:checked + .framing-label {
    border-color: var(--maroon);
    background-color: rgba(91, 2, 2, 0.1);
    color: var(--maroon);
    font-weight: 600;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    background: white;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    background: transparent;
    font-weight: 600;
}

/* Product Tabs */
.nav-tabs .nav-link {
    color: var(--text-color);
    font-weight: 500;
    border: none;
    padding: 12px 24px;
}

.nav-tabs .nav-link.active {
    color: var(--maroon);
    border-bottom: 3px solid var(--maroon);
    background: transparent;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .product-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.product-overlay .product-icons a {
    color: #fff;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .thumbnail-gallery {
        flex-direction: row !important;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .thumbnail-gallery .img-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .main-product-img {
        max-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-sectionbc {
        padding: 60px 0 30px;
    }
    
    .size-options, .material-options, .framing-options {
        justify-content: center;
    }
    
    .quantity-selector {
        margin-bottom: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}


