/* ================================================
 *  حبّة — Design System
 *  Dark theme, warm orange accents, Tajawal font
 * ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
    --darker-bg: #0f1729;
    --dark-bg: #141e33;
    --card-bg: #1a2540;
    --primary-orange: #e8913a;
    --accent-green: #27ae60;
    --gold: #f1c40f;
    --cream: #fdf6e3;
    --text-muted: rgba(253, 246, 227, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-orange: rgba(232, 145, 58, 0.3);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(232, 145, 58, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--darker-bg);
    color: var(--cream);
    direction: rtl;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

a { color: var(--primary-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ── Particles Background ── */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 18s infinite ease-in-out;
}

.particle:nth-child(even) { background: var(--accent-green); }
.particle:nth-child(3n) { width: 3px; height: 3px; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 23, 41, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 20px;
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 54px;
    filter: drop-shadow(0 2px 8px rgba(232, 145, 58, 0.3));
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.8rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cream);
    background: rgba(232, 145, 58, 0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Mobile menu */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(15, 23, 41, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s ease;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 1rem;
    }
}

/* ── Page Container ── */
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 84px 20px 40px;
    min-height: 100vh;
}

/* ── Hero Section ── */
.hero {
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
}

.hero-logo {
    width: 180px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 20px rgba(232, 145, 58, 0.3));
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: fadeInDown 0.8s ease 0.1s both;
}

.hero .tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 300;
    animation: fadeInDown 0.8s ease 0.2s both;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Section Styling ── */
.section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-subtle);
    animation: fadeInUp 0.6s ease both;
}

.section:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* ── Cards ── */
.card {
    background: linear-gradient(145deg, var(--card-bg), rgba(20, 30, 51, 0.8));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ── Product Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.product-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(20, 30, 51, 0.8));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--cream);
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
    flex: 1;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.product-footer {
    margin-top: auto;
}

/* ── Offers/Promotions ── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.offer-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(20, 30, 51, 0.8));
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.offer-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
    color: white;
}

.offer-badge.giveaway { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.offer-badge.discount { background: linear-gradient(135deg, var(--accent-green), #1e8449); }
.offer-badge.promo { background: linear-gradient(135deg, var(--primary-orange), #d4781f); }

.offer-body {
    padding: 20px;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--cream);
}

.offer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.offer-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #d4781f);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 145, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 145, 58, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 1px solid var(--border-orange);
}

.btn-outline:hover {
    background: rgba(232, 145, 58, 0.1);
    color: var(--gold);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* ── Order Form ── */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text p {
    margin-bottom: 14px;
    color: rgba(253, 246, 227, 0.75);
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero .tagline { font-size: 1.1rem; }
}

/* ── Features Row ── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.feature-card {
    text-align: center;
    padding: 28px 18px;
    background: linear-gradient(145deg, var(--card-bg), rgba(20, 30, 51, 0.8));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--border-orange);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .features {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 4px 0 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .features::-webkit-scrollbar { display: none; }
    .feature-card {
        min-width: 140px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 20px 14px;
    }
    .feature-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .feature-title { font-size: 0.9rem; }
    .feature-desc { font-size: 0.75rem; }
}

/* ── Category Tabs ── */
.category-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.category-tab {
    padding: 8px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--text-muted);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.category-tab:hover,
.category-tab.active {
    background: rgba(232, 145, 58, 0.15);
    color: var(--primary-orange);
    border-color: var(--border-orange);
}

/* ── Footer ── */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-address {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer-copy {
    color: rgba(253, 246, 227, 0.3);
    font-size: 0.8rem;
}

/* ── Loading & Empty State ── */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state .icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ── Add to Cart Button ── */
.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-orange);
    background: transparent;
    color: var(--primary-orange);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.add-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.add-btn.in-cart {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

/* ── Product Footer ── */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Cart Bar ── */
.cart-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(15, 23, 41, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-orange);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cart-bar.visible {
    transform: translateY(0);
}

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

.cart-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.cart-count-badge {
    background: var(--primary-orange);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cart-text {
    font-size: 0.9rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.cart-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ── Cart Detail Panel ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
}

.cart-overlay.open { display: block; }

.cart-detail {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1001;
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-orange);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cart-detail.open { transform: translateY(0); }

.cart-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-detail-header h3 {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.cart-item-emoji { font-size: 1.5rem; }

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

.cart-item-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    background: transparent;
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(232, 145, 58, 0.15);
    border-color: var(--border-orange);
}

.qty-val {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}

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

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-weight: 800;
    font-size: 1.1rem;
}

.cart-total-price { color: var(--primary-orange); }

/* ── Offers Page Specific ── */
.offer-card.expired {
    opacity: 0.45;
    border-color: var(--border-subtle);
}

.offer-card.expired:hover {
    transform: none;
    box-shadow: none;
}

.offer-card.upcoming {
    border-color: rgba(241, 196, 15, 0.3);
}

.offer-card.upcoming:hover {
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.12);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 0;
}

.offer-badge.expired-badge { background: #555; }
.offer-badge.upcoming-badge { background: linear-gradient(135deg, #f39c12, #e67e22); }

.offer-status {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

.offer-status.ended { color: var(--text-muted); }
.offer-status.upcoming-status { color: #f1c40f; }

.prize-section { margin: 12px 0; }

.prize-label {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.prize-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prize-tag {
    background: rgba(232, 145, 58, 0.1);
    border: 1px solid rgba(232, 145, 58, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--cream);
}

.steps-section {
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 14px;
}

.steps-label {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.winners-section {
    margin: 12px 0;
    background: rgba(241, 196, 15, 0.06);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 10px;
    padding: 14px;
}

.winners-label {
    font-size: 0.85rem;
    color: #f1c40f;
    font-weight: 700;
    margin-bottom: 10px;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.winner-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 145, 58, 0.1);
    border: 1px solid rgba(232, 145, 58, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Extra Button Variants ── */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-insta {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.btn-insta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.btn-fb {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
}

.btn-fb:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
