/* Estilos do Calculador de Frete - Minimalista */
.woo-shipping-calculator-container {
    margin: 15px 0;
    font-family: inherit;
}

.woo-shipping-calculator-container .wsc-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    padding: 0px;
    border: 0px;
    background-color: transparent;
}

.wsc-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    align-items: stretch;
}

.wsc-cep-input {
    width: 36% !important;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    background: transparent;
    color: inherit;
    transition: border-color 0.2s;
}

.wsc-cep-input:focus {
    outline: none;
    border-color: #666;
}

.wsc-calc-btn {
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.wsc-calc-btn:hover {
    background-color: #555;
}

.wsc-calc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wsc-results-area {
    font-size: 14px;
    min-height: 20px;
}

.wsc-shipping-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wsc-shipping-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eaeaea;
    margin: 0 !important;
}

.wsc-shipping-list li:last-child {
    border-bottom: none;
}

.wsc-method-name {
    font-weight: 500;
    color: inherit;
}

.wsc-time {
    display: block;
    color: #888;
    font-size: 12px;
    font-weight: normal;
    margin-top: 2px;
}

.wsc-method-cost {
    font-weight: 600;
    color: inherit;
    font-size: 14px;
}

.wsc-loading {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.wsc-loading::before {
    content: "↻";
    display: inline-block;
    animation: wsc-spin 1s linear infinite;
}

@keyframes wsc-spin {
    100% {
        transform: rotate(360deg);
    }
}

.wsc-error {
    color: #d9534f;
    font-size: 13px;
    padding: 8px 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .wsc-input-group {
        flex-direction: column;
    }

    .wsc-cep-input {
        max-width: 100%;
    }

    .wsc-calc-btn {
        width: 100%;
    }
}