<?php
/**
 * WooCommerce Custom Features - Frontend CSS
 */

/* Address Book Styling */
.wcf-checkout-address-block {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wcf-checkout-address-block h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.wcf-current-address-display {
    margin-bottom: 10px;
}

.wcf-current-address-display address {
    font-style: normal;
    margin-bottom: 10px;
    line-height: 1.5;
}

.wcf-change-address-link {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: #0073aa;
    font-weight: 500;
}

.wcf-change-address-link:hover {
    color: #00a0d2;
    text-decoration: underline;
}

.wcf-address-selection-form {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
}

.wcf-address-selection-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.wcf-cancel-change-address-link {
    margin-top: 10px;
}

.wcf-new-address-checkout-notice {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

/* Loading indicator */
.wcf-address-selection-form.loading {
    position: relative;
    opacity: 0.7;
}

.wcf-address-selection-form.loading:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid"><circle cx="50" cy="50" fill="none" stroke="%23007cba" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138"><animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" values="0 50 50;360 50 50" keyTimes="0;1"></animateTransform></circle></svg>') no-repeat center center;
    background-size: 50px 50px;
    z-index: 10;
}

/* Save address checkbox styling */
.wcf-save-address-checkout {
    margin-top: 15px;
    padding: 10px;
    background-color: #f7f7f7;
    border-left: 3px solid #0073aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wcf-checkout-address-block {
        padding: 10px;
    }
}
