/* ===== Mobile-First Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Loading Spinner Styles */
.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(92, 32, 192, 0.1);
    border-top: 4px solid #0ed1b3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

:root {
    --primary-purple: #5c20c0;
    --secondary-turquoise: #0ed1b3;
    --dark-bg: #0a0118;
    --brand-bg: #5c20c0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --success: #10b981;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--brand-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; /* Space for bottom nav */
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Background Animation ===== */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    top: -150px;
    left: -100px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-turquoise);
    top: 50%;
    right: -100px;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: #667eea;
    bottom: -100px;
    left: 20%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    padding: 8px 0 calc(env(safe-area-inset-bottom) + 8px);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.nav-item.active {
    color: var(--secondary-turquoise);
    background: rgba(83, 64, 255, 0.1);
}

.nav-icon {
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.nav-item.active .nav-icon {
    background: linear-gradient(135deg, rgba(14, 209, 179, 0.2), rgba(92, 32, 192, 0.2));
    box-shadow: 0 0 20px rgba(14, 209, 179, 0.3);
    transform: scale(1.05);
    color: #ffffff;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--secondary-turquoise);
    color: var(--dark-bg);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ===== Header ===== */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--brand-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.header-user:active {
    background: rgba(255, 255, 255, 0.1);
}

.user-icon {
    font-size: 20px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-address {
    font-size: 10px;
    color: var(--text-secondary);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-icon {
    font-size: 11px;
    color: #0ed1b3;
    animation: locationPulse 2s infinite;
}

@keyframes locationPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== Glassmorphism ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* ===== Hero Banners ===== */
.hero {
    padding: 80px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-card {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-card:active {
    transform: scale(0.98);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-text h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.hero-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== 10 Minutes Delivery Section ===== */
.delivery-info {
    padding: 0 0 0;
}

.delivery-banner {
    position: relative;
    background: rgba(14, 209, 179, 0.15);
    border: 2px solid #0ed1b3;
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.delivery-content {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.delivery-badge {
    background: #0ed1b3;
    color: #0a0a0f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.delivery-banner h2 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    flex: 1;
}

.delivery-banner p {
    display: none;
}

/* ===== Services Section ===== */
.services {
    padding: 0 0 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--secondary-turquoise);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-card {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:active .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 12px;
}

.service-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.service-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-turquoise);
    margin-bottom: 10px;
}

.btn-select {
    width: 100%;
    background: var(--secondary-turquoise);
    border: none;
    color: var(--primary-purple);
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:active {
    background: var(--secondary-turquoise);
    transform: scale(0.98);
}

/* ===== Page Overlay (for full-screen pages) ===== */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.page-overlay.active {
    display: block;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.page-container {
    min-height: 100vh;
    padding-bottom: 80px;
}

.page-header {
    position: sticky;
    top: 0;
    background: rgba(10, 1, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 100;
}

.back-btn {
    background: #0ed1b3;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.page-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.page-content {
    padding: 20px 16px;
}

/* ===== Service Details Page ===== */
.service-detail-image {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-info {
    margin-bottom: 24px;
}

.service-detail-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-detail-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-detail-pricing h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

#servicePricingOptions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-option {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-option-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-option-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

.pricing-option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-turquoise);
}

.pricing-option button {
    background: #0ed1b3;
    border: none;
    color: #0a0a0f;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    width: 100%;
}

/* ===== Subscription Plans Page ===== */
.subscription-plans {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscription-plan-card {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.subscription-plan-card.featured {
    border: 2px solid var(--primary-purple);
}

.plan-banner {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.plan-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.plan-content {
    padding: 20px;
}

.plan-badge {
    padding: 6px 16px;
    background: rgba(92, 32, 192, 0.8);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
}

.plan-badge.popular {
    background: var(--secondary-turquoise);
    color: var(--dark-bg);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-turquoise);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

.plan-icon {
    font-size: 48px;
}

.subscription-plan-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-visits {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.plan-discount {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-turquoise);
    margin-bottom: 16px;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.btn-subscribe {
    width: 100%;
    background: #0ed1b3;
    border: none;
    color: #0a0a0f;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

/* ===== Login Page ===== */
#loginPage {
    display: none;
}

#loginPage.active {
    display: block;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
}

.login-hero {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}

.login-hero h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.login-hero p {
    font-size: 15px;
    color: var(--text-secondary);
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-google,
.btn-google-create {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-google {
    background: white;
    color: var(--dark-bg);
    border: none;
}

.btn-google-create {
    background: #0ed1b3;
    color: #0a0a0f;
    border: none;
}

.google-icon {
    font-size: 20px;
}

.login-footer {
    text-align: center;
}

.login-footer p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Checkout Page ===== */
#checkoutPage {
    display: none;
}

#checkoutPage.active {
    display: block;
}

.checkout-section {
    margin-bottom: 24px;
}

.checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.address-card {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-info p {
    font-size: 14px;
    margin-bottom: 4px;
}

.btn-edit {
    background: rgba(14, 209, 179, 0.2);
    border: 1px solid #0ed1b3;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-item-name {
    font-size: 14px;
    font-weight: 600;
}

.checkout-item-price {
    font-size: 15px;
    color: var(--secondary-turquoise);
    font-weight: 700;
}

.schedule-card {
    padding: 16px;
}

.checkout-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    color: white;
    font-size: 15px;
}

.checkout-summary {
    padding: 20px;
    margin: 24px 0;
}

/* ===== Cart Page ===== */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cart-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--secondary-turquoise);
    font-weight: 600;
}

.cart-item-remove {
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.5);
    color: #ff3b30;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
}

.cart-empty,
.orders-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.cart-empty h3,
.orders-empty h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-empty p,
.orders-empty p {
    font-size: 14px;
    color: var(--text-secondary);
}

.cart-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    margin-top: 8px;
    color: var(--secondary-turquoise);
}

.btn-place-order {
    width: 100%;
    background: #0ed1b3;
    border: none;
    color: #0a0a0f;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

/* ===== Buttons ===== */
.btn-primary {
    background: #0ed1b3;
    color: #0a0a0f;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(14, 209, 179, 0.4);
}

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
    width: 100%;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 20px;
    z-index: 3001;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-right: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ed1b3;
}

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

.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.subscription-service-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.service-checkbox label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.property-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px;
    color: white;
    font-size: 13px;
}

.property-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.property-select option {
    background: var(--dark-bg);
    color: white;
}

.visit-dates-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
}

.price-summary {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
}

.summary-row.discount {
    color: var(--success);
}

.status-badge {
    background: var(--secondary-turquoise);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.success-modal {
    text-align: center;
    padding: 40px 20px !important;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #0ed1b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 24px;
    color: #0a0a0f;
    font-weight: bold;
    animation: successPop 0.5s ease-out;
    box-shadow: 0 8px 30px rgba(14, 209, 179, 0.4);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: white;
}

.success-modal p {
    margin-bottom: 12px;
}

.success-modal .btn-primary {
    margin-top: 24px;
    width: 100%;
}

/* ===== Contact Page Styles ===== */
.contact-banner {
    background: linear-gradient(135deg, rgba(14, 209, 179, 0.2), rgba(92, 32, 192, 0.2));
    border: 2px solid #0ed1b3;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-banner .contact-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.contact-banner h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.contact-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0ed1b3, #0ab396);
    color: #0a0a0f;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 209, 179, 0.3);
}

.contact-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 209, 179, 0.4);
}

.contact-number .phone-icon {
    font-size: 28px;
    animation: ring 2s infinite;
}

.contact-number .number {
    letter-spacing: 1px;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* ===== Docked Cart Tray ===== */
.docked-cart-tray {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(14, 209, 179, 0.95), rgba(11, 167, 143, 0.95));
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(14, 209, 179, 0.3);
    padding: 16px 20px;
    z-index: 2001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-width: 100vw;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.docked-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.docked-cart-info {
    flex: 1;
}

.docked-cart-count {
    font-size: 14px;
    color: rgba(10, 10, 15, 0.8);
    font-weight: 600;
    margin-bottom: 4px;
}

.docked-cart-total {
    font-size: 24px;
    font-weight: 800;
    color: #0a0a0f;
}

.btn-docked-checkout {
    background: #0a0a0f;
    color: #0ed1b3;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-docked-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-docked-checkout:active {
    transform: translateY(0);
}

/* ===== Footer ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(83, 64, 255, 0.5);
    border-radius: 3px;
}
