/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Book: Pantone 286 C */
    --navy: #0033A0;
    --navy-dark: #002878;
    --navy-light: #1A4DB8;
    /* Brand Book: Pantone 279 C */
    --sky: #418FDE;
    --sky-dark: #3580CC;
    --sky-light: #5BA0E8;
    /* Brand Book: Pantone 298 C + tints */
    --blue-light: #41B6E6;
    --blue-pale: #DAF0FA;
    --blue-sky: #A0DBF3;
    /* Brand Book: Pantone 362 C / 376 C */
    --green: #509E2F;
    --green-light: #84BD00;
    --green-dark: #3D7A23;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,51,160,0.08);
    --shadow-lg: 0 8px 30px rgba(0,51,160,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    font-size: 0.875rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== 1. ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 10px 40px;
    font-size: 0.8125rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    letter-spacing: 0.2px;
    position: relative;
}

.announcement-bar i {
    margin-right: 6px;
    color: var(--green-light);
}

.announcement-bar .ar-text {
    opacity: 0.8;
    font-size: 0.8125rem;
}

.announcement-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    opacity: 0.6;
    font-size: 0.875rem;
    padding: 4px 6px;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 2;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-close i {
    color: var(--white);
    margin-right: 0;
}

/* ===== 2. HEADER ===== */
.header {
    background: var(--white);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 100;
    gap: 32px;
}

.header-wrapper {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 63px;
    transition: transform var(--transition);
}

.logo:hover img {
    transform: scale(1.03);
}

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

.nav-menu a {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--navy);
    background: var(--blue-pale);
}

.nav-menu .has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu .has-dropdown i {
    font-size: 0.625rem;
    transition: transform var(--transition);
}

.nav-menu .has-dropdown:hover i {
    transform: rotate(180deg);
}

/* ===== LOCATION PICKER ===== */
.location-picker {
    position: relative;
}

.location-picker-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    cursor: pointer;
    transition: all var(--transition);
}

.location-picker-btn:hover {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.location-picker-btn > .fa-location-dot {
    color: var(--navy);
    font-size: 1rem;
}

.location-picker-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.location-label {
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
}

.location-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.location-arrow {
    font-size: 0.625rem;
    color: var(--gray-400);
    transition: transform var(--transition);
}

.location-picker.active .location-arrow {
    transform: rotate(180deg);
}

.location-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.location-picker.active .location-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.location-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.location-dropdown-header h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}

.location-dropdown-header p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.4;
}

.location-dropdown-list {
    padding: 8px;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
}

.location-option:hover {
    background: var(--blue-pale);
    color: var(--navy);
}

.location-option.active {
    background: var(--blue-pale);
    color: var(--navy);
    font-weight: 600;
}

.location-option i {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.location-option:hover i,
.location-option.active i {
    color: var(--navy);
}

.location-modal-wide {
    width: 480px;
}

.location-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-btn-outline {
    background: var(--white) !important;
    color: var(--navy) !important;
    border: 2px solid var(--navy) !important;
}

.location-btn-outline:hover {
    background: var(--blue-pale) !important;
}

/* Post-login address choice */
.post-login-previous {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.post-login-previous-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.post-login-previous-header i {
    color: var(--navy);
    font-size: 1rem;
    margin-top: 2px;
}

.post-login-previous-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.post-login-previous-address {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.post-login-save-btn {
    width: 100%;
    font-size: 0.8125rem !important;
    padding: 10px !important;
}

.post-login-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.post-login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--gray-200);
}

.post-login-divider span {
    background: var(--white);
    padding: 0 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
    position: relative;
}

.post-login-addresses {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-login-addr-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    font-family: inherit;
}

.post-login-addr-btn:hover {
    border-color: var(--navy);
    background: var(--blue-pale);
    color: var(--navy);
}

.post-login-addr-btn i {
    font-size: 0.875rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

.post-login-addr-btn:hover i {
    color: var(--navy);
}

.post-login-addr-info {
    flex: 1;
    min-width: 0;
}

.post-login-addr-name {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
}

.post-login-addr-detail {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-login-addr-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 1px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.location-dropdown-footer {
    padding: 10px 12px;
    border-top: 1px solid var(--gray-100);
}

.location-dropdown-map-btn {
    width: 100%;
    padding: 9px 12px;
    background: none;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    transition: all var(--transition);
}

.location-dropdown-map-btn:hover {
    background: var(--blue-pale);
    border-color: var(--navy);
}

.location-option-saved {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    font-family: inherit;
}

.location-option-saved:hover {
    background: var(--blue-pale);
}

.location-option-saved.active {
    background: var(--blue-pale);
    color: var(--navy);
    font-weight: 600;
}

.location-option-saved i {
    font-size: 0.875rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

.location-option-saved.active i {
    color: var(--navy);
}

.location-option-info {
    flex: 1;
    min-width: 0;
}

.location-option-name {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.location-option-address {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-option-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 1px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.location-dropdown-empty {
    padding: 16px 12px;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 40px 64px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
    overflow: hidden;
}

.checkout-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
}

/* Mosque donation field */
.checkout-mosque-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}
.checkout-phone-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.checkout-phone-input:focus-within {
    border-color: var(--sky);
}
.checkout-phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid var(--gray-200);
    height: 44px;
}
.checkout-phone-prefix img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}
.checkout-phone-input .checkout-input {
    border: none;
    border-radius: 0;
    flex: 1;
}
.checkout-phone-input .checkout-input:focus {
    box-shadow: none;
}
.checkout-optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.75rem;
}
.checkout-field-note {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.checkout-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.checkout-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-step-num {
    width: 28px;
    height: 28px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checkout-card-body {
    padding: 24px;
    overflow: hidden;
}

/* Login prompt */
.checkout-login-prompt {
    text-align: center;
    padding: 20px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.checkout-login-prompt i {
    font-size: 2rem;
    color: var(--gray-300);
    display: block;
    margin-bottom: 12px;
}

.checkout-login-prompt a {
    color: var(--navy);
    font-weight: 600;
}

/* Address selection */
.checkout-address-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.checkout-address-option:hover {
    border-color: var(--navy);
}

.checkout-address-option.active {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.checkout-address-option input {
    display: none;
}

.checkout-address-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.checkout-address-option-content > i {
    font-size: 1rem;
    color: var(--gray-400);
    width: 20px;
    text-align: center;
}

.checkout-address-option.active .checkout-address-option-content > i {
    color: var(--navy);
}

.checkout-address-details {
    flex: 1;
}

.checkout-address-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.checkout-address-text {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.checkout-addr-badge {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    margin-left: 4px;
}

.checkout-add-address-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--transition);
}

.checkout-add-address-btn:hover {
    border-color: var(--navy);
    background: var(--blue-pale);
}

/* Guest form */
.checkout-guest-form h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-form-group {
    margin-bottom: 16px;
}

.checkout-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.checkout-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-900);
    font-family: inherit;
    transition: border-color var(--transition);
}

.checkout-input:focus {
    outline: none;
    border-color: var(--navy);
}

.checkout-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Delivery date carousel */
.checkout-delivery-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.checkout-date-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    max-width: 100%;
}

.checkout-date-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all var(--transition);
    flex-shrink: 0;
}

.checkout-date-arrow:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.checkout-date-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.checkout-date-track-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    cursor: grab;
}

.checkout-date-track {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
    width: max-content;
}

.checkout-date-card {
    min-width: 80px;
    padding: 12px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
    flex-shrink: 0;
}

.checkout-date-card:hover:not(.disabled) {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.checkout-date-card.selected {
    border-color: var(--navy);
    background: var(--sky);
    color: var(--white);
}

.checkout-date-card.today:not(.selected) {
    border-color: var(--green);
}

.checkout-date-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--gray-50);
}

.checkout-date-card.disabled .checkout-date-day-name {
    text-decoration: line-through;
}

.checkout-date-day-name {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.checkout-date-card.selected .checkout-date-day-name {
    color: rgba(255, 255, 255, 0.7);
}

.checkout-date-day-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 2px;
}

.checkout-date-card.selected .checkout-date-day-num {
    color: var(--white);
}

.checkout-date-month-label {
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 500;
}

.checkout-date-card.selected .checkout-date-month-label {
    color: rgba(255, 255, 255, 0.6);
}

.checkout-date-card.disabled .checkout-date-day-num {
    color: var(--gray-400);
}

.checkout-date-holiday-tag {
    font-size: 0.5625rem;
    color: #dc2626;
    font-weight: 600;
    margin-top: 2px;
}

/* Time slots */
.checkout-time-slots {
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
    animation: fadeIn 0.3s ease;
}

.checkout-time-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.checkout-time-title span {
    color: var(--navy);
    font-weight: 700;
}

.checkout-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkout-time-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.checkout-time-option:hover {
    border-color: var(--navy);
}

.checkout-time-option.active {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.checkout-time-option input {
    display: none;
}

.checkout-time-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-time-option-content > i {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.checkout-time-option.active .checkout-time-option-content > i {
    color: var(--navy);
}

.checkout-time-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.checkout-time-range {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Payment options */
.checkout-payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkout-payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.checkout-payment-option:hover {
    border-color: var(--navy);
}

.checkout-payment-option.active {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.checkout-payment-option input {
    display: none;
}

.checkout-payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.checkout-payment-option.active .checkout-payment-option-content {
    color: var(--navy);
    font-weight: 600;
}

.checkout-payment-option-content i {
    font-size: 1.25rem;
}

/* Order Summary Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.checkout-summary-card .checkout-card-header {
    background: var(--gray-50);
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-img {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.checkout-item-meta {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.checkout-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.checkout-summary-lines {
    padding-top: 16px;
    margin-top: 8px;
}

.checkout-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 6px 0;
}

.checkout-summary-line.checkout-summary-total {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    border-top: 2px solid var(--gray-200);
    padding-top: 14px;
    margin-top: 8px;
}

.checkout-delivery-free {
    color: var(--green);
    font-weight: 600;
}

.checkout-promo {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 16px;
}

.checkout-promo .checkout-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.8125rem;
}

.checkout-promo-btn {
    padding: 10px 20px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
    white-space: nowrap;
}

.checkout-promo-btn:hover {
    background: var(--gray-200);
}

.checkout-promo-btn.promo-applied {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.checkout-promo-btn.promo-applied:hover {
    background: #fee2e2;
}

.checkout-discount-line {
    color: #16a34a;
    font-weight: 600;
}

.checkout-discount-amount {
    color: #16a34a;
    font-weight: 700;
}

.checkout-promo .checkout-input:disabled {
    background: var(--gray-50);
    color: var(--gray-500);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.4s ease;
}

/* ===== FREE / REWARD ITEMS ===== */
.checkout-free-items {
    margin: 4px 0 8px;
    border: 2px dashed #16a34a;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    overflow: hidden;
}

.checkout-free-items-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.checkout-free-items-header i {
    font-size: 1rem;
}

.checkout-free-items-list {
    padding: 4px 14px;
    background: #fff;
}

.checkout-free-item {
    border-bottom-color: rgba(22, 163, 74, 0.15) !important;
}

.checkout-free-item:last-child {
    border-bottom: none !important;
}

.checkout-free-item-img {
    background: #fff !important;
    border-color: #bbf7d0 !important;
    color: #16a34a;
}

.checkout-free-badge {
    display: inline-block;
    padding: 1px 6px;
    background: #16a34a;
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 800;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.checkout-free-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.checkout-price-strikethrough {
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 400;
}

.checkout-price-free {
    font-size: 0.875rem;
    font-weight: 800;
    color: #16a34a;
}

/* ===== CORPORATE EMAIL VERIFICATION ===== */
.checkout-corporate {
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
}

.checkout-corporate-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.checkout-corporate-header i {
    font-size: 0.875rem;
    color: var(--navy);
}

.checkout-corporate .checkout-promo {
    margin-top: 0;
    margin-bottom: 0;
}

.corp-otp-msg {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0 0 8px 0;
}

.corp-otp-msg strong {
    color: var(--gray-700);
}

.corp-otp-inputs {
    display: flex;
    gap: 6px;
    flex: 1;
}

.corp-otp-digit {
    width: 42px;
    height: 42px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}

.corp-otp-digit:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.08);
}

.corp-change-email {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 8px;
    transition: color var(--transition);
}

.corp-change-email:hover {
    color: var(--navy);
}

.corp-error {
    display: block;
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 6px;
    min-height: 0;
}

.corp-success-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.corp-success-banner i {
    font-size: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
}

.corp-success-banner strong {
    display: block;
    font-size: 0.8125rem;
    color: #15803d;
    line-height: 1.3;
}

.corp-success-banner span {
    font-size: 0.75rem;
    color: #4ade80;
}

.checkout-corporate.verified {
    border-color: #bbf7d0;
    background: #fafff9;
}

.corp-success-banner {
    position: relative;
}

.corp-remove-deal {
    margin-left: auto;
    color: var(--gray-400);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: color var(--transition);
}

.corp-remove-deal:hover {
    color: #dc2626;
}

.corp-deal-details {
    margin-top: 12px;
    padding: 10px 0 0;
    border-top: 1px dashed #d1fae5;
}

.corp-deal-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 3px 0;
}

.corp-deal-line span:last-child {
    font-weight: 600;
    color: var(--gray-700);
}

.corp-deal-remaining span:last-child {
    font-size: 0.8125rem;
    font-weight: 700;
}

.corp-limit-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #dc2626;
    line-height: 1.4;
}

.corp-limit-warning i {
    flex-shrink: 0;
    margin-top: 1px;
}

.checkout-place-btn {
    width: 100%;
    padding: 16px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
}

.checkout-place-btn:hover {
    background: var(--sky-dark);
    box-shadow: 0 4px 14px rgba(27, 60, 135, 0.3);
}

.checkout-place-btn.is-blocked,
.checkout-place-btn:disabled {
    background: #9aa3b2;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.85;
}

.checkout-place-btn.is-blocked:hover,
.checkout-place-btn:disabled:hover {
    background: #9aa3b2;
    box-shadow: none;
}

.checkout-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    transition: color var(--transition);
}

.checkout-back-link:hover {
    color: var(--navy);
}

.checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.checkout-secure i {
    color: var(--green);
}

/* Checkout Wallet */
.checkout-wallet-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkout-wallet-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.checkout-wallet-balance-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}
.checkout-wallet-balance-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}
.checkout-wallet-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}
.checkout-wallet-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.checkout-wallet-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    border-radius: 28px;
    transition: background var(--transition);
}
.checkout-wallet-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    left: 3px;
    top: 3px;
    transition: transform var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.checkout-wallet-switch input:checked + .checkout-wallet-slider {
    background: var(--sky);
}
.checkout-wallet-switch input:checked + .checkout-wallet-slider::before {
    transform: translateX(24px);
}
.checkout-wallet-summary {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}
.checkout-wallet-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 6px;
}

/* Qitaf Loyalty Program */
.checkout-loyalty-card .checkout-card-body {
    padding-top: 0;
}
.qitaf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 14px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 14px;
}
.qitaf-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.qitaf-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4f2d7f;
    letter-spacing: -0.3px;
}
.qitaf-by-stc {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c3aed;
    opacity: 0.7;
}
.qitaf-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.qitaf-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.qitaf-option-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.qitaf-option-toggle input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #4f2d7f;
    flex-shrink: 0;
}
.qitaf-option-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}
.qitaf-option-label i {
    margin-right: 4px;
    color: #4f2d7f;
}
.qitaf-option-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
}
.qitaf-burn-flow,
.qitaf-earn-flow {
    margin-top: 14px;
    padding-left: 28px;
}
.qitaf-mobile-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.qitaf-mobile-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    transition: border-color var(--transition);
}
.qitaf-mobile-input-wrap:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.08);
}
.qitaf-mobile-prefix {
    padding: 0 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    line-height: 40px;
    white-space: nowrap;
}
.qitaf-mobile-input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    font-size: 0.875rem;
    padding: 8px 10px;
}
.qitaf-mobile-input:focus {
    outline: none;
}
.qitaf-mobile-input[readonly] {
    background: var(--gray-50);
    color: var(--gray-500);
    cursor: default;
}
.qitaf-earn-edit-btn,
.qitaf-earn-save-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    font-size: 0.8125rem;
    transition: all var(--transition);
}
.qitaf-earn-edit-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: rgba(27, 60, 135, 0.05);
}
.qitaf-earn-save-btn {
    border-color: #4f2d7f;
    color: #4f2d7f;
}
.qitaf-earn-save-btn:hover {
    background: #4f2d7f;
    color: var(--white);
}
.qitaf-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    margin-top: 10px;
    border: 1.5px solid #4f2d7f;
    border-radius: var(--radius-sm);
    background: #4f2d7f;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.qitaf-apply-btn:hover {
    background: #3d2263;
    border-color: #3d2263;
}
.qitaf-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.qitaf-reverse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    margin-top: 10px;
    border: 1.5px solid var(--red, #dc2626);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--red, #dc2626);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.qitaf-reverse-btn:hover {
    background: var(--red, #dc2626);
    color: var(--white);
}
.qitaf-reverse-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.qitaf-send-btn {
    padding: 8px 16px;
    background: #4f2d7f;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.qitaf-send-btn:hover {
    background: #3d2264;
}
.qitaf-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.qitaf-otp-msg {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0 0 8px 0;
}
.qitaf-otp-msg strong {
    color: var(--gray-700);
}
.qitaf-otp-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.qitaf-otp-inputs {
    display: flex;
    gap: 6px;
    flex: 1;
}
.qitaf-otp-digit {
    width: 42px;
    height: 42px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}
.qitaf-otp-digit:focus {
    border-color: #4f2d7f;
    box-shadow: 0 0 0 3px rgba(79, 45, 127, 0.1);
}
.qitaf-change-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 8px;
    transition: color var(--transition);
}
.qitaf-change-link:hover {
    color: #4f2d7f;
}
.qitaf-balance-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 12px;
}
.qitaf-balance-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.qitaf-balance-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.qitaf-balance-points {
    font-size: 1.125rem;
    font-weight: 800;
    color: #4f2d7f;
}
.qitaf-balance-sar {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.qitaf-remove-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-400);
    transition: all var(--transition);
}
.qitaf-remove-link:hover {
    background: #fee2e2;
    color: #dc2626;
}
.qitaf-amount-row {
    margin-bottom: 10px;
}
.qitaf-amount-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
}
.qitaf-amount-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    transition: border-color var(--transition);
}
.qitaf-amount-input-wrap:focus-within {
    border-color: #4f2d7f;
    box-shadow: 0 0 0 3px rgba(79, 45, 127, 0.1);
}
.qitaf-amount-prefix {
    padding: 0 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    line-height: 40px;
    white-space: nowrap;
}
.qitaf-amount-input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    font-size: 0.875rem;
    padding: 8px 10px;
    min-width: 0;
}
.qitaf-amount-input:focus {
    outline: none;
}
.qitaf-max-btn {
    padding: 6px 12px;
    background: var(--gray-100);
    color: #4f2d7f;
    border: none;
    border-left: 1px solid var(--gray-200);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.qitaf-max-btn:hover {
    background: #e9d5ff;
}
.qitaf-burn-applied {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #15803d;
}
.qitaf-burn-applied i {
    color: #16a34a;
    font-size: 1rem;
}
.qitaf-error {
    display: block;
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 6px;
    min-height: 0;
}
.qitaf-earn-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 0.8125rem;
    color: #4f2d7f;
}
.qitaf-earn-preview i {
    color: #7c3aed;
}
.qitaf-earn-preview strong {
    font-weight: 800;
}

/* Checkout page loader */
.checkout-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 80px 20px;
}
.checkout-loader-inner {
    text-align: center;
}
.checkout-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--sky);
    border-radius: 50%;
    animation: checkoutSpin 0.7s linear infinite;
    margin: 0 auto 16px;
}
@keyframes checkoutSpin {
    to { transform: rotate(360deg); }
}
.checkout-loader-inner p {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.checkout-empty-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px 120px;
}
.checkout-empty-page-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.checkout-empty-page-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}
.checkout-empty-page-icon i {
    font-size: 2.5rem;
    color: var(--sky);
}
.checkout-empty-page h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.checkout-empty-page p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}
.checkout-empty-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    background: var(--sky);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: background var(--transition);
}
.checkout-empty-page-btn:hover {
    background: var(--sky-dark);
    color: var(--white);
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 576px) {
    .checkout-section {
        padding: 20px 16px 48px;
    }

    .checkout-form-row {
        grid-template-columns: 1fr;
    }

    .checkout-payment-options {
        grid-template-columns: 1fr;
    }

    .checkout-card-body {
        padding: 16px;
    }
}

/* Invoice Type */
.checkout-invoice-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-invoice-option {
    cursor: pointer;
}

.checkout-invoice-option input {
    display: none;
}

.checkout-invoice-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.checkout-invoice-option input:checked + .checkout-invoice-option-content {
    border-color: var(--navy);
    background: rgba(0, 51, 160, 0.04);
}

.checkout-invoice-option-content i {
    font-size: 1.25rem;
    color: var(--gray-400);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.checkout-invoice-option input:checked + .checkout-invoice-option-content i {
    color: var(--navy);
}

.checkout-invoice-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.checkout-invoice-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 1px;
}

.checkout-invoice-fields {
    animation: invoiceFieldsFade 0.3s ease;
}

@keyframes invoiceFieldsFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-company-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff8e6;
    border: 1px solid #f0d68a;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #7a5d00;
    line-height: 1.5;
}

.checkout-company-notice i {
    color: #c09000;
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.checkout-field-note-inline {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-left: 4px;
}

.checkout-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.checkout-vat-input-wrapper {
    position: relative;
}

.checkout-vat-hint {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.checkout-input.input-error {
    border-color: #d63939;
    background: #fff5f5;
}

.checkout-input.input-error:focus {
    border-color: #d63939;
}

.checkout-field-error {
    display: block;
    font-size: 0.75rem;
    color: #d63939;
    margin-top: 4px;
}

@media (max-width: 576px) {
    .checkout-invoice-toggle {
        grid-template-columns: 1fr;
    }
    .checkout-form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.thankyou-card {
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 28px;
}

.thankyou-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
    animation: thankyouPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes thankyouPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.thankyou-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.thankyou-mosque-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.thankyou-mosque-badge i {
    font-size: 1.125rem;
    color: #059669;
}
.thankyou-mosque-badge span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #065f46;
}
.thankyou-ws-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    border: 1px solid var(--blue-light);
    padding: 10px 22px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.thankyou-ws-badge i {
    font-size: 1.125rem;
    color: var(--sky);
}
.thankyou-ws-badge span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.thankyou-order-number {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

/* Thank You - Order Summary */
.thankyou-summary {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 28px;
    overflow: hidden;
}

.thankyou-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.thankyou-summary-header i {
    font-size: 0.9375rem;
}

.thankyou-items {
    padding: 4px 20px;
}

.thankyou-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.thankyou-item:last-child {
    border-bottom: none;
}

.thankyou-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--white);
}

.thankyou-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.thankyou-item-img i {
    font-size: 1.125rem;
    color: var(--gray-300);
}

.thankyou-item-info {
    flex: 1;
    min-width: 0;
}

.thankyou-item-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thankyou-item-meta {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.thankyou-item-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.thankyou-totals {
    padding: 12px 20px 16px;
    border-top: 1px solid var(--gray-100);
}

.thankyou-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding: 4px 0;
}

.thankyou-free {
    color: var(--green);
    font-weight: 600;
}

.thankyou-total-grand {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    border-top: 2px solid var(--gray-200);
    padding-top: 10px;
    margin-top: 6px;
}

/* Thank You - Info Cards */
.thankyou-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.thankyou-info-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
}

.thankyou-info-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.thankyou-info-card h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.thankyou-info-card p {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
}

/* Thank You - Invoice Info */
.thankyou-invoice {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}

.thankyou-invoice-header {
    margin-bottom: 12px;
}

.thankyou-invoice-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
}

.thankyou-invoice-badge-personal {
    background: #eef2ff;
    color: #4f46e5;
}

.thankyou-invoice-badge-company {
    background: #fff7ed;
    color: #c2410c;
}

.thankyou-invoice-personal {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.thankyou-invoice-company {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.thankyou-invoice-company-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.thankyou-invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 4px 0;
}

.thankyou-invoice-row span:first-child {
    color: var(--gray-500);
}

.thankyou-invoice-row span:last-child {
    font-weight: 600;
    color: var(--gray-700);
}

/* Thank You - What's Next Steps */
.thankyou-next {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
    text-align: left;
}

.thankyou-next h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    text-align: center;
}

.thankyou-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.thankyou-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.thankyou-step:last-child {
    border-bottom: none;
}

.thankyou-step-num {
    width: 28px;
    height: 28px;
    background: var(--blue-pale);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.thankyou-step:first-child .thankyou-step-num {
    background: var(--navy);
    color: var(--white);
}

.thankyou-step strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.thankyou-step span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Thank You - Actions */
.thankyou-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.thankyou-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--sky);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all var(--transition);
}

.thankyou-btn-primary:hover {
    background: var(--sky-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27, 60, 135, 0.3);
}

.thankyou-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.thankyou-btn-outline:hover {
    background: var(--gray-50);
    color: var(--navy);
    border-color: var(--gray-300);
}

@media (max-width: 576px) {
    .thankyou-section {
        padding: 32px 16px 60px;
    }

    .thankyou-title {
        font-size: 1.375rem;
    }

    .thankyou-info-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn-primary,
    .thankyou-btn-outline {
        justify-content: center;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-breadcrumb-outer {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.pdp-breadcrumb {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 40px;
    font-size: 0.8125rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-breadcrumb a {
    color: var(--gray-500);
    transition: color var(--transition);
}

.pdp-breadcrumb a:hover {
    color: var(--navy);
}

.pdp-breadcrumb i {
    font-size: 0.5625rem;
}

.pdp-breadcrumb span {
    color: var(--gray-700);
    font-weight: 500;
}

.pdp-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 40px 64px;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pdp-image-main {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.pdp-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.pdp-image-main a.glightbox {
    display: block;
    width: 100%;
    cursor: zoom-in;
    line-height: 0;
}

.pdp-image-main .product-badge {
    top: 20px;
    left: 20px;
    z-index: 2;
}

.pdp-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pdp-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: border-color 0.2s;
}

.pdp-thumb:hover {
    border-color: var(--navy-light);
}

.pdp-thumb.active {
    border-color: var(--navy);
}

.pdp-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pdp-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--blue-pale);
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pdp-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.3;
}

.pdp-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.875rem;
    color: #F59E0B;
    margin-bottom: 20px;
}

.pdp-reviews {
    color: var(--gray-400);
    font-size: 0.8125rem;
    margin-left: 6px;
}

.pdp-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.pdp-currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pdp-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pdp-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pdp-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--blue-pale);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.pdp-spec-item i {
    font-size: 0.75rem;
    color: var(--navy-light);
}

.pdp-cart-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.pdp-qty-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pdp-qty-btn {
    width: 44px;
    height: 48px;
    background: var(--white);
    border: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.pdp-qty-btn:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.pdp-qty-value {
    width: 64px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    height: 48px;
    outline: none;
    font-family: inherit;
    background: var(--white);
    -moz-appearance: textfield;
}

.pdp-qty-value::-webkit-outer-spin-button,
.pdp-qty-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp-add-btn {
    flex: 1;
    background: var(--sky);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
    font-family: inherit;
}

.pdp-add-btn:hover {
    background: var(--sky-dark);
    box-shadow: 0 4px 14px rgba(27, 60, 135, 0.3);
}

.pdp-add-btn.in-cart {
    display: none;
}

.pdp-cart-actions:has(.pdp-add-btn.in-cart) .pdp-qty-wrapper {
    border-color: var(--navy);
}

.pdp-cart-actions:has(.pdp-add-btn.in-cart) .pdp-qty-btn {
    background: var(--sky);
    color: var(--white);
}

.pdp-cart-actions:has(.pdp-add-btn.in-cart) .pdp-qty-btn:hover {
    background: var(--sky-dark);
    color: var(--white);
}

.pdp-cart-actions:has(.pdp-add-btn.in-cart) .pdp-qty-value {
    color: var(--navy);
    border-left-color: var(--navy);
    border-right-color: var(--navy);
}

.pdp-cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #ECFDF5;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: #059669;
    font-weight: 500;
    margin-bottom: 24px;
}

.pdp-cart-info i {
    font-size: 0.9375rem;
}

.pdp-cart-info-qty {
    font-weight: 700;
}

.pdp-features {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.pdp-features h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pdp-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pdp-features li {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-features li i {
    color: var(--green);
    font-size: 0.75rem;
}

.pdp-trust {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.pdp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pdp-trust-item i {
    color: var(--navy);
    font-size: 1rem;
}

.pdp-related-outer {
    background: var(--gray-50);
}

.pdp-related {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 40px;
}

.pdp-related .section-title {
    margin-bottom: 32px;
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pdp-related-grid .product-card {
    text-decoration: none;
}

@media (max-width: 992px) {
    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pdp-image-main {
        max-width: 500px;
        margin: 0 auto;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pdp-section {
        padding: 24px 16px 48px;
    }

    .pdp-breadcrumb {
        padding: 12px 16px;
    }

    .pdp-title {
        font-size: 1.375rem;
    }

    .pdp-price {
        font-size: 1.625rem;
    }

    .pdp-cart-actions {
        flex-direction: column;
    }

    .pdp-features ul {
        grid-template-columns: 1fr;
    }

    .pdp-trust {
        flex-direction: column;
        gap: 12px;
    }

    .pdp-related-grid {
        grid-template-columns: 1fr;
    }

    .pdp-related {
        padding: 40px 16px;
    }
}

/* ===== FLOATING CART WIDGET ===== */
.floating-cart {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--sky);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 12px 10px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(27, 60, 135, 0.4);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cart.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-cart-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-cart-count {
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart-label {
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.floating-cart-total {
    font-size: 0.9375rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cart-btn {
    background: var(--white);
    color: var(--navy);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    white-space: nowrap;
}

.floating-cart-btn:hover {
    background: var(--blue-pale);
}

.floating-cart-btn i {
    font-size: 0.6875rem;
}

@media (max-width: 576px) {
    .floating-cart {
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        gap: 10px;
    }

    .floating-cart.active {
        transform: translateX(0) translateY(0);
    }

    .floating-cart-label {
        display: none;
    }
}

/* ===== FLOATING CORPORATE BAR ===== */
.floating-corp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    display: none;
    flex-direction: column-reverse;
    align-items: stretch;
}

.floating-corp.active {
    display: flex;
}

/* When floating cart is also visible, push it up */
.floating-corp.active ~ .floating-cart.active,
.floating-cart.active {
    transition: bottom 0.3s ease;
}

/* Collapsed bar */
.floating-corp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--navy);
    color: #fff;
    font-size: 0.8125rem;
    gap: 12px;
    min-height: 44px;
}

.floating-corp-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.floating-corp-bar-left > i {
    font-size: 0.875rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.floating-corp-bar-left strong {
    white-space: nowrap;
}

.floating-corp-bar-sep {
    opacity: 0.3;
    flex-shrink: 0;
}

.floating-corp-bar-discount {
    color: #86efac;
    font-weight: 600;
    white-space: nowrap;
}

.floating-corp-bar-limit {
    opacity: 0.7;
    font-size: 0.75rem;
    white-space: nowrap;
}

.floating-corp-bar-limit.warning {
    color: #fca5a5;
    opacity: 1;
    font-weight: 600;
}

.floating-corp-bar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.floating-corp-expand,
.floating-corp-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.7);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background 0.2s, color 0.2s;
}

.floating-corp-expand:hover,
.floating-corp-close:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.floating-corp-expand.expanded i {
    transform: rotate(180deg);
}

/* Expanded panel */
.floating-corp-panel {
    display: none;
    background: #fff;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
    animation: corpPanelSlideUp 0.25s ease-out;
}

@keyframes corpPanelSlideUp {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 400px; }
}

.floating-corp-panel.open {
    display: block;
}

.floating-corp-panel-body {
    display: flex;
    gap: 24px;
    padding: 16px 20px;
}

.floating-corp-panel-col {
    flex: 1;
    min-width: 0;
}

.floating-corp-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 3px 0;
    gap: 12px;
    max-width: 340px;
}

.floating-corp-line span:last-child {
    font-weight: 600;
    color: var(--gray-700);
}

.floating-corp-discount span:last-child {
    color: #2fb344;
}

.floating-corp-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 20px 12px;
    padding: 10px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: #dc2626;
    line-height: 1.4;
}

.floating-corp-warning i {
    flex-shrink: 0;
    margin-top: 1px;
}

.floating-corp-panel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 14px;
}

.floating-corp-checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--sky);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}

.floating-corp-checkout-btn:hover {
    background: var(--navy);
    color: #fff;
}

.floating-corp-remove {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.7rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.floating-corp-remove:hover {
    color: #dc2626;
}

@media (max-width: 768px) {
    .floating-corp-bar-left {
        font-size: 0.75rem;
        gap: 6px;
    }

    .floating-corp-bar-limit {
        display: none;
    }

    .floating-corp-panel-body {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .floating-corp-panel-actions {
        padding: 0 16px 12px;
    }
}

@media (max-width: 480px) {
    .floating-corp-bar-sep:nth-of-type(2),
    .floating-corp-bar-left > span:last-of-type:not(.floating-corp-bar-discount) {
        display: none;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--navy);
    max-width: 360px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    background: var(--blue-pale);
    color: var(--navy);
}

.toast-icon.success {
    background: #ECFDF5;
    color: #059669;
}

.toast-icon.warning {
    background: #FEF3C7;
    color: #D97706;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--gray-700);
}

/* ===== USER MENU ===== */
.user-menu-wrapper {
    position: relative;
}

.user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.user-menu-wrapper.active .user-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.user-menu-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.user-menu-info {
    flex: 1;
    min-width: 0;
}

.user-menu-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
}

.user-menu-phone {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.user-menu-list {
    padding: 8px;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.user-menu-item:hover {
    background: var(--blue-pale);
    color: var(--navy);
}

.user-menu-item i {
    font-size: 0.9375rem;
    width: 20px;
    text-align: center;
    color: var(--gray-400);
}

.user-menu-item:hover i {
    color: var(--navy);
}

.user-menu-footer {
    padding: 8px;
    border-top: 1px solid var(--gray-100);
}

.user-menu-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc2626;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.user-menu-logout:hover {
    background: #fef2f2;
}

.user-menu-logout i {
    font-size: 0.9375rem;
    width: 20px;
    text-align: center;
}

/* ===== SEARCH BAR ===== */
.search-wrapper {
    position: static;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 201;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
}

.search-bar.active {
    transform: translateY(0);
    visibility: visible;
}

.search-bar-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 4px 6px 4px 18px;
    transition: border-color var(--transition);
}

.search-bar-inner:focus-within {
    border-color: var(--navy);
    background: var(--white);
}

.search-bar-icon {
    color: var(--gray-400);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 1rem;
    font-family: inherit;
    background: none;
    color: var(--gray-900);
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-close {
    background: none;
    border: none;
    color: var(--gray-400);
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.search-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.search-spinner {
    color: var(--gray-400);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.search-results {
    max-width: 720px;
    margin: 0 auto;
    display: none;
}

.search-results.active {
    display: block;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--gray-900);
    transition: background 0.15s;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.active {
    background: var(--gray-50);
}

.search-result-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-100);
}

.search-result-img-placeholder {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 1.125rem;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-result-price {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.search-result-badge {
    background: var(--blue-pale);
    color: var(--navy);
    font-size: 0.625rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}

.search-no-results {
    padding: 24px 16px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.search-no-results i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
    color: var(--gray-300);
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.order-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sky);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    white-space: nowrap;
}

.order-now-btn:hover {
    background: var(--sky-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27, 60, 135, 0.3);
}

.order-now-btn i {
    font-size: 0.6875rem;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.header-icon-btn:hover {
    color: var(--navy);
    background: var(--blue-pale);
}

.login-text-badge {
    display: none;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: -4px;
    background: var(--green);
    color: var(--white);
    font-size: 0.5625rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== MINI CART (Side Drawer) ===== */
.mini-cart-wrapper {
    position: static;
}

/* Ensure Leaflet maps stay below modals and mini cart */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
    z-index: 400 !important;
}
.leaflet-container {
    z-index: 1;
}

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.mini-cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mini-cart.active {
    pointer-events: auto;
}

.mini-cart.active {
    transform: translateX(0);
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.mini-cart-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cart-header h4 i {
    font-size: 1.125rem;
}

.mini-cart-count-badge {
    background: var(--navy);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mini-cart-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-cart-clear {
    display: none;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mini-cart-clear.visible {
    display: flex;
}

.mini-cart-clear:hover {
    color: #dc2626;
    background: #fef2f2;
}

.mini-cart-clear i {
    font-size: 0.6875rem;
}

.mini-cart-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.125rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.mini-cart-close:hover {
    color: var(--navy);
    background: var(--gray-100);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.mini-cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: var(--gray-200);
}

.mini-cart-empty p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--gray-400);
}

.mini-cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mini-cart-item:first-child {
    padding-top: 0;
}

.mini-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mini-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.mini-cart-item-img i {
    font-size: 1.5rem;
    color: var(--gray-300);
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
    line-height: 1.3;
}

.mini-cart-item-sub {
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 0;
}

.mini-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.625rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.mini-cart-qty-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.mini-cart-qty-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.mini-cart-qty-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--blue-pale);
}

.mini-cart-qty-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.mini-cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
}

.mini-cart-item-total {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 4px;
    transition: color 0.2s;
}

.mini-cart-item-remove:hover {
    color: #e53e3e;
}

.mini-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
    background: var(--gray-50);
}

.mini-cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--gray-200);
}

.mini-cart-items-count {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.mini-cart-total-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
}

.mini-cart-corp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #15803d;
    font-weight: 600;
    margin-bottom: 8px;
}

.mini-cart-corp i {
    font-size: 0.6875rem;
    opacity: 0.7;
}

.btn-view-cart {
    display: block;
    text-align: center;
    padding: 11px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.btn-view-cart:hover {
    background: var(--sky);
    color: var(--white);
}

.btn-checkout {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--sky);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.btn-checkout:hover {
    background: var(--sky-dark);
    color: var(--white);
}

.mini-cart-min-order {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #92400E;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mini-cart-min-order i {
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.btn-checkout.disabled,
.floating-cart-btn.disabled,
.floating-corp-checkout-btn.disabled {
    background: var(--gray-300);
    color: var(--gray-600);
    cursor: not-allowed;
    pointer-events: auto;
    box-shadow: none;
    opacity: 0.9;
}

.btn-checkout.disabled:hover,
.floating-cart-btn.disabled:hover,
.floating-corp-checkout-btn.disabled:hover {
    background: var(--gray-300);
    color: var(--gray-600);
    box-shadow: none;
    transform: none;
}

/* ===== 4. HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 780px;
    overflow: hidden;
}

.hero-slider .slides {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slider .slide .banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-slider .slide .banner-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 40px 60px;
}

.hero-slider .slide.banner-text-left .banner-content { margin-right: auto; text-align: left; }
.hero-slider .slide.banner-text-center {
    justify-content: center;
}
.hero-slider .slide.banner-text-center .banner-content { margin: 0 auto; text-align: center; }
.hero-slider .slide.banner-text-right {
    justify-content: flex-end;
}
.hero-slider .slide.banner-text-right .banner-content { margin-left: auto; text-align: right; }

.hero-slider .slide.banner-color-light .banner-content { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-slider .slide.banner-color-dark .banner-content  { color: var(--gray-900); text-shadow: none; }

.banner-headline {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.banner-subheadline {
    font-size: clamp(0.95rem, 1.4vw, 1.125rem);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 520px;
    opacity: 0.95;
}

.banner-text-center .banner-subheadline { margin-left: auto; margin-right: auto; }
.banner-text-right  .banner-subheadline { margin-left: auto; }

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition);
}

.banner-cta-button {
    padding: 13px 28px;
    background: var(--sky);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 6px 18px rgba(27, 60, 135, 0.28);
}

.banner-cta-button:hover {
    background: var(--sky-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(27, 60, 135, 0.35);
}

.banner-color-dark .banner-cta-button {
    background: var(--navy);
    box-shadow: 0 6px 18px rgba(0, 51, 160, 0.22);
}
.banner-color-dark .banner-cta-button:hover { background: var(--navy-dark); }

.banner-cta-text_link {
    color: inherit;
    font-weight: 700;
    font-size: 0.9375rem;
    border-bottom: 2px solid currentColor;
    padding-bottom: 4px;
}
.banner-cta-text_link:hover { gap: 12px; color: inherit; }

@media (max-width: 768px) {
    .hero-slider .slide .banner-content { padding: 24px 24px; max-width: 100%; }
    .banner-headline { margin-bottom: 10px; }
    .banner-subheadline { margin-bottom: 16px; }
    .banner-cta-button { padding: 11px 22px; font-size: 0.875rem; }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-1 {
    background: linear-gradient(135deg, #E9F4FB 0%, #D4EAFA 30%, #A8D8F0 60%, #7EC8E8 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 30%, #A5D6A7 60%, #81C784 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 30%, #CE93D8 60%, #BA68C8 100%);
}

.slide-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.slide-text {
    max-width: 480px;
}

.slide-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slide-text h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.slide-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sky);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(0,51,160,0.3);
}

.btn-shop:hover {
    background: var(--sky-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,51,160,0.35);
}

.btn-shop i {
    font-size: 0.8125rem;
    transition: transform var(--transition);
}

.btn-shop:hover i {
    transform: translateX(3px);
}

.slide-image-container {
    position: relative;
}

.slide-image {
    width: 380px;
    height: 380px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
}

.slide-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-600);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background: var(--sky);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,51,160,0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dots .dot.active {
    background: var(--navy);
    width: 28px;
    border-radius: 5px;
}

/* ===== 5. BEST SELLERS ===== */
.best-sellers {
    padding: 64px 0 32px;
    position: relative;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.products-carousel {
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.product-badge i { font-size: 0.625rem; }

.product-badge.limited {
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.product-badge.limited small {
    font-size: 0.5625rem;
    font-weight: 500;
    opacity: 0.8;
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}

.product-wishlist:hover {
    color: #EF4444;
    box-shadow: var(--shadow-md);
}

.product-wishlist.active {
    color: #EF4444;
    background: #FEF2F2;
    border-color: #FECACA;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-info {
    padding: 16px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3px;
    line-height: 1.4;
}

.product-name:hover {
    color: var(--navy);
}

.product-subtitle {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-top: auto;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
}

.price-vat {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.2px;
}

.product-price .currency {
    font-size: 0.8125rem;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    color: #F59E0B;
}

.product-rating span {
    color: var(--gray-400);
    font-size: 0.6875rem;
    margin-left: 2px;
}

.btn-add-cart {
    width: 100%;
    background: var(--sky);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--sky-dark);
    box-shadow: 0 4px 14px rgba(0,51,160,0.3);
}

.btn-add-cart i { font-size: 0.9375rem; }

.btn-add-cart.in-cart {
    display: none;
}

.btn-add-cart.btn-out-of-stock {
    background: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}
.btn-add-cart.btn-out-of-stock:hover {
    background: #94a3b8;
    transform: none;
    box-shadow: none;
}

.product-card.out-of-stock .product-image img {
    opacity: 0.5;
    filter: grayscale(40%);
}

.product-badge.out-of-stock-badge {
    background: #ef4444;
    color: #fff;
}

.product-badge.sale {
    background: #16a34a;
    color: #fff;
}

.price-compare {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.85em;
    margin-right: 0.25rem;
}

.pdp-compare-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.8em;
    margin-right: 0.375rem;
}

.pdp-out-of-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #fef2f2;
    color: #dc2626;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
}

.product-qty-control {
    display: none;
    width: 100%;
    align-items: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--navy);
}

.product-qty-control.active {
    display: flex;
}

.product-qty-btn {
    width: 44px;
    height: 42px;
    background: var(--sky);
    color: var(--white);
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.product-qty-btn:hover {
    background: var(--navy-dark);
}

.product-qty-value {
    flex: 1;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-600);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
    background: var(--sky);
    color: var(--white);
    border-color: var(--navy);
}

.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dots .dot.active {
    background: var(--navy);
    width: 28px;
    border-radius: 5px;
}

.btn-shop-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 28px auto 0;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 13px 36px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-shop-all:hover {
    background: var(--sky);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,51,160,0.3);
}

.btn-shop-all-wrapper {
    text-align: center;
}

/* ===== 6A. COLLECTION — OPTION A: VISUAL CARDS GRID ===== */
.collection-a {
    padding: 32px 40px 64px;
    max-width: 1440px;
    margin: 0 auto;
}

.collection-a-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.collection-a-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-a-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.collection-a-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 18px;
}

.collection-a-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.collection-a-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.collection-a-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.collection-a-card:hover .collection-a-link {
    gap: 10px;
}

.collection-a-link i {
    font-size: 0.6875rem;
}


.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-explore:hover {
    background: var(--sky);
    color: var(--white);
}

.btn-explore i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.btn-explore:hover i {
    transform: translateX(3px);
}

/* ===== 7. WATER AT YOUR FINGERTIPS ===== */
.app-promo-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}

.app-promo {
    padding: 72px 40px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.app-promo-outer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(168,216,240,0.3);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.app-promo-text {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.app-promo-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.app-promo-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
}

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-900);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.app-badge:hover {
    background: var(--sky);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-badge i { font-size: 1.375rem; }

.app-badge-text {
    display: flex;
    flex-direction: column;
    font-size: 0.625rem;
    line-height: 1.3;
}

.app-badge-text strong {
    font-size: 0.875rem;
    font-weight: 700;
}

.app-promo-image {
    width: 320px;
    height: 240px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.app-promo-image img {
    height: 90%;
    object-fit: contain;
}

/* ===== 8. WHY CHOOSE NOVA WATER ===== */
.why-choose {
    padding: 72px 40px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--navy);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--sky);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== 9. JOURNEY VIDEO ===== */
.journey-video-outer {
    background: var(--gray-50);
}

.journey-video {
    padding: 72px 40px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 50%, var(--blue-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-overlay-text {
    position: absolute;
    bottom: 32px;
    left: 32px;
    color: var(--white);
    text-align: left;
    z-index: 1;
}

.video-overlay-text p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.video-overlay-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 1;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 4px;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-wrapper.playing {
    cursor: default;
}

.video-wrapper:hover .play-button {
    transform: scale(1.12);
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

/* ===== 10. FOLLOW US ON INSTAGRAM ===== */
.instagram-section {
    padding: 64px 40px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
}

.instagram-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 36px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--gray-100);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
}

.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,51,160,0);
    transition: background var(--transition);
}

.instagram-item:hover::after {
    background: rgba(0,51,160,0.3);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item .ig-hover-icon {
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.instagram-item:hover .ig-hover-icon {
    opacity: 1;
}

.instagram-item.featured {
    border: 3px solid var(--navy);
}

.instagram-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,51,160,0.8));
    color: var(--white);
    padding: 24px 10px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* ===== 11. BE THE FIRST TO KNOW ===== */
.newsletter-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-bar {
    color: var(--navy);
    padding: 40px 40px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
}

.newsletter-outer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(168,216,240,0.3);
    border-radius: 50%;
    left: -80px;
    bottom: -80px;
}

.newsletter-text {
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.newsletter-text p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 380px;
    position: relative;
    z-index: 1;
}

.newsletter-form label {
    font-size: 0.8125rem;
    font-weight: 500;
}

.newsletter-form-row {
    display: flex;
    gap: 8px;
}

.newsletter-form input[type="tel"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(168,216,240,0.5);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    background: rgba(255,255,255,0.7);
    color: var(--gray-900);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input[type="tel"]::placeholder {
    color: var(--gray-400);
}

.newsletter-form input[type="tel"]:focus {
    border-color: var(--sky);
    background: var(--white);
}

.btn-signup {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--transition);
}

.btn-signup:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(76,175,80,0.4);
}

.newsletter-terms {
    font-size: 0.6875rem;
    opacity: 0.55;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-terms input[type="checkbox"] {
    accent-color: var(--green);
}

.newsletter-terms a {
    text-decoration: underline;
    opacity: 0.9;
}

/* ===== 12. TRUST BAR ===== */
.trust-bar-outer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar {
    padding: 18px 40px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-item i {
    font-size: 1rem;
}

.trust-item .stars {
    color: #F59E0B;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.trust-item .check-icon {
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
}

/* ===== 13. FOOTER ===== */
.footer-outer {
    background: var(--gray-50);
}

.footer {
    padding: 56px 40px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr 1fr;
    gap: 32px;
    margin-bottom: 44px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.8125rem;
    color: var(--gray-500);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-col ul li a:hover {
    color: var(--navy);
    transform: translateX(3px);
}

.footer-contact p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact p i {
    color: var(--navy);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-900);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.footer-app-badge:hover {
    background: var(--sky);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-app-badge i { font-size: 1.25rem; }
.footer-app-badge .appgallery-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 4px; object-fit: contain; }

.footer-app-text {
    display: flex;
    flex-direction: column;
    font-size: 0.625rem;
    line-height: 1.2;
}

.footer-app-text strong {
    font-size: 0.8125rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-links {
    display: flex;
    gap: 4px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    color: var(--navy);
    background: var(--blue-pale);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--navy);
}

/* ===== LOGIN MODAL ===== */
.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 420px;
    max-width: 90vw;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.login-modal-overlay.active .login-modal {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.125rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.login-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.login-step {
    display: none;
    text-align: center;
}

.login-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-modal-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--navy);
}

.login-modal-icon.success {
    background: #ECFDF5;
    color: #059669;
}

.login-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.login-step > p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.login-form-group {
    margin-bottom: 20px;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--navy);
}

.phone-prefix {
    padding: 12px 14px;
    background: var(--gray-50);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    border-right: 1px solid var(--gray-200);
    white-space: nowrap;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.otp-digit {
    width: 56px;
    height: 56px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}

.otp-digit:focus {
    border-color: var(--navy);
}

.login-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.login-input:focus {
    border-color: var(--navy);
}

.login-input::placeholder {
    color: var(--gray-400);
}

.login-error {
    display: block;
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 8px;
    min-height: 16px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.login-btn:hover {
    background: var(--sky-dark);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.login-terms {
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 16px;
}

.login-terms a {
    color: var(--navy);
    font-weight: 500;
}

.login-resend {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.login-resend a {
    color: var(--navy);
    font-weight: 600;
}

.login-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.login-back:hover {
    color: var(--navy);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.375rem;
    cursor: pointer;
    color: var(--navy);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--blue-pale);
}

/* ===== ABOUT PAGE ===== */
.about-hero-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}

/* Rain on glass effect */
.rain-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Blurred background layer inside rain area */
.rain-blurred {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    filter: blur(10px);
    z-index: 1;
}

/* Frosted glass overlay */
.rain-frosted {
    position: absolute;
    inset: 0;
    background: rgba(200, 225, 245, 0.25);
    z-index: 2;
}

/* Rain layers */
.rain-drops, .rain-shadows {
    position: absolute;
    inset: 0;
    z-index: 3;
}
.rain-shadows {
    z-index: 2;
}

/* Individual drop — shows background image through it (refraction) */
.rain-drop {
    position: absolute;
    border-radius: 100%;
    background-image: linear-gradient(135deg, #c8e4f8 0%, #a0cce8 25%, #7ab8e0 50%, #b8d8f0 75%, #e0f0fb 100%);
    filter: blur(0.5px);
    opacity: 0;
}

/* Shadow behind each drop */
.rain-shadow {
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
    opacity: 0;
}

@keyframes rainStreak {
    0% {
        opacity: 0;
        transform: translateY(0) rotateY(180deg);
    }
    5% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(var(--streak-mid)) rotateY(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(var(--streak-end)) rotateY(180deg);
    }
}

.about-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-hero-content h1 {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.about-hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Story */
.about-story {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.about-story-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-story-text {
    flex: 1;
}
.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
    background: var(--blue-pale);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.about-label-light {
    color: var(--blue-light);
    background: rgba(255,255,255,0.12);
}
.about-story-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-story-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-story-visual {
    flex-shrink: 0;
}
.about-story-card {
    background: var(--blue-pale);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 220px;
}
.about-story-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.about-story-card span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}
.about-story-card strong {
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 700;
}

/* About Mission & Vision */
.about-mv-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
}
.about-mv {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.about-mv h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
}
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.about-mv-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(168,216,240,0.4);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: background var(--transition);
}
.about-mv-card:hover {
    background: rgba(255,255,255,0.85);
}
.about-mv-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--sky);
    margin-bottom: 20px;
}
.about-mv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.about-mv-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* About Stats */
.about-stats {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.about-stats h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 40px;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.about-stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
}
.about-stat-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.about-stat-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* About Values */
.about-values-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
}
.about-values {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.about-values h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-value-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(168,216,240,0.4);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
}
.about-value-card:hover {
    background: rgba(255,255,255,0.85);
    transform: translateY(-4px);
}
.about-value-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky);
    margin: 0 auto 20px;
}
.about-value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.about-cta-inner {
    background: var(--blue-pale);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
}
.about-cta-inner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.about-cta-inner p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}
.about-cta-btn-primary {
    background: var(--sky);
    color: var(--white);
}
.about-cta-btn-primary:hover {
    background: var(--sky-dark);
}
.about-cta-btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--navy);
}
.about-cta-btn-outline:hover {
    background: var(--sky);
    color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.contact-hero-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}
.contact-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-hero-content h1 {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.contact-hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Info Cards */
.contact-info {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--navy);
    margin: 0 auto 18px;
}
.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.contact-info-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-info-sub {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Contact Form Section */
.contact-form-outer {
    background: var(--gray-50);
}
.contact-form-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.contact-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.contact-form-text {
    flex: 0 0 360px;
}
.contact-form-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.3;
}
.contact-form-text > p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
}
.contact-form-extra {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form-extra-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-form-extra-item i {
    width: 38px;
    height: 38px;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    color: var(--navy);
    flex-shrink: 0;
}
.contact-form-extra-item div {
    display: flex;
    flex-direction: column;
}
.contact-form-extra-item strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}
.contact-form-extra-item span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-form-group {
    display: flex;
    flex-direction: column;
}
.contact-form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.contact-form-group label span {
    color: #E53E3E;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,51,160,0.08);
}
.contact-form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.contact-form-full {
    margin-bottom: 18px;
}
.contact-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--transition);
    width: 100%;
    justify-content: center;
}
.contact-form-submit:hover {
    background: var(--sky-dark);
}

/* Contact Map */
.contact-map-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.contact-map-header {
    margin-bottom: 32px;
}
.contact-map-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
}
.contact-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}
.contact-map {
    width: 100%;
    height: 420px;
}

/* Contact FAQ */
.contact-faq-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
}
.contact-faq {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}
.contact-faq h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
}
.contact-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-faq-item {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(168,216,240,0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    transition: background var(--transition);
}
.contact-faq-item:hover {
    background: rgba(255,255,255,0.85);
}
.contact-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
}
.contact-faq-question i {
    font-size: 0.75rem;
    color: var(--sky);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.contact-faq-item.active .contact-faq-question i {
    transform: rotate(180deg);
}
.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}
.contact-faq-item.active .contact-faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}
.contact-faq-answer p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Toast for contact form */
.toast {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}
.toast-show {
    opacity: 1;
    transform: translateY(0);
}
.toast-success {
    border-left: 4px solid var(--green);
}
.toast-success i {
    color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 40px 24px;
        box-shadow: var(--shadow-lg);
        z-index: 99;
        gap: 4px;
    }
    .nav-menu.active a { padding: 12px 14px; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .order-now-btn { display: none; }
    .header-divider { display: none; }
    .location-picker { display: none; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-bar { flex-direction: column; text-align: center; }
    .trust-bar { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .app-promo { flex-direction: column; }
    .collection-a-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-slider { height: 780px; }
    .slide-text h1 { font-size: 1.875rem; }
    .slide-image { width: 280px; height: 280px; }
    /* About page responsive */
    .about-story-inner { flex-direction: column; gap: 32px; }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    /* Contact page responsive */
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { flex-direction: column; gap: 32px; }
    .contact-form-text { flex: none; width: 100%; }
}

@media (max-width: 576px) {
    .container, .header, .shop-collection,
    .app-promo, .why-choose, .journey-video, .instagram-section,
    .newsletter-bar, .trust-bar, .footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    .products-grid { grid-template-columns: 1fr; padding: 0 16px; }
    .location-picker { display: none; }
    .slide-content-wrapper { padding: 0 16px; flex-direction: column; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-a { padding-left: 16px; padding-right: 16px; }
    .collection-a-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slider { height: 56.25vw; min-height: auto; }
    .slide-image { display: none; }
    .newsletter-form { min-width: auto; width: 100%; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .announcement-bar { font-size: 0.6875rem; }
    /* About & Contact responsive */
    .about-hero, .about-story, .about-mv, .about-stats, .about-values, .about-cta,
    .contact-hero, .contact-info, .contact-form-section, .contact-map-section, .contact-faq {
        padding-left: 16px;
        padding-right: 16px;
    }
    .about-hero-content h1, .contact-hero-content h1 { font-size: 1.875rem; }
    .about-hero-content p, .contact-hero-content p { font-size: 0.9375rem; }
    .about-hero, .contact-hero { padding-top: 48px; padding-bottom: 48px; }
    .about-story, .about-stats, .about-cta, .contact-info, .contact-map-section { padding-top: 48px; padding-bottom: 48px; }
    .about-mv, .about-values, .contact-faq { padding-top: 48px; padding-bottom: 48px; }
    .contact-form-section { padding-top: 48px; padding-bottom: 48px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-stat-number { font-size: 1.75rem; }
    .about-story-text h2, .about-mv h2, .about-stats h2, .about-values h2 { font-size: 1.5rem; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 16px; }
    .contact-map { height: 300px; }
    .about-cta-inner { padding: 36px 20px; }
    .about-cta-inner h2, .contact-map-header h2, .contact-faq h2, .contact-form-text h2 { font-size: 1.375rem; }
}

/* ===== ACCOUNT PAGE ===== */
.account-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    min-height: 60vh;
}

.account-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar */
.account-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.account-sidebar-header {
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.account-sidebar-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.account-sidebar-phone {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.account-nav {
    padding: 8px 0;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.account-nav-item:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.account-nav-item.active {
    background: var(--blue-pale);
    color: var(--navy);
    border-left-color: var(--navy);
    font-weight: 600;
}

.account-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 0.9375rem;
}

.account-nav-item.account-logout-btn {
    color: #dc2626;
    border-top: 1px solid var(--gray-200);
    margin-top: 4px;
}

.account-nav-item.account-logout-btn:hover {
    background: #fef2f2;
    color: #b91c1c;
}

/* Content area */
.account-content {
    min-height: 400px;
}

.account-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.account-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.account-section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Buttons */
.account-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.account-btn-primary {
    background: var(--sky);
    color: var(--white);
}

.account-btn-primary:hover {
    background: var(--sky-dark);
}

.account-btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--gray-300);
}

.account-btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--navy);
}

/* Profile form */
.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-field input {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--gray-900);
    font-family: inherit;
    transition: all var(--transition);
}

.profile-field input:not(:disabled) {
    background: var(--white);
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.08);
}

.profile-field input:not(:disabled):focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.15);
}

.profile-field input.profile-readonly {
    background: var(--gray-100) !important;
    color: var(--gray-500) !important;
    border-color: var(--gray-200) !important;
    box-shadow: none !important;
}

.profile-error {
    color: #dc2626;
    font-size: 0.8125rem;
    margin-top: 12px;
    min-height: 18px;
}

.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* Empty state */
.account-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.account-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.account-empty-state h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.account-empty-state p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* ===== ORDERS PAGE ===== */
.orders-table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.orders-table thead th {
    text-align: left;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
}

.orders-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
}

.orders-table tbody tr:hover {
    background: var(--gray-50);
}

.orders-table tbody td {
    padding: 14px 14px;
    vertical-align: middle;
    color: var(--gray-700);
}

.orders-table-id {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.orders-table-date {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
}

.orders-table-time {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.orders-table-items {
    font-weight: 600;
    color: var(--gray-700);
}

.orders-table-address {
    font-size: 0.75rem;
    color: var(--gray-500);
    max-width: 180px;
    display: block;
    line-height: 1.4;
}

.orders-table-payment {
    font-size: 0.75rem;
    white-space: nowrap;
}

.orders-table-total {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.order-status i {
    font-size: 0.625rem;
}

.order-row-clickable {
    cursor: pointer;
}

.orders-table-reorder-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--navy);
    background: var(--blue-pale);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
}

.orders-table-reorder-btn:hover {
    background: var(--sky);
    color: var(--white);
}

/* Order Detail Inline */
.order-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--gray-500);
    margin-right: 8px;
    transition: all var(--transition);
}

.order-detail-back:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.order-detail-map-section {
    margin-top: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.order-detail-map {
    height: 200px;
    width: 100%;
}

.order-detail-actions {
    padding: 20px 0 4px;
    display: flex;
    gap: 10px;
}

/* Reschedule Modal */
.reschedule-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.reschedule-overlay.active {
    display: flex;
}

.reschedule-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: rescheduleIn 0.3s ease;
}

@keyframes rescheduleIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reschedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.reschedule-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reschedule-header h3 i {
    color: var(--navy);
}

.reschedule-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.125rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.reschedule-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.reschedule-body {
    padding: 20px 24px;
}

.reschedule-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.reschedule-date-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reschedule-date-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.reschedule-date-arrow:hover:not(:disabled) {
    border-color: var(--navy);
    color: var(--navy);
}

.reschedule-date-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reschedule-date-track-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    cursor: grab;
}

.reschedule-dates {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.reschedule-date-card {
    min-width: 68px;
    padding: 10px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.reschedule-date-card:hover:not(.disabled) {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.reschedule-date-card.selected {
    border-color: var(--navy);
    background: var(--sky);
    color: var(--white);
}

.reschedule-date-card.selected .reschedule-date-day,
.reschedule-date-card.selected .reschedule-date-num,
.reschedule-date-card.selected .reschedule-date-month {
    color: var(--white);
}

.reschedule-date-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reschedule-date-day {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.reschedule-date-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.reschedule-date-month {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.reschedule-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.reschedule-time-option {
    position: relative;
    cursor: pointer;
}

.reschedule-time-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.reschedule-time-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.reschedule-time-content i {
    font-size: 1.125rem;
    color: var(--gray-400);
}

.reschedule-time-option.active .reschedule-time-content,
.reschedule-time-option input:checked ~ .reschedule-time-content {
    border-color: var(--navy);
    background: var(--blue-pale);
}

.reschedule-time-option.active .reschedule-time-content i,
.reschedule-time-option input:checked ~ .reschedule-time-content i {
    color: var(--navy);
}

.reschedule-time-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.reschedule-time-range {
    display: block;
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.reschedule-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 576px) {
    .reschedule-modal {
        max-width: 100%;
    }
    .reschedule-times {
        grid-template-columns: 1fr;
    }
}

/* Return Request Modal */
.return-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.return-overlay.active {
    display: flex;
}

.return-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: rescheduleIn 0.3s ease;
}

.return-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.return-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.return-header h3 i {
    color: var(--navy);
}

.return-body {
    padding: 20px 24px;
}

.return-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.return-reason-option {
    position: relative;
    cursor: pointer;
}

.return-reason-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.return-reason-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
}

.return-reason-content i {
    font-size: 0.9375rem;
    color: var(--gray-400);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.return-reason-option.active .return-reason-content,
.return-reason-option input:checked ~ .return-reason-content {
    border-color: var(--navy);
    background: var(--blue-pale);
    color: var(--navy);
}

.return-reason-option.active .return-reason-content i,
.return-reason-option input:checked ~ .return-reason-content i {
    color: var(--navy);
}

.return-reason-content:hover {
    border-color: var(--gray-300);
}

.return-notes {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-family: inherit;
    color: var(--gray-700);
    resize: vertical;
    outline: none;
    transition: border-color var(--transition);
}

.return-notes:focus {
    border-color: var(--navy);
}

/* Return Banner in Order Detail */
.order-return-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
}

.order-return-banner > i {
    font-size: 1.125rem;
    color: #d97706;
    margin-top: 2px;
    flex-shrink: 0;
}

.order-return-banner strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 2px;
}

.order-return-banner span {
    display: block;
    font-size: 0.8125rem;
    color: #a16207;
    line-height: 1.4;
}

.order-return-notes {
    font-style: italic;
    margin-top: 4px;
    color: #b45309;
}

@media (max-width: 576px) {
    .return-reasons {
        grid-template-columns: 1fr;
    }
}

.account-btn-danger {
    background: var(--white);
    color: #dc2626;
    border: 1px solid #fecaca;
}

.account-btn-danger:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.order-detail-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
}

.order-detail-status-id {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 700;
    opacity: 0.7;
    white-space: nowrap;
}

/* Order Delivery Info Strip */
.order-detail-delivery-strip {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-top: 16px;
    overflow: hidden;
}

.order-delivery-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    flex: 1;
    min-width: 0;
}

.order-delivery-card-wide {
    flex: 1.5;
}

.order-delivery-divider {
    width: 1px;
    background: var(--gray-200);
    align-self: stretch;
    margin: 10px 0;
}

.order-delivery-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-delivery-icon i {
    font-size: 0.875rem;
    color: var(--navy);
}

.order-delivery-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.order-delivery-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.order-delivery-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.order-detail-status-bar i {
    font-size: 1.375rem;
    flex-shrink: 0;
}

.order-detail-status-bar strong {
    display: block;
    font-size: 0.875rem;
    line-height: 1.3;
}

.order-detail-status-bar span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.order-detail-section {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
}

.order-detail-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.order-detail-section-title i {
    font-size: 0.75rem;
}

.order-detail-order-id {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--blue-pale);
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.order-detail-items {
    display: flex;
    flex-direction: column;
}

.order-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-detail-item:last-child {
    border-bottom: none;
}

.order-detail-item-img {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--white);
}

.order-detail-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.order-detail-item-img i {
    font-size: 1rem;
    color: var(--gray-300);
}

.order-detail-item-info {
    flex: 1;
    min-width: 0;
}

.order-detail-item-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-detail-item-meta {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.order-detail-item-price {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.order-detail-totals {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.order-detail-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding: 4px 0;
}

.order-detail-free {
    color: var(--green);
    font-weight: 600;
}

.order-detail-discount {
    color: #16a34a;
    font-weight: 600;
}

.order-detail-grand {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--navy);
    border-top: 2px solid var(--gray-200);
    padding-top: 8px;
    margin-top: 4px;
}

.order-detail-invoice-info {
    padding: 2px 0;
}

.order-invoice-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
}

.order-invoice-badge-personal {
    background: #eef2ff;
    color: #4f46e5;
}

.order-invoice-badge-company {
    background: #fff7ed;
    color: #c2410c;
}

.order-invoice-personal-name {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.order-invoice-company-details {
    margin-top: 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.order-invoice-company-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-200);
}

.order-invoice-company-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 3px 0;
}

.order-invoice-company-row span:first-child {
    color: var(--gray-500);
}

.order-invoice-company-row span:last-child {
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .order-detail-delivery-strip {
        flex-direction: column;
    }

    .order-delivery-divider {
        width: auto;
        height: 1px;
        margin: 0 16px;
    }

    .order-delivery-card {
        min-width: auto;
    }

    .order-detail-status-bar {
        flex-wrap: wrap;
    }

    .order-detail-status-id {
        margin-left: 34px;
        width: 100%;
    }
}

/* Address cards */
.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.address-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.address-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.address-card.is-default {
    border-color: var(--navy);
    box-shadow: 0 0 0 1px var(--navy);
}

.address-default-badge {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--navy);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-action-btn.address-default-btn:hover {
    background: #FEF3C7;
    color: #D97706;
}

.address-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 0;
}

.address-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-label-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.address-sub-type-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-400);
}

.address-card-actions {
    display: flex;
    gap: 4px;
}

.address-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--gray-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.8125rem;
}

.address-action-btn:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.address-action-btn.address-delete-btn:hover {
    background: #fef2f2;
    color: #dc2626;
}

.address-card-body {
    padding: 12px 20px;
    flex: 1;
}

.address-card-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.address-card-formatted {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.address-card-map-preview {
    height: 120px;
    width: 100%;
}

/* Address modal */
.address-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.address-modal-overlay.active {
    display: flex;
}

.address-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.address-modal-map {
    max-width: 640px;
}

.address-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.address-modal-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.address-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--gray-400);
    font-size: 1.125rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.address-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.address-modal-body {
    padding: 0;
}

.address-step {
    display: none;
    padding: 24px;
}

.address-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.address-step-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-step-hint i {
    color: var(--navy);
}

.address-map-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.address-map {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.address-locate-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--navy);
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.address-locate-btn:hover {
    background: var(--sky);
    color: var(--white);
}

.address-locate-btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.address-locate-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.address-map-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.8125rem;
    color: var(--gray-700);
    min-height: 44px;
}

.address-map-result i {
    color: var(--navy);
    font-size: 1rem;
    flex-shrink: 0;
}

.address-map-confirm {
    width: 100%;
}

.address-form-group {
    margin-bottom: 18px;
}

.address-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.address-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-900);
    font-family: inherit;
    transition: all var(--transition);
}

.address-input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.1);
}

.address-type-options {
    display: flex;
    gap: 8px;
}

.address-type-option {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.address-type-option:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.address-type-option.active {
    background: var(--blue-pale);
    border-color: var(--navy);
    color: var(--navy);
    font-weight: 600;
}

.address-sub-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.address-sub-type-options .address-type-option {
    padding: 8px 12px;
}

.address-selected-location {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    border: 1px solid var(--navy);
    margin-bottom: 16px;
}

.address-selected-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.address-selected-text {
    flex: 1;
    min-width: 0;
}

.address-selected-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.address-selected-address {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-change-location {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--white);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.address-change-location:hover {
    background: var(--sky);
    color: var(--white);
}

.address-form-error {
    color: #dc2626;
    font-size: 0.8125rem;
    min-height: 18px;
}

.address-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
}

/* Account page responsive */
@media (max-width: 900px) {
    .account-page {
        padding: 24px 16px;
    }

    .account-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-sidebar {
        position: static;
    }

    .account-sidebar-header {
        padding: 20px;
    }

    .account-nav {
        display: flex;
        overflow-x: auto;
        padding: 0;
        -webkit-overflow-scrolling: touch;
    }

    .account-nav-item {
        white-space: nowrap;
        padding: 12px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.8125rem;
    }

    .account-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--navy);
    }

    .account-nav-item.account-logout-btn {
        border-top: none;
        margin-top: 0;
    }

    .account-section {
        padding: 20px 16px;
    }

    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .address-map {
        height: 250px;
    }

    .addresses-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .account-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .address-type-options {
        flex-direction: column;
    }

    .address-modal-footer {
        flex-direction: column;
    }

    .address-modal-footer .account-btn {
        width: 100%;
        justify-content: center;
    }

    .address-map {
        height: 220px;
    }
}

/* ===== OFFERS PAGE ===== */

/* Hero */
.offers-hero-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 50%, var(--blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.offers-hero-outer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168,216,240,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.offers-hero-outer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,216,240,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.offers-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.offers-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.offers-hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Sections */
.offers-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 40px;
}

.offers-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.offers-section-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 40px;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Offer Card */
.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.offer-card-image {
    position: relative;
    background: var(--gray-50);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    overflow: hidden;
}

.offer-card-image img {
    max-height: 100%;
    object-fit: contain;
}

/* Badge ribbon */
.offer-badge {
    position: absolute;
    top: 16px;
    left: -8px;
    padding: 6px 16px 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    z-index: 2;
}

.offer-badge::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-top: 8px solid currentColor;
}

.offer-badge-limited {
    background: var(--navy);
}

.offer-badge-limited::before {
    border-top-color: var(--navy-dark);
}

.offer-badge-hot {
    background: #E53E3E;
}

.offer-badge-hot::before {
    border-top-color: #C53030;
}

.offer-badge-value {
    background: var(--green);
}

.offer-badge-value::before {
    border-top-color: var(--green-dark);
}

.offer-card-body {
    padding: 24px;
}

.offer-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.offer-card-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.offer-card-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.offer-price-original {
    font-size: 0.9375rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.offer-price-sale {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--green);
}

.offer-price-sale small {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-500);
}

.offer-price-save {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green);
}

.offer-price-save i {
    margin-right: 4px;
}

.offer-card-expiry {
    font-size: 0.8125rem;
    color: #E53E3E;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-card-expiry i {
    font-size: 0.875rem;
}

.offer-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.offer-btn-cart:hover {
    background: var(--sky-dark);
    transform: translateY(-1px);
}

/* Promo Banner */
.offers-promo-outer {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.offers-promo {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.offers-promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offers-promo-icon {
    font-size: 2.25rem;
    color: var(--white);
    opacity: 0.9;
}

.offers-promo-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.offers-promo-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}

.offers-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--green-dark);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform var(--transition), box-shadow var(--transition);
}

.offers-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Subscription Grid */
.offers-subscriptions {
    background: transparent;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.subscription-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.subscription-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.subscription-card-popular {
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    z-index: 1;
}

.subscription-card-popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.subscription-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.subscription-card-header {
    margin-bottom: 24px;
}

.subscription-card-header i {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 12px;
    display: block;
}

.subscription-card-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.subscription-discount {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
}

.subscription-features {
    text-align: left;
    margin-bottom: 28px;
}

.subscription-features li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-features li:last-child {
    border-bottom: none;
}

.subscription-features li i {
    color: var(--green);
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.subscription-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.subscription-btn:hover {
    background: var(--sky);
    color: var(--white);
    transform: translateY(-1px);
}

.subscription-btn-popular {
    background: var(--sky);
    color: var(--white);
}

.subscription-btn-popular:hover {
    background: var(--sky-dark);
    border-color: var(--navy-dark);
}

/* Newsletter CTA */
.offers-newsletter-outer {
    background: var(--blue-pale);
}

.offers-newsletter {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 40px;
}

.offers-newsletter-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.offers-newsletter-icon {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.offers-newsletter-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.offers-newsletter-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.offers-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.offers-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.offers-newsletter-form input:focus {
    border-color: var(--navy);
}

.offers-newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--sky);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.offers-newsletter-form button:hover {
    background: var(--sky-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .offers-grid,
    .subscription-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid .offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .subscription-card-popular {
        transform: scale(1);
    }

    .subscription-card-popular:hover {
        transform: translateY(-4px);
    }

    .subscription-grid .subscription-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .offers-hero {
        padding: 48px 24px;
    }

    .offers-hero-title {
        font-size: 2rem;
    }

    .offers-hero-subtitle {
        font-size: 0.9375rem;
    }

    .offers-section {
        padding: 48px 24px;
    }

    .offers-section-title {
        font-size: 1.5rem;
    }

    .offers-grid,
    .subscription-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid .offer-card:last-child,
    .subscription-grid .subscription-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .offers-promo {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .offers-promo-content {
        flex-direction: column;
        text-align: center;
    }

    .offers-newsletter {
        padding: 48px 24px;
    }

    .offers-newsletter-form {
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
    }

    .offers-newsletter-form input {
        border-right: 2px solid var(--gray-200);
        border-radius: var(--radius-md);
        margin-bottom: 12px;
    }

    .offers-newsletter-form button {
        border-radius: var(--radius-md);
        justify-content: center;
    }
}

/* =====================================================
   NEWS / BLOG STYLES
   ===================================================== */

/* Hero */
.news-hero-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}
.news-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.news-hero-content h1 {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.news-hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Placeholder Images */
.news-placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 3rem;
}
.news-placeholder-company {
    background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky-light) 100%);
}
.news-placeholder-sustainability {
    background: linear-gradient(135deg, #2e7d32 0%, #4CAF50 100%);
}
.news-placeholder-products {
    background: linear-gradient(135deg, #0288d1 0%, #4fc3f7 100%);
}
.news-placeholder-community {
    background: linear-gradient(135deg, #e65100 0%, #ff9800 100%);
}
.news-placeholder-health {
    background: linear-gradient(135deg, #c62828 0%, #ef5350 100%);
}

/* Category Tags */
.news-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-cat-company {
    background: var(--blue-pale);
    color: var(--navy);
}
.news-cat-sustainability {
    background: #e8f5e9;
    color: #2e7d32;
}
.news-cat-products {
    background: #e1f5fe;
    color: #0277bd;
}
.news-cat-community {
    background: #fff3e0;
    color: #e65100;
}
.news-cat-health {
    background: #ffebee;
    color: #c62828;
}

/* Meta */
.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--gray-500);
}
.news-meta i {
    margin-right: 4px;
}

/* Read More Link */
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}
.news-read-more:hover {
    color: var(--blue-sky);
    gap: 10px;
}

/* Featured Post */
.news-featured {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 0;
}
.news-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.news-featured-image {
    overflow: hidden;
}
.news-featured-image .news-placeholder-img {
    min-height: 360px;
    font-size: 4rem;
}
.news-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.news-featured-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}
.news-featured-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.news-featured-content h2 a:hover {
    color: var(--navy);
}
.news-featured-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Blog Grid */
.news-grid-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.news-card-image {
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.news-card-image .news-placeholder-img {
    min-height: 200px;
    transition: transform 0.3s ease;
}
.news-card:hover .news-card-image .news-placeholder-img {
    transform: scale(1.05);
}
.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.news-card-body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gray-900);
}
.news-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.news-card-body h3 a:hover {
    color: var(--navy);
}
.news-card-body p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.news-card-body .news-read-more {
    margin-top: auto;
}

/* =====================================================
   ARTICLE / SINGLE POST STYLES
   ===================================================== */

.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 8px;
}
.article-back:hover {
    color: var(--blue-sky);
    gap: 12px;
}
.article-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.article-image-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
}
.article-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 60px;
}
.article-body p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 24px;
}
.article-body p:first-child {
    font-size: 1.125rem;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.8;
}

/* Share Buttons */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.article-share-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
}
.article-share-buttons {
    display: flex;
    gap: 10px;
}
.article-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.article-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.article-share-facebook {
    background: #1877f2;
}
.article-share-twitter {
    background: #0f1419;
}
.article-share-linkedin {
    background: #0a66c2;
}
.article-share-copy {
    background: var(--gray-500);
}

/* Related Posts */
.news-related-outer {
    background: var(--gray-50);
}
.news-related {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}
.news-related h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
    text-align: center;
}

/* =====================================================
   NEWS RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-featured-card {
        grid-template-columns: 1fr;
    }
    .news-featured-image .news-placeholder-img {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 48px 16px;
    }
    .news-hero-content h1 {
        font-size: 1.875rem;
    }
    .news-hero-content p {
        font-size: 0.9375rem;
    }
    .news-featured {
        padding: 40px 16px 0;
    }
    .news-featured-content {
        padding: 24px;
    }
    .news-featured-content h2 {
        font-size: 1.375rem;
    }
    .news-grid-section {
        padding: 40px 16px 60px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-header {
        padding: 24px 16px 0;
    }
    .article-header h1 {
        font-size: 1.625rem;
    }
    .article-image-section {
        padding: 20px 16px;
    }
    .article-body {
        padding: 0 16px 40px;
    }
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-related {
        padding: 40px 16px 60px;
    }
    .news-related h2 {
        font-size: 1.5rem;
    }
}

/* ===== PRODUCTS BRANDING PAGE ===== */

/* Hero with Background Image */
.prod-hero-outer {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.prod-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}
.prod-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,51,160,0.4) 0%, rgba(20,45,102,0.25) 100%);
}
.prod-hero {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px;
    width: 100%;
}
.prod-hero-content {
    max-width: 640px;
}
.prod-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue-light);
    margin-bottom: 20px;
}
.prod-hero-content h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.prod-hero-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}
.prod-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--navy);
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.prod-hero-btn:hover {
    background: var(--blue-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Brand Promise Strip */
.prod-promise-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    border-bottom: 1px solid rgba(168,216,240,0.4);
}
.prod-promise {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.prod-promise-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 20px;
    border-right: 1px solid rgba(168,216,240,0.4);
}
.prod-promise-item:last-child {
    border-right: none;
}
.prod-promise-item i {
    font-size: 1.375rem;
    color: var(--sky);
    flex-shrink: 0;
}
.prod-promise-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}
.prod-promise-item span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Range Sections */
.prod-range-outer {
    background: var(--white);
}
.prod-range-outer.prod-range-alt {
    background: var(--gray-50);
}
.prod-range {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px;
}
.prod-range-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.prod-range-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    background: var(--blue-pale);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}
.prod-range-label-light {
    background: rgba(255,255,255,0.15);
    color: var(--blue-light);
}
.prod-range-header h2 {
    font-size: 2.375rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.prod-range-header p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* Feature Cards Grid */
.prod-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.prod-features-grid.prod-features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
}
.prod-features-grid.prod-features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    margin: 0 auto;
}
.prod-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.prod-range-alt .prod-feature-card {
    background: var(--white);
    border-color: var(--gray-200);
}
.prod-feature-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.prod-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--navy);
    transition: var(--transition);
}
.prod-feature-card:hover .prod-feature-icon {
    background: var(--sky);
    color: var(--white);
}
.prod-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.prod-feature-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Horizontal Feature Cards */
.prod-feature-card.prod-feature-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    padding: 40px 36px;
}
.prod-feature-card-horizontal .prod-feature-icon {
    margin: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    font-size: 1.375rem;
}
.prod-feature-card-horizontal h4 {
    margin-bottom: 8px;
}

/* Sparkling Badges */
.prod-sparkling-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.prod-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--blue-pale);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
}
.prod-badge i {
    font-size: 0.6875rem;
    color: var(--green);
}

/* Lifestyle Image Section */
.prod-lifestyle-outer {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.prod-lifestyle-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.65);
}
.prod-lifestyle-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,51,160,0.5) 0%, rgba(0,51,160,0.2) 100%);
}
.prod-lifestyle {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px;
    width: 100%;
}
.prod-lifestyle-content {
    max-width: 580px;
}
.prod-lifestyle-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}
.prod-lifestyle-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 40px;
}
.prod-lifestyle-stats {
    display: flex;
    gap: 48px;
}
.prod-lifestyle-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.prod-lifestyle-stat span {
    font-size: 0.8125rem;
    color: var(--blue-light);
    font-weight: 500;
}

/* Bottle Hero Image */
.prod-bottle-outer {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-bottle-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}
.prod-bottle-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,51,160,0.35) 0%, rgba(20,45,102,0.4) 100%);
}
.prod-bottle {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
    text-align: center;
}
.prod-bottle-content {
    max-width: 700px;
    margin: 0 auto;
}
.prod-bottle-content h2 {
    font-size: 2.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}
.prod-bottle-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
}

/* Process Steps */
.prod-process-outer {
    background: var(--white);
}
.prod-process {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px;
}
.prod-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.prod-process-step {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.prod-process-step:hover {
    background: var(--white);
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
}
.prod-process-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-pale);
    margin-bottom: 16px;
    line-height: 1;
}
.prod-process-step:hover .prod-process-num {
    color: var(--navy);
}
.prod-process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.prod-process-step p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* CTA */
.prod-cta {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.prod-cta-inner {
    background: var(--blue-pale);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
}
.prod-cta-inner h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}
.prod-cta-inner p {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.prod-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.prod-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.prod-cta-btn-primary {
    background: var(--sky);
    color: var(--white);
}
.prod-cta-btn-primary:hover {
    background: var(--sky-dark);
    box-shadow: 0 4px 14px rgba(0,51,160,0.3);
}
.prod-cta-btn-outline {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--navy);
}
.prod-cta-btn-outline:hover {
    background: var(--sky);
    color: var(--white);
}

/* Products Page Responsive */
@media (max-width: 1024px) {
    .prod-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-features-grid.prod-features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .prod-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .prod-promise {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-promise-item:nth-child(2) {
        border-right: none;
    }
    .prod-lifestyle-stats {
        gap: 32px;
    }
    .prod-lifestyle-stat strong {
        font-size: 1.625rem;
    }
}

@media (max-width: 600px) {
    .prod-hero-outer {
        min-height: 440px;
    }
    .prod-hero {
        padding: 60px 20px;
    }
    .prod-hero-content h1 {
        font-size: 2.125rem;
    }
    .prod-hero-content p {
        font-size: 0.9375rem;
    }
    .prod-promise {
        grid-template-columns: 1fr;
    }
    .prod-promise-item {
        border-right: none;
        border-bottom: 1px solid rgba(168,216,240,0.4);
        padding: 20px 20px;
    }
    .prod-promise-item:last-child {
        border-bottom: none;
    }
    .prod-range {
        padding: 60px 20px;
    }
    .prod-range-header h2 {
        font-size: 1.75rem;
    }
    .prod-range-header {
        margin-bottom: 40px;
    }
    .prod-features-grid,
    .prod-features-grid.prod-features-grid-3,
    .prod-features-grid.prod-features-grid-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .prod-feature-card.prod-feature-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    .prod-feature-card-horizontal .prod-feature-icon {
        margin: 0 auto;
    }
    .prod-lifestyle-outer {
        min-height: 400px;
    }
    .prod-lifestyle {
        padding: 60px 20px;
    }
    .prod-lifestyle-content h2 {
        font-size: 1.75rem;
    }
    .prod-lifestyle-stats {
        flex-direction: column;
        gap: 20px;
    }
    .prod-bottle-outer {
        min-height: 320px;
    }
    .prod-bottle {
        padding: 60px 20px;
    }
    .prod-bottle-content h2 {
        font-size: 1.625rem;
    }
    .prod-process {
        padding: 60px 20px;
    }
    .prod-process-steps {
        grid-template-columns: 1fr;
    }
    .prod-sparkling-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .prod-cta {
        padding: 40px 20px;
    }
    .prod-cta-inner {
        padding: 40px 20px;
    }
    .prod-cta-inner h2 {
        font-size: 1.5rem;
    }
}

/* ===== SHOP PAGE ===== */
.shop-hero-outer {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-sky) 100%);
    position: relative;
    overflow: hidden;
}
.shop-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.shop-hero-content h1 {
    font-size: 2.625rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.shop-hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Top-Level Category Tabs */
.shop-tabs-outer {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.shop-tabs-bar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.shop-tab i {
    font-size: 0.8125rem;
}
.shop-tab:hover {
    border-color: var(--sky);
    color: var(--sky);
}
.shop-tab.active {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
}

/* Deliver-To Sub-tabs (inline in filter bar) */
.shop-subtabs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.shop-subtab {
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.shop-subtab i {
    font-size: 0.75rem;
}
.shop-subtab:hover {
    border-color: var(--sky);
    color: var(--sky);
}
.shop-subtab.active {
    background: var(--blue-pale);
    color: var(--sky);
    border-color: var(--sky);
}

/* Filter bar layout */
.shop-filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-filter-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.shop-filter-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-200);
    flex-shrink: 0;
}
.shop-filter-bar.shop-filter-bar-right {
    justify-content: flex-end;
}

/* Tab Content Visibility */
.shop-tab-content {
    display: none;
}
.shop-tab-content.active {
    display: block;
}
.shop-subtab-content {
    display: none;
}
.shop-subtab-content.active {
    display: block;
}

/* Empty State */
.shop-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
}
.shop-empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gray-300);
}
.shop-empty-state h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.shop-empty-state p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    max-width: 400px;
    margin: 0 auto;
}


/* Cart Reset Confirmation Modal */
.cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    padding: 20px;
}
.cart-modal-overlay.active {
    opacity: 1;
}
.cart-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px 28px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: scale(0.9) translateY(10px);
    transition: transform 0.25s ease;
}
.cart-modal-overlay.active .cart-modal {
    transform: scale(1) translateY(0);
}
.cart-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FEF3C7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.cart-modal-icon i {
    font-size: 1.375rem;
    color: #D97706;
}
.cart-modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.cart-modal-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}
.cart-modal-text strong {
    color: var(--gray-700);
    font-weight: 600;
}
.cart-modal-destination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.cart-modal-destination i {
    color: var(--sky);
    font-size: 0.875rem;
}
.cart-modal-destination span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
}
.cart-modal-actions {
    display: flex;
    gap: 10px;
}
.cart-modal-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: inherit;
}
.cart-modal-cancel {
    background: var(--gray-100);
    color: var(--gray-600);
}
.cart-modal-cancel:hover {
    background: var(--gray-200);
}
.cart-modal-confirm {
    background: #DC2626;
    color: var(--white);
}
.cart-modal-confirm:hover {
    background: #B91C1C;
}

/* Cart-merge conflict modal — two-cart comparison */
.cart-modal-wide {
    max-width: 720px;
    padding: 32px 28px 24px;
}
.cart-modal-wide .cart-modal-text { margin-bottom: 22px; }
.cart-conflict-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}
.cart-conflict-panel {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cart-conflict-panel:hover {
    border-color: var(--sky);
    box-shadow: 0 4px 16px rgba(74, 159, 229, 0.12);
}
.cart-conflict-panel-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.cart-conflict-source {
    display: inline-block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    line-height: 1.2;
}
.cart-conflict-source.is-saved {
    background: var(--gray-100);
    color: var(--gray-600);
}
.cart-conflict-source.is-fresh {
    background: var(--blue-pale);
    color: var(--sky);
}
.cart-conflict-mode {
    font-weight: 800;
    color: var(--navy);
    font-size: 1.0625rem;
    line-height: 1.25;
}
.cart-conflict-items {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
}
.cart-conflict-items::-webkit-scrollbar { width: 6px; }
.cart-conflict-items::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}
.cart-conflict-items::-webkit-scrollbar-track { background: transparent; }
.cart-conflict-items li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
    color: var(--gray-700);
}
.cart-conflict-items li:first-child { padding-top: 4px; }
.cart-conflict-items li:last-child { border-bottom: none; padding-bottom: 4px; }
.cart-conflict-item-name {
    flex: 1;
    line-height: 1.4;
    word-break: break-word;
}
.cart-conflict-item-qty {
    color: var(--navy);
    font-weight: 700;
    background: var(--gray-100);
    padding: 3px 9px;
    border-radius: 100px;
    font-size: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.4;
}
.cart-conflict-empty {
    color: var(--gray-400);
    font-style: italic;
    padding: 10px 0;
}
.cart-conflict-keep {
    background: var(--sky);
    color: var(--white);
    width: 100%;
    margin-top: auto;
    padding: 11px 12px;
    line-height: 1.3;
    word-break: break-word;
}
.cart-conflict-keep:hover { background: var(--navy); }
.cart-conflict-keep[disabled] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 600px) {
    .cart-conflict-panels { grid-template-columns: 1fr; }
    .cart-modal-wide { max-width: 440px; padding: 28px 20px 20px; }
}

/* Filter/Sort Bar */
.shop-filter-outer {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 90;
}
.shop-filter-bar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-filter-categories {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.shop-filter-btn:hover {
    border-color: var(--sky);
    color: var(--sky);
}
.shop-filter-btn.active {
    background: var(--sky);
    color: var(--white);
    border-color: var(--sky);
}
.shop-filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.shop-results-count {
    font-size: 0.8125rem;
    color: var(--gray-400);
    white-space: nowrap;
}
.shop-sort-wrapper {
    position: relative;
}
.shop-sort-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 8px 36px 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color var(--transition);
    font-family: inherit;
}
.shop-sort-select:hover,
.shop-sort-select:focus {
    border-color: var(--navy);
    outline: none;
}

/* Products Grid */
.shop-products-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* New badge variant */
.product-badge.new {
    background: #7C3AED;
}

/* Shop responsive */
@media (max-width: 1024px) {
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .shop-category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .shop-hero {
        padding: 48px 40px;
    }
    .shop-hero-content h1 {
        font-size: 1.875rem;
    }
    .shop-hero-content p {
        font-size: 0.9375rem;
    }
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .shop-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
        gap: 12px;
    }
    .shop-products-section {
        padding: 24px 20px 60px;
    }
    .shop-filter-categories {
        gap: 6px;
    }
    .shop-filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    .shop-tabs-bar {
        padding: 12px 20px 0;
        gap: 8px;
        flex-wrap: wrap;
    }
    .shop-tab {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
    .shop-filter-left {
        flex-wrap: wrap;
        gap: 8px;
    }
    .shop-filter-categories {
        flex-wrap: wrap;
    }
    .shop-filter-divider {
        display: none;
    }
    .shop-category-cards {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .shop-tabs-bar {
        gap: 6px;
    }
    .shop-tab {
        padding: 7px 12px;
        font-size: 0.75rem;
        gap: 5px;
    }
    .shop-category-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== WALLET PAGE ===== */
.wallet-balance-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}
.wallet-balance-label {
    font-size: 0.8125rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.wallet-balance-amount {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 6px 0 12px;
    letter-spacing: -0.5px;
}
.wallet-balance-breakdown {
    display: flex;
    gap: 20px;
    font-size: 0.8125rem;
    opacity: 0.75;
}
.wallet-balance-breakdown i {
    margin-right: 4px;
}
.wallet-balance-breakdown strong {
    font-weight: 700;
    opacity: 1;
}
.wallet-balance-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.wallet-cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}
.wallet-topup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    background: var(--sky);
    color: var(--white);
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    font-family: inherit;
}
.wallet-topup-btn:hover {
    background: var(--sky-light);
}

/* Top Up Modal */
.wallet-topup-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wallet-topup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}
.wallet-topup-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.wallet-topup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.wallet-topup-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.wallet-topup-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: background var(--transition);
}
.wallet-topup-close:hover {
    background: var(--gray-200);
}
.wallet-topup-body {
    padding: 24px;
}
.wallet-topup-hint {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.wallet-topup-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.wallet-preset-btn {
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}
.wallet-preset-btn:hover {
    border-color: var(--sky);
    color: var(--sky);
}
.wallet-preset-btn.active {
    border-color: var(--sky);
    background: var(--blue-pale);
    color: var(--sky);
}
.wallet-topup-custom {
    margin-bottom: 20px;
}
.wallet-topup-custom label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.wallet-topup-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}
.wallet-topup-input:focus {
    border-color: var(--sky);
}
.wallet-topup-confirm {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--sky);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.wallet-topup-confirm:hover {
    background: var(--sky-dark);
}

/* Transactions */
.wallet-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}
.wallet-tx-list {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.wallet-tx-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}
.wallet-tx-item:last-child {
    border-bottom: none;
}
.wallet-tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.wallet-tx-icon-in {
    background: #ecfdf5;
    color: #059669;
}
.wallet-tx-icon-out {
    background: #fef2f2;
    color: #dc2626;
}
.wallet-tx-details {
    flex: 1;
    min-width: 0;
}
.wallet-tx-desc {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}
.wallet-tx-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}
.wallet-tx-expiry {
    margin-left: 8px;
    color: #d97706;
    font-weight: 500;
}
.wallet-tx-amount {
    font-size: 0.9375rem;
    font-weight: 700;
    white-space: nowrap;
}
.wallet-tx-positive {
    color: #059669;
}
.wallet-tx-negative {
    color: #dc2626;
}
.wallet-tx-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--gray-400);
}
.wallet-tx-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gray-300);
}
.wallet-tx-empty p {
    font-size: 0.875rem;
}
.wallet-tx-loading {
    text-align: center;
    padding: 32px;
    color: var(--gray-400);
    font-size: 0.875rem;
}
.wallet-tx-loading i {
    margin-right: 6px;
}

@media (max-width: 768px) {
    .wallet-balance-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .wallet-balance-right {
        align-items: flex-start;
    }
    .wallet-balance-amount {
        font-size: 1.75rem;
    }
    .wallet-topup-presets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== FLOATING ACCESSIBILITY WIDGET ===== */
.a11y-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    transition: bottom 0.3s ease;
}

body.corp-bar-visible .a11y-fab {
    bottom: 68px;
}

.a11y-fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: all var(--transition);
}

.a11y-fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.a11y-fab.open .a11y-fab-btn {
    background: var(--gray-500);
}

.a11y-fab-panel {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    width: 260px;
    overflow: hidden;
    animation: a11ySlideUp 0.25s ease;
}

.a11y-fab.open .a11y-fab-panel {
    display: block;
}

@keyframes a11ySlideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.a11y-fab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
}

.a11y-fab-header i {
    margin-right: 6px;
}

.a11y-fab-close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

.a11y-fab-close:hover {
    color: var(--gray-700);
}

.a11y-section {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.a11y-section:last-child {
    border-bottom: none;
}

.a11y-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.a11y-theme-btns {
    display: flex;
    gap: 6px;
}

.a11y-theme-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.a11y-theme-btn:hover {
    border-color: var(--sky);
    color: var(--sky);
}

.a11y-theme-btn.active {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.a11y-text-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.a11y-text-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-600);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all var(--transition);
}

.a11y-text-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.a11y-text-btn:active {
    transform: scale(0.92);
}

.a11y-text-reset {
    margin-left: auto;
}

.a11y-text-level {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-700);
    min-width: 40px;
    text-align: center;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
    --navy: #5B9AE8;
    --navy-dark: #4A88D6;
    --navy-light: #6BA8F0;
    --sky: #6BB5F0;
    --sky-dark: #5AA4E0;
    --sky-light: #7CC2F5;
    --blue-light: #4FC4EE;
    --blue-pale: #1a2332;
    --blue-sky: #1e2a3a;
    --green: #6BC04A;
    --green-light: #9AD44A;
    --green-dark: #56A33A;
    --white: #0f1419;
    --gray-50: #151b23;
    --gray-100: #1a222c;
    --gray-200: #252e3a;
    --gray-300: #3a4550;
    --gray-400: #6b7a8d;
    --gray-500: #8b99a8;
    --gray-600: #a0aebb;
    --gray-700: #c0cdd8;
    --gray-900: #e8edf2;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
}

/* Dark mode overrides for specific elements */
[data-theme="dark"] body {
    background: #0f1419;
    color: #e8edf2;
}

[data-theme="dark"] .header {
    background: #151b23;
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .announcement-bar {
    background: #1a222c;
}

[data-theme="dark"] .nav-menu a:hover {
    background: #1a222c;
}

[data-theme="dark"] .location-picker-btn {
    background: #1a222c;
    border-color: #252e3a;
    color: #c0cdd8;
}

[data-theme="dark"] .btn-order-now {
    background: var(--navy);
}

[data-theme="dark"] .header-icon-btn {
    color: #a0aebb;
}

[data-theme="dark"] .header-icon-btn:hover {
    color: #e8edf2;
    background: #1a222c;
}

[data-theme="dark"] .a11y-dropdown {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .a11y-theme-btn {
    background: #1a222c;
    border-color: #252e3a;
    color: #a0aebb;
}

[data-theme="dark"] .a11y-theme-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

[data-theme="dark"] .a11y-text-btn {
    background: #1a222c;
    border-color: #252e3a;
    color: #a0aebb;
}

[data-theme="dark"] .user-menu {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .user-menu-item {
    color: #c0cdd8;
}

[data-theme="dark"] .user-menu-item:hover {
    background: #1a222c;
}

[data-theme="dark"] .mini-cart-panel {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .mini-cart-header {
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .mini-cart-footer {
    border-top-color: #252e3a;
    background: #1a222c;
}

[data-theme="dark"] .mini-cart-item {
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .product-card {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .product-card:hover {
    border-color: #3a4550;
}

[data-theme="dark"] .product-info {
    background: #151b23;
}

[data-theme="dark"] .btn-add-cart {
    background: var(--navy);
    color: #fff;
}

[data-theme="dark"] .shop-hero {
    background: #151b23;
}

[data-theme="dark"] .shop-filter-btn {
    background: #1a222c;
    border-color: #252e3a;
    color: #a0aebb;
}

[data-theme="dark"] .shop-filter-btn.active,
[data-theme="dark"] .shop-filter-btn:hover {
    background: var(--navy);
    color: #fff;
}

[data-theme="dark"] .shop-tab {
    background: #1a222c;
    color: #a0aebb;
}

[data-theme="dark"] .shop-tab.active {
    background: var(--navy);
    color: #fff;
}

[data-theme="dark"] .footer {
    background: #0a0f14;
}

[data-theme="dark"] .footer-top {
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: #252e3a;
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: #1a222c;
    border-color: #252e3a;
    color: #e8edf2;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #6b7a8d;
}

[data-theme="dark"] .card,
[data-theme="dark"] .checkout-section,
[data-theme="dark"] .account-section {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .search-overlay {
    background: rgba(0,0,0,0.85);
}

[data-theme="dark"] .search-bar {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .search-results {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .search-result-item:hover {
    background: #1a222c;
}

[data-theme="dark"] .login-modal-content {
    background: #151b23;
}

[data-theme="dark"] .cart-modal {
    background: #151b23;
}

[data-theme="dark"] .pdp-container {
    background: #151b23;
}

[data-theme="dark"] .pdp-image-col {
    background: #1a222c;
}

[data-theme="dark"] .pdp-spec-item {
    background: #1a222c;
    color: #a8c4e0;
}

[data-theme="dark"] .pdp-spec-item i {
    color: #6ba3e0;
}

[data-theme="dark"] .pdp-thumb {
    border-color: #252e3a;
    background: #1a222c;
}

[data-theme="dark"] .pdp-thumb:hover {
    border-color: #4a90d9;
}

[data-theme="dark"] .pdp-thumb.active {
    border-color: #6ba3e0;
}

[data-theme="dark"] .checkout-item {
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .checkout-summary {
    background: #1a222c;
    border-color: #252e3a;
}

[data-theme="dark"] .checkout-free-items {
    background: linear-gradient(135deg, #0a2e1a 0%, #0d3320 100%);
    border-color: #16a34a;
}

[data-theme="dark"] .checkout-free-items-list {
    background: #1a222c;
}

[data-theme="dark"] .checkout-free-item-img {
    background: #0d3320 !important;
    border-color: #16a34a !important;
}

[data-theme="dark"] .checkout-free-item {
    border-bottom-color: rgba(22, 163, 74, 0.2) !important;
}

[data-theme="dark"] .checkout-price-strikethrough {
    color: #6b7280;
}

[data-theme="dark"] .account-sidebar {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .account-menu-item:hover,
[data-theme="dark"] .account-menu-item.active {
    background: #1a222c;
}

[data-theme="dark"] .order-detail-status-bar {
    border-color: #252e3a;
}

[data-theme="dark"] .currency {
    color: var(--gray-500);
}

[data-theme="dark"] .price-vat {
    color: var(--gray-500);
}

[data-theme="dark"] hr {
    border-color: #252e3a;
}

[data-theme="dark"] .toast {
    background: #1a222c;
    border-color: #252e3a;
    color: #e8edf2;
}

[data-theme="dark"] .location-modal-content {
    background: #151b23;
}

[data-theme="dark"] .rain-drop {
    opacity: 0.15;
}

[data-theme="dark"] .a11y-fab-btn {
    background: #5B9AE8;
}

[data-theme="dark"] .a11y-fab-panel {
    background: #151b23;
    border-color: #252e3a;
}

[data-theme="dark"] .a11y-fab-header {
    border-bottom-color: #252e3a;
    color: #5B9AE8;
}

[data-theme="dark"] .a11y-section {
    border-bottom-color: #252e3a;
}

[data-theme="dark"] .a11y-fab-close {
    color: #6b7a8d;
}

@media (max-width: 768px) {
    .a11y-fab {
        bottom: 16px;
        right: 16px;
    }
    body.corp-bar-visible .a11y-fab {
        bottom: 60px;
    }
    .a11y-fab-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .a11y-fab-panel {
        width: 240px;
    }
}

/* ===== LOCATION VERIFICATION LOADER ===== */
.location-loader {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(6px);
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.location-loader.active {
    opacity: 1;
    visibility: visible;
}

.location-loader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    width: 360px;
    max-width: 100%;
    box-shadow: 0 25px 60px rgba(0, 51, 160, 0.22);
    transform: translateY(8px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-loader.active .location-loader-card {
    transform: translateY(0) scale(1);
}

.location-loader-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 4px solid var(--blue-pale);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: locLoaderSpin 0.8s linear infinite;
}

.location-loader-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.location-loader-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@keyframes locLoaderSpin {
    to { transform: rotate(360deg); }
}

/* ===== CONFIRM MODAL (logout / destructive actions) ===== */
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.confirm-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirm-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 420px;
    max-width: 100%;
    padding: 32px 28px 24px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 51, 160, 0.18), 0 8px 20px rgba(17, 24, 39, 0.08);
    transform: translateY(16px) scale(0.96);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-modal-overlay.active .confirm-modal {
    transform: translateY(0) scale(1);
}

.confirm-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--blue-pale);
    color: var(--navy);
    position: relative;
}

.confirm-modal-icon.danger {
    background: #FEE2E2;
    color: #DC2626;
}

.confirm-modal-icon.danger::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(220, 38, 38, 0.18);
}

.confirm-modal h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.confirm-modal p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}

.confirm-modal-actions {
    display: flex;
    gap: 12px;
}

.confirm-btn {
    flex: 1;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform 0.15s ease, box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.confirm-btn:active { transform: scale(0.98); }

.confirm-btn-cancel {
    background: var(--gray-100);
    color: var(--gray-700);
}

.confirm-btn-cancel:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.confirm-btn-danger {
    background: #DC2626;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
}

.confirm-btn-danger:hover {
    background: #B91C1C;
    box-shadow: 0 8px 22px rgba(220, 38, 38, 0.35);
}

.confirm-btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: confirmSpin 0.8s linear infinite;
}

.confirm-btn.loading {
    cursor: wait;
    pointer-events: none;
}

.confirm-btn.loading .confirm-btn-label { visibility: hidden; }

.confirm-btn.loading .confirm-btn-spinner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes confirmSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 480px) {
    .confirm-modal { padding: 28px 20px 20px; }
    .confirm-modal h3 { font-size: 1.125rem; }
    .confirm-modal p { font-size: 0.875rem; }
    .confirm-modal-actions { flex-direction: column-reverse; }
}
