/* ========================================
   CONTACT.CSS - Base + Contact Page
   Okay Délice - Restaurant Haïtien
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #e86f1c;
    --primary-dark: #cc6a14;
    --primary-light: #f2a65a;
    --secondary-orange: #ff8c1a;
    --secondary-red: #C0392B;
    --accent-green: #27AE60;
    --dark: #1a1a2e;
    --dark-secondary: #16213e;
    --text: #2b2b2b;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #faf7f3;
    --bg-white: #FFFFFF;
    --border: #E8E0D8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ---- Headings ---- */
h1 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h2, h3, h4, h5, h6 {
    font-family: var(--font-body) !important;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body) !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ensure all text elements use body font unless they're headings */
p, span, div, a, li, td, th, label, input, textarea, select, button, .btn, .nav-link {
    font-family: var(--font-body) !important;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 135, 42, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn-outline:hover {
    background: var(--secondary-orange);
    color: #fff;
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--secondary-orange);
    border: 1.5px solid var(--secondary-orange);
}

.btn-auth:hover {
    background: var(--secondary-orange);
    color: #fff;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--secondary-red);
    border: 1.5px solid var(--secondary-red);
    background: transparent;
}

.btn-logout:hover {
    background: var(--secondary-red);
    color: #fff;
}

.btn-nav {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.header-secondary {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.7rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--secondary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.desktop-order-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
}

.user-menu-trigger:hover {
    border-color: var(--secondary-orange);
    color: #fff;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    overflow: hidden;
}

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

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text);
    background: transparent;
    border: none;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: var(--bg-light);
    color: var(--secondary-red);
}

/* Mobile */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Drawer */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--dark);
    z-index: 1200;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    margin-bottom: var(--spacing-lg);
}

.mobile-menu-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--secondary-orange);
}

.mobile-order-btn {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.mobile-user-section {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.mobile-logout-btn {
    font-size: 0.85rem;
}

/* ======== CONTACT PAGE ======== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: 8rem 0 3.5rem;
    text-align: center;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-md);
}

.contact-hero-title span {
    color: var(--secondary-orange);
}

.contact-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Main Section */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Info Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-content a {
    color: var(--secondary-orange);
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Hours Card */
.hours-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-card h3 svg {
    color: var(--secondary-orange);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 500;
    color: var(--text);
}

.hours-row .time {
    color: var(--secondary-orange);
    font-weight: 600;
}

.hours-row.today {
    background: rgba(232, 135, 42, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-bottom-color: transparent;
}

.hours-row.today .day {
    color: var(--secondary-orange);
    font-weight: 600;
}

/* Social Links */
.social-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.social-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.social-links-grid {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--bg-white);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn--facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.social-btn--facebook:hover {
    background: #1877F2;
    color: #fff;
}

.social-btn--instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.social-btn--instagram:hover {
    background: #E4405F;
    color: #fff;
}

.social-btn--whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.social-btn--whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.social-btn--tiktok {
    border-color: #000;
    color: #000;
}

.social-btn--tiktok:hover {
    background: #000;
    color: #fff;
}

/* Form Column */
.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-label svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-orange);
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg-light);
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--secondary-orange);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(232, 135, 42, 0.1);
}

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

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

.form-select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg-light);
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--secondary-orange);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(232, 135, 42, 0.1);
}

.form-submit {
    margin-top: var(--spacing-xs);
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), #219A52);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: #fff;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 0 0 var(--spacing-xxl);
}

.map-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 450px;
    position: relative;
}

.map-card {
    isolation: isolate;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.map-embed {
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 300px;
}

.map-info-card {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.map-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

.map-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.map-overlay .btn {
    font-size: 0.85rem;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #eee 0%, #f5f5f5 100%);
    color: var(--text-muted);
}

.map-placeholder svg {
    opacity: 0.4;
}

.map-placeholder p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 0 0 var(--spacing-xxl);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-orange);
    background: rgba(232, 135, 42, 0.1);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-orange);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--secondary-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-inner {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.contact-cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.contact-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-logo {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color: var(--secondary-orange);
}

.footer .logo {
    font-size: 1.4rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-link:hover {
    background: var(--secondary-orange);
    color: #fff;
}

.footer-social-link:hover svg {
    stroke: #fff;
}

.footer h4,
.footer-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--spacing-md);
}

.footer ul li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.6);
}

.footer ul a:hover {
    color: var(--secondary-orange);
}

.footer-links-wrapper ul li {
    margin-bottom: 0.6rem;
}

.footer-links-wrapper a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-wrapper a:hover {
    color: var(--secondary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* ---- Cart Drawer ---- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2100;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    background: transparent;
    border: none;
    cursor: pointer;
}

.cart-drawer-close:hover {
    background: var(--bg-light);
    color: var(--dark);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md) var(--spacing-lg);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty svg {
    opacity: 0.3;
}

.cart-empty p {
    font-size: 0.95rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
}

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

.cart-drawer-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.cart-drawer-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-drawer-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-orange);
    display: block;
    margin-bottom: 0.3rem;
}

.cart-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--secondary-orange);
    color: var(--secondary-orange);
}

.qty-value {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-drawer-item-remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.cart-drawer-item-remove:hover {
    color: var(--secondary-red);
    background: rgba(192, 57, 43, 0.08);
}

.cart-drawer-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

.cart-totals {
    margin-bottom: var(--spacing-md);
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-total-final {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.btn-checkout {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.btn-continue {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-color: var(--border);
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-continue:hover {
    border-color: var(--text-light);
    color: var(--text);
}

/* Cart Notification Toast */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    z-index: 3000;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ======== MAP SECTION ======== */
.map-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.map-embed-wrapper {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
}

.map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-embed-wrapper {
        height: 300px;
    }
}

/* ---- Animations ---- */
.fade-in {

    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .desktop-order-btn,
    .desktop-auth {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .contact-hero {
        padding: 7rem 0 2.5rem;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

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

    .map-container {
        height: 300px;
    }

    .map-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: var(--spacing-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .cart-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .contact-form-card {
        padding: var(--spacing-lg);
    }

    .social-links-grid {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }
}