/* Hozi Shipping Discount Frontend Styles */

/* Delivery Options Styles */
.hozi-delivery-options {
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

.hozi-delivery-fields {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    margin: 10px 0;
}

.hozi-delivery-fields h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.hozi-delivery-fields .form-row {
    margin-bottom: 15px;
}

.hozi-delivery-fields .form-row:last-child {
    margin-bottom: 0;
}

.hozi-delivery-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.hozi-delivery-fields select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: white;
    font-size: 14px;
}

.hozi-delivery-fields select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.hozi-delivery-note {
    margin-top: 10px;
    padding: 8px 12px;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 3px;
    color: #0066cc;
}

.hozi-delivery-note small {
    font-size: 12px;
}

/* Shipping Discount Info */
.hozi-shipping-discount-info {
    background: #e8f5e8;
    border-top: 1px solid #4caf50;
}

.hozi-discount-notice {
    padding: 15px;
    border: 1px solid #4caf50;
    border-radius: 4px;
    background: #f1f8e9;
    margin: 10px 0;
}

.hozi-discount-notice h4 {
    margin: 0 0 10px 0;
    color: #2e7d32;
    font-size: 14px;
}

.hozi-discount-notice ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style-type: disc;
}

.hozi-discount-notice li {
    margin-bottom: 5px;
    color: #2e7d32;
    font-size: 13px;
}

.hozi-discount-notice li:last-child {
    margin-bottom: 0;
}

/* Quick Order Form Styles */
.hozi-quick-order-delivery {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
}

.hozi-quick-order-delivery h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.hozi-quick-order-delivery .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.hozi-quick-order-delivery .form-row-wide {
    flex: 1;
    min-width: 250px;
}

.hozi-quick-order-delivery .form-row-half {
    flex: 1;
    min-width: 200px;
}

/* Shipping Calculator */
.hozi-shipping-calculator {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.hozi-shipping-calculator h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.hozi-shipping-result {
    padding: 15px;
    border-radius: 3px;
    margin-top: 15px;
}

.hozi-shipping-result.success {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.hozi-shipping-result.error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

.hozi-shipping-breakdown {
    margin-top: 10px;
}

.hozi-shipping-breakdown table {
    width: 100%;
    border-collapse: collapse;
}

.hozi-shipping-breakdown th,
.hozi-shipping-breakdown td {
    padding: 8px 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.hozi-shipping-breakdown th {
    background: #f5f5f5;
    font-weight: bold;
}

.hozi-shipping-breakdown .total-row {
    font-weight: bold;
    border-top: 2px solid #333;
}

/* Loading States */
.hozi-calculating {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.hozi-calculating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: hozi-spin 1s linear infinite;
}

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

/* Error States */
.hozi-error {
    color: #c62828;
    font-size: 12px;
    margin-top: 5px;
}

.hozi-field-error {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2) !important;
}

/* Success States */
.hozi-success {
    color: #2e7d32;
    font-size: 12px;
    margin-top: 5px;
}

.hozi-field-success {
    border-color: #4caf50 !important;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hozi-delivery-fields {
        padding: 15px;
        margin: 5px 0;
    }
    
    .hozi-delivery-fields h4 {
        font-size: 14px;
    }
    
    .hozi-quick-order-delivery .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .hozi-quick-order-delivery .form-row-wide,
    .hozi-quick-order-delivery .form-row-half {
        min-width: auto;
    }
    
    .hozi-shipping-calculator {
        padding: 15px;
        margin: 10px 0;
    }
    
    .hozi-shipping-breakdown th,
    .hozi-shipping-breakdown td {
        padding: 6px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hozi-delivery-fields {
        padding: 10px;
    }
    
    .hozi-delivery-fields select {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .hozi-discount-notice {
        padding: 10px;
    }
    
    .hozi-discount-notice h4 {
        font-size: 13px;
    }
    
    .hozi-discount-notice li {
        font-size: 12px;
    }
}

/* RTL Support */
body.rtl .hozi-delivery-fields label {
    text-align: right;
}

body.rtl .hozi-discount-notice ul {
    padding: 0 20px 0 0;
}

body.rtl .hozi-shipping-breakdown th,
body.rtl .hozi-shipping-breakdown td {
    text-align: left;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hozi-delivery-fields {
        border-color: #000;
    }
    
    .hozi-delivery-fields select {
        border-color: #000;
    }
    
    .hozi-discount-notice {
        border-color: #000;
        background: #fff;
        color: #000;
    }
    
    .hozi-discount-notice h4 {
        color: #000;
    }
    
    .hozi-discount-notice li {
        color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hozi-calculating::after {
        animation: none;
    }
    
    @keyframes hozi-spin {
        0%, 100% { transform: rotate(0deg); }
    }
}

/* Print Styles */
@media print {
    .hozi-delivery-fields,
    .hozi-shipping-calculator {
        border: 1px solid #000;
        background: white;
    }
    
    .hozi-discount-notice {
        border: 1px solid #000;
        background: white;
        color: #000;
    }
    
    .hozi-calculating::after {
        display: none;
    }
}

/* Focus Styles for Accessibility */
.hozi-delivery-fields select:focus,
.hozi-shipping-calculator input:focus,
.hozi-shipping-calculator select:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.hozi-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}