                .logo {
                /* margin-top: -5vh; */
                
 height: 10vh;
width: 10vw; 
                }
.logo img{
                /* margin-top: -5vh; */
 
     width: 60%;
  height: auto;
  object-fit: cover;
  object-position: center;  
}

/* Size Selection Styles */
.size-selection-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.size-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.size-options-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.size-option:hover {
    border-color: #0ee9a7;
    background: #4be035;
}

.size-option.unavailable {
    color: #ff0000;
    text-decoration: line-through;
    background: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.7;
    border-color: #ffcccc;
}

.size-option.unavailable:hover {
    border-color: #ffcccc;
    background: #f9f9f9;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #e83e8c;
    margin: 15px 0;
}

.price-breakdown {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}



.price-update {
    animation: pricePulse 0.3s ease-in-out;
}
@keyframes pricePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #e83e8c; }
    100% { transform: scale(1); }
}
.size-option.unavailable {
    color: #ff0000;
    text-decoration: line-through;
    cursor: not-allowed;
}


/* Quantity Controls */
.qtyField {
    display: flex;
    align-items: center;
}

.qtyBtn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qtyBtn:hover {
    background: #eee;
    border-color: #ccc;
}

.product-form__input.qty {
    width: 50px;
    height: 36px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
}

.price-update {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price-breakdown {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-top: 3px;
}


/* Product Details Tab Container */
.tabs-content {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

/* Product Description Section */
#detailed-description {
    flex: 1;
    margin-left: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    max-width: 500px;
}


/* Responsive Adjustment */
@media (max-width: 768px) {
    .tabs-content {
        flex-direction: column;
        gap: 20px;
    }
    
  #detailed-description {
        margin-left: 0;
        max-width: 100%;
    }
}



/* Color Selection Styles */
.selection-container {
    margin: 15px 0;
    padding: 10px 0;
}

.selection-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.options-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.options-wrapper .option {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #f9f9f9;
}

.options-wrapper .option:hover {
    background: #f0f0f0;
}

.options-wrapper .option.selected {
    background: #333;
    color: #fff;
    border-color: #333;
}

.options-wrapper .option.unavailable {
    opacity: 0.5;
    text-decoration: line-through;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* Tooltip for unavailable colors */
.option.unavailable::after {
    content: " (Unavailable)";
    font-size: 0.8em;
    color: #999;
}

