.spec-table tr td:first-child {
    width: 200px;
    font-weight: 500;
    color: #666;
}

.product-image-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
}
.prouct-page-header{
    text-align: center;
}

.spec-category {
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-category:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #dee2e6;
}

.spec-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.spec-label {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.spec-value {
    display: block;
    font-weight: 500;
    color: #212529;
}

.spec-category h5 i {
    color: #6c757d;
}

.product-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.variant-label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-check:checked + .btn-outline-dark {
    background-color: #212529;
    color: #fff;
    border-color: #212529;
}

.btn-check + .btn-outline-dark:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.quantity-wrapper .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.quantity-wrapper .form-control {
    border-left: 0;
    border-right: 0;
    background: #fff;
}

.quantity-wrapper .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.btn-dark {
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info .btn-dark {
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
    .product-info .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-info .btn-dark {
        width: 100%;
    }
}