.product-specifications {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.specifications-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #915f6d;
    padding-bottom: 8px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.spec-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #915f6d;
    border-radius: 50%;
    color: white;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .product-specifications {
        padding: 15px;
        margin: 20px 0;
    }
}

.additional_information_tab {
    display: none !important;
}

.woocommerce-Tabs-panel--additional_information {
    display: none !important;
}

.variations {
    border: none !important;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 25px 0;
}

.variations tbody tr {
    border: none !important;
    display: block;
    margin-bottom: 20px;
}

.variations tbody tr:last-child {
    margin-bottom: 0;
}

.variations th.label {
    display: block;
    padding: 0 0 12px 0 !important;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

.variations th.label label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variations th.label label::after {
    content: ':';
    margin-left: 2px;
    color: #915f6d;
}

.variations td.value {
    display: block;
    padding: 0 !important;
    width: 100%;
    border: none;
    background: none;
}

.custom-variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.variation-button {
    padding: 12px 24px;
    border: 2px solid #dee2e6;
    background: #fff;
    color: #495057;
    cursor: pointer;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
}

.variation-button:hover:not([disabled]) {
    border-color: #915f6d;
    background: #e3f2fd;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.15);
}

.variation-button.active {
    border-color: #915f6d;
    background: linear-gradient(135deg, #915f6d 0%, #915f6d 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
    transform: translateY(-2px);
}

.variation-button[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
    background: #e9ecef;
    color: #adb5bd;
    border-color: #dee2e6;
}

.color-buttons {
    border: 2px solid #e3f2fd;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.size-buttons {
    border: 2px solid #fff3e0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.stock-info {
    margin: 20px 0 0 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.15);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stock-info strong {
    color: #2e7d32;
    font-size: 18px;
    font-weight: 700;
}

.variations select {
    display: none !important;
}

@media (max-width: 768px) {
    .variations {
        padding: 15px;
    }

    .custom-variation-buttons {
        gap: 8px;
        padding: 12px;
    }

    .variation-button {
        padding: 10px 18px;
        font-size: 14px;
        min-width: 70px;
    }

    .variations th.label label {
        font-size: 14px;
    }
}

.dokan-store .woocommerce-breadcrumb {
    display: block !important;
    margin-left: 10px !important
}

.sale_schedule {
    display: none !important
}

.show_if_simple.dokan-clearfix.show_if_external {
    display: block !important
}
