.nav-actions-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-auth-link {
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-auth-link:hover,
.nav-auth-link.active {
    color: #007aff;
}

.nav-auth-signup {
    background: #007aff;
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 14px;
}

.nav-auth-signup:hover,
.nav-auth-signup.active {
    background: #0066d6;
    color: #fff !important;
}

.nav-auth-text {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .nav-auth-text {
        display: none;
    }

    .nav-auth-link {
        padding: 8px;
        font-size: 13px;
    }

    .nav-auth-signup {
        padding: 8px 10px;
    }
}

.nav-cart-link {
    position: relative;
    color: #1d1d1f;
    font-size: 18px;
    text-decoration: none;
    padding: 8px;
}

.cart-count-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e4002b;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-menu-v3 a.active {
    color: #007aff;
}

.product-card:hover {
    transform: translateY(-8px);
}

.page-section {
    padding: 60px 0;
}

.page-section-alt {
    background: #f5f5f7;
}

.editor-content img {
    max-width: 100%;
    height: auto;
}

.password-toggle-wrap {
    position: relative;
}

.password-toggle-wrap .form-control {
    padding-right: 48px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #86868b;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    z-index: 2;
}

.password-toggle-btn:hover {
    color: #007aff;
}

.password-match-hint {
    font-size: 13px;
    margin-top: 6px;
}

.password-match-hint.match {
    color: #198754;
}

.password-match-hint.mismatch {
    color: #dc3545;
}

.order-status-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order-status-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #86868b;
    font-size: 14px;
    font-weight: 500;
}

.order-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d2d2d7;
}

.order-status-step.active {
    color: #1d1d1f;
}

.order-status-step.active .order-status-dot {
    background: #007aff;
}

.order-status-step.current {
    font-weight: 700;
}

.order-status-step.current .order-status-dot {
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2);
}

.checkout-payment-card {
    border: 2px solid #e5e5ea;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-payment-card.is-selected {
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.12);
}

.checkout-payment-card .card-header {
    background: #fff;
    border: none;
    padding: 16px 18px;
}

.checkout-payment-card .card-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-payment-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #007aff;
    flex-shrink: 0;
}

.checkout-payment-name {
    font-weight: 600;
    color: #1d1d1f;
}

.checkout-payment-card .card-body {
    border-top: 1px solid #f0f0f5;
    padding: 14px 18px;
    font-size: 14px;
    color: #515154;
}

.checkout-proof-label {
    display: block;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.checkout-proof-help {
    color: #86868b;
    font-size: 14px;
    margin-bottom: 12px;
}

.checkout-proof-input {
    padding: 12px;
    border: 2px dashed #d2d2d7;
    border-radius: 12px;
    background: #fafafa;
}

.checkout-proof-preview img {
    max-width: 220px;
    max-height: 160px;
    border-radius: 10px;
    border: 1px solid #e5e5ea;
}

.btn-place-order {
    display: block;
    border: none;
    border-radius: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #007aff 0%, #0056d6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-place-order:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.34);
    color: #fff;
}

.btn-place-order:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.btn-place-order-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-amount {
    background: rgba(255, 255, 255, 0.18);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 14px;
}

.place-order-spinner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
