/* Product Images */
.product-images .main-image {
    border: 1px solid #eee;
    /* padding: 10px; */
    width: 100%;
    height: 50% ;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #eee;
}

/* Color Options */
.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ddd;
}

.color-option.active {
    border: 2px solid #000;
}

/* Size Buttons */
.size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
}

.size-btn.active {
    background: #000;
    color: white;
}

/* Quantity Selector */
.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
}

.quantity-selector input {
    border: 1px solid #ddd;
}

/* Product Title */
.product-details-title {
    font-size: 24px;
    font-weight: 500;
}

/* Product Details */
.product-details ul li {
    margin-bottom: 8px;
}













/* Breadcrumb Styles */
.breadcrumb-wrap {
    background-color: #f5f5f5;
 
}

.breadcrumb {
    font-size: 14px;
  
    
    
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
   
    
}

.breadcrumb-item.active {
    color: #000;
}







.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
   
    z-index: 1050;
    transition: right 0.3s ease;
}

@media (max-width:768px){
    .side-menu {

        width: 90%;
    }
}

.side-menu.active {
    right: 0;
}

.quickview-content {
    position: absolute;
    top: 0;
    width: 90%;
    max-width: 900px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;

}

.side-menu.active .quickview-content {
    right: 0;
}

.quickview-header {
    padding: 5px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quickview-header h5 {
    margin: 0;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    
    cursor: pointer;
    padding: 5px;

}

.quickview-body {
    padding: 5px;
}

/* Product Images */
.product-images {
    position: relative;
}

.main-image {
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
}
@media(max-width:768px){
    .main-image img{

        width: 100%;
        height: 50%;
    }
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: #333;
}

/* Product Info */
.product-menu-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* Size Selection */
.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: #333;
}

/* Quantity and Add to Cart */
.cart-actions {
    display: flex;
    gap: 20px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
}

.add-to-cart-btn {
    flex: 1;
    padding: 0 30px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #000;
}

@media (max-width: 991px) {
    .quickview-content {
        width: 100%;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}