/* Ship To Dropdown Styles */
.ship-to-dropdown {
    position: relative;
    z-index: 99999;
}

.ship-to-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.ship-to-trigger:hover {
    background: #f5f5f5;
}

.ship-to-trigger .ship-to-country {
    font-weight: 600;
}

.ship-to-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 380px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 99999;
    display: none;
    margin-top: 8px;
}

.ship-to-menu.show {
    display: block;
}

.ship-to-panel {
    padding: 20px;
}

.ship-to-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.ship-to-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 16px;
}

.ship-to-address {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.ship-to-address-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ship-to-address-content {
    font-size: 14px;
    color: #333;
}

.ship-to-no-address {
    color: #999;
    font-style: italic;
}

.ship-to-address-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.ship-to-view-more,
.ship-to-add-address {
    font-size: 12px;
    color: #E60023;
    text-decoration: none;
}

.ship-to-view-more:hover,
.ship-to-add-address:hover {
    text-decoration: underline;
}

.ship-to-or {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.ship-to-or::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e0e0e0;
}

.ship-to-or span {
    background: #fff;
    padding: 0 12px;
    position: relative;
    color: #999;
    font-size: 12px;
}

.ship-to-form {
    margin-top: 12px;
}

.ship-to-field {
    margin-bottom: 12px;
}

.ship-to-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.ship-to-field select,
.ship-to-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.ship-to-field select:focus,
.ship-to-field input:focus {
    border-color: #E60023;
}

.ship-to-save-btn {
    width: 100%;
    padding: 12px;
    background: #E60023;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ship-to-save-btn:hover {
    background: #cc0020;
}

@media (max-width: 768px) {
    .ship-to-menu {
        width: calc(100vw - 20px);
        left: 10px;
        right: auto;
    }
}
