/* Shop specific styles */

/* Tab navigation adjustments for 4 items - More specific selectors to override existing styles */
/*.product__details__tab .nav-tabs {*/
/*    display: flex !important;*/
/*    width: 100% !important;*/
/*    justify-content: space-between !important;*/
/*    flex-wrap: nowrap !important;*/
/*}*/

/*.product__details__tab .nav-tabs .nav-item.wow {*/
/*    flex: 1 !important;*/
/*    width: 25% !important; !* Override the existing 33% width *!*/
/*    max-width: 25% !important;*/
/*    text-align: center !important;*/
/*    margin: 0 2px !important;*/
/*}*/

/*.product__details__tab .nav-tabs .nav-item.wow .nav-link {*/
/*    padding: 10px 8px !important;*/
/*    font-size: 25px !important;*/
/*    white-space: nowrap !important;*/
/*    overflow: hidden !important;*/
/*    text-overflow: ellipsis !important;*/
/*    text-align: center !important;*/
/*    display: block !important;*/
/*    width: 100% !important;*/
/*}*/
.product__details__tab .nav-tabs .nav-item.wow .nav-link {
    /*height: 50px;*/
}

/* Responsive adjustments for tabs */
@media (max-width: 768px) {
    .product__details__tab .nav-tabs .nav-item.wow .nav-link {
        font-size: 17px !important;
        padding: 8px 4px !important;
    }
    .product__details__tab .nav-tabs .nav-item.wow .nav-link.shop {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .product__details__tab .nav-tabs .nav-item.wow .nav-link {
        font-size: 17px !important;
        padding: 6px 2px !important;
    }
    .product__details__tab .nav-tabs .nav-item.wow .nav-link.shop {
        font-size: 12px !important;
    }
}

/* Shop form styles */
.request-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.request-form .form-group {
    margin-bottom: 20px;
}

.request-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.request-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
}

.request-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Shop item styles */
.product__item__text_price {
    color: #e44d26;
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0;
}

.product__item__text_quantity {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

/* Button styles */
.primary-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.primary-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.secondary-btn:hover {
    background: #545b62;
    color: white;
    text-decoration: none;
}

/* DIM 처리를 위한 스타일 - CANCELED 상태일 때 nav-wizard 흐리게 표시 */
.nav-wizard.dimmed {
    opacity: 0.4;
    pointer-events: none;
}

.nav-wizard.dimmed .nav-wizard-item {
    cursor: not-allowed;
}
