

:root {
    --navy:        #1B3A6B;
    --navy-dark:   #112546;
    --teal:        #4AAEAD;
    --teal-light:  #7FC8CB;
    --teal-bg:     #EBF7F7;
    --terra:       #C17A5A;
    --terra-light: #E8A98C;
    --cream:       #F8F4EF;
    --cream-dark:  #EDE8E0;
    --white:       #FFFFFF;
    --text:        #2D3748;
    --text-muted:  #718096;
    --border:      #E2D9CE;

    --shadow-sm:   0 2px 8px rgba(27,58,107,0.08);
    --shadow-md:   0 8px 32px rgba(27,58,107,0.12);
    --shadow-lg:   0 16px 48px rgba(27,58,107,0.16);

    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-full: 9999px;

    /* Updated Fonts */
    --font-serif:  'Playfair Display', 'Libre Baskerville', Georgia, serif;
    --font-sans:   'Inter', 'Source Sans 3', system-ui, sans-serif;

    --transition:  all 0.3s ease;
    --header-h:    115px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* -- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }

/* -- Layout ----------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1.05rem;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-subtitle { margin: 0 auto; }

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

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-terra {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}
.btn-terra:hover { background: #a8623f; border-color: #a8623f; }

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-danger { background: #e53e3e; color: white; border-color: #e53e3e; }
.btn-danger:hover { background: #c53030; }

/* -- Header ----------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    height: var(--header-h);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 100px; width: auto; object-fit: contain; }

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

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

.nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--teal);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    color: var(--navy);
    transition: var(--transition);
    background: var(--cream-dark);
}

.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { background: var(--teal); color: var(--white); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--terra);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--cream-dark);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Hero Section ----------------------------------------- */
.hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74,174,173,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193,122,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-bg);
    color: var(--teal);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-eyebrow span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

.hero-title {
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    color: var(--teal);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 238px;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    font-size: 1.4rem;
}

.hero-badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* -- Cards ------------------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-body { padding: 1.5rem; }

/* -- Services Grid ----------------------------------------- */
.services-section { background: var(--cream); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--terra));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(74,174,173,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--teal);
}

.icon-svg {
    width: 1.35em;
    height: 1.35em;
    display: block;
}

.service-icon .icon-svg,
.hero-badge-icon .icon-svg,
.feature-icon .icon-svg,
.process-icon .icon-svg {
    width: 22px;
    height: 22px;
}

.icon-inline {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.18em;
    margin-right: 0.35rem;
}

.icon-mini {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: -0.15em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--teal);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.service-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* -- Process Section --------------------------------------- */
.process-section { background: var(--teal-bg); }

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 37px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--terra));
    opacity: 0.35;
}

.process-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid rgba(74,174,173,0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    min-height: 220px;
}

.process-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.process-index {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--terra);
}

.process-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    background: var(--teal-bg);
    border: 8px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.process-card h4 { margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; margin: 0; }

/* -- Testimonials ------------------------------------------ */
.testimonials-section { background: var(--teal-bg); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
}

.stars { color: #F6C90E; font-size: 1rem; margin-bottom: 1rem; }

.testimonial-text {
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
}

.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* -- Pricing ----------------------------------------------- */
.pricing-section { background: var(--cream); }

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.pricing-tab {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-tab.active, .pricing-tab:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.pricing-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.pricing-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:hover td { background: var(--teal-bg); }

.price-badge {
    display: inline-block;
    background: var(--teal-bg);
    color: var(--teal);
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--cream-dark);
    color: var(--text-muted);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

/* -- Shop / Products --------------------------------------- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

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

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

.product-image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--white);
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.product-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--terra);
}

/* -- Cart ------------------------------------------------- */
.cart-section { padding-top: calc(var(--header-h) + 2rem); }

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

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

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream);
}

.cart-item-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.cart-item-price { color: var(--terra); font-weight: 600; }

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.qty-btn:hover { background: var(--teal); color: white; }
.qty-value { font-weight: 600; min-width: 1.5rem; text-align: center; }

.remove-btn {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
}

.remove-btn:hover { color: #e53e3e; background: #fee2e2; }

.cart-summary-box {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.cart-summary-row:last-of-type { border-bottom: none; }

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
}

/* -- Forms ------------------------------------------------- */
.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-label .required { color: var(--terra); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(74,174,173,0.12);
}

.form-control::placeholder { color: var(--text-muted); }

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

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }

/* -- Booking Page ------------------------------------------ */
.booking-section {
    padding-top: calc(var(--header-h) + 3rem);
    background: var(--cream);
    min-height: 100vh;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}

.booking-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

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

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    font-size: 1rem;
}

.info-text strong { display: block; font-size: 0.875rem; color: var(--navy); }
.info-text span { font-size: 0.8rem; color: var(--text-muted); }

/* -- Alerts / Flash ----------------------------------------- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.alert-success { background: #f0fff4; color: #276749; border-color: #48bb78; }
.alert-error   { background: #fff5f5; color: #c53030; border-color: #e53e3e; }
.alert-info    { background: var(--teal-bg); color: var(--navy); border-color: var(--teal); }

/* -- About / Team ------------------------------------------ */
.about-hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.value-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.value-item p { font-size: 0.85rem; font-weight: 500; color: var(--text); margin: 0; }

.team-section { background: var(--cream); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

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

.team-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.team-card-body { padding: 1.5rem; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-card-role { font-size: 0.8rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; margin: 0; }

/* -- Contact ----------------------------------------------- */
.contact-section { padding-top: calc(var(--header-h) + 3rem); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info { padding: 2.5rem; background: var(--navy); border-radius: var(--radius-md); color: var(--white); }
.contact-info h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info p { color: rgba(255,255,255,0.7); }

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-light);
}

.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-item strong { display: block; color: var(--white); font-size: 0.875rem; }
.contact-info-item span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* -- CTA Section ------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a5298 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(74,174,173,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover { background: var(--cream); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* -- Page Hero Banner -------------------------------------- */
.page-hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 3.5rem;
    background: linear-gradient(135deg, var(--cream) 60%, var(--teal-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--text-muted); }

/* -- Footer ----------------------------------------------- */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline { text-align: justify; font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: 0.75rem; }

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--teal); color: white; }

.footer-heading {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center
}

.footer-bottom p {text-align: center !important; font-size: 0.98rem; color: rgba(255,255,255,0.4); margin: 0; }

/* -- Admin Panel ------------------------------------------- */
.admin-body {
    background: #F1F5F9;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar-logo {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-logo img { height: 44px; }

.admin-nav { flex: 1; padding: 1rem 0; }

.admin-nav-section {
    padding: 0 1rem 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 1rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    margin: 0.1rem 0.5rem;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.admin-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav-link:hover, .admin-nav-link.active { background: rgba(74,174,173,0.15); color: var(--teal-light); }
.admin-nav-link.active { background: rgba(74,174,173,0.2); color: var(--teal-light); }

.admin-main {
    margin-left: 260px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar h1 { font-size: 1.4rem; font-family: var(--font-sans); font-weight: 600; }

.admin-content { padding: 2rem; flex: 1; }

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon.teal  { background: var(--teal-bg);        color: var(--teal); }
.stat-icon.navy  { background: rgba(27,58,107,0.1);   color: var(--navy); }
.stat-icon.terra { background: rgba(193,122,90,0.12);  color: var(--terra); }
.stat-icon.green { background: rgba(72,187,120,0.12);  color: #38a169; }

.stat-value { font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.2rem; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

.admin-table-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.admin-table-head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-table-head h2 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th { background: #F8FAFC; padding: 0.75rem 1rem; text-align: left; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid #E2E8F0; }
table.admin-table td { padding: 1rem; border-bottom: 1px solid #F1F5F9; font-size: 0.875rem; vertical-align: middle; }
table.admin-table tr:last-child td { border-bottom: none; }
table.admin-table tr:hover td { background: #F8FAFC; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending    { background: #FEF3C7; color: #92400E; }
.status-confirmed  { background: #D1FAE5; color: #065F46; }
.status-cancelled  { background: #FEE2E2; color: #991B1B; }
.status-completed  { background: #DBEAFE; color: #1E40AF; }
.status-processing { background: #EDE9FE; color: #5B21B6; }
.status-shipped    { background: #FEF9C3; color: #854D0E; }
.status-delivered  { background: #D1FAE5; color: #065F46; }

.action-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.btn-xs { padding: 0.3rem 0.75rem; font-size: 0.75rem; border-radius: var(--radius-sm); }

.admin-form-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    padding: 2rem;
    max-width: 700px;
}

.admin-image-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    margin-bottom: 1rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
}

.admin-image-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #E2E8F0;
}

.admin-image-preview span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.admin-login-page {
    min-height: 100vh;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.admin-login-box .logo-img { height: 100px; margin: 0 auto 1.5rem; }
.admin-login-box h2 { margin-bottom: 0.25rem; }
.admin-login-box p { font-size: 0.875rem; margin-bottom: 1.75rem; }

/* -- Page Specific ----------------------------------------- */
.section-bg-cream   { background: var(--cream); }
.section-bg-teal    { background: var(--teal-bg); }
.section-bg-white   { background: var(--white); }
.section-bg-navy    { background: var(--navy); color: white; }
.text-center        { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.icon-list { list-style: none; }
.icon-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.icon-list li::before { content: '?'; color: var(--teal); font-size: 0.7rem; margin-top: 0.35rem; flex-shrink: 0; }

.notice-box {
    background: var(--teal-bg);
    border: 1px solid var(--teal-light);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--navy);
}

.notice-box svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); margin-top: 1px; }

/* -- Empty state ------------------------------------------ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state svg { width: 64px; height: 64px; margin: 0 auto 1rem; opacity: 0.3; }

.order-status-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.order-status-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    color: var(--text-muted);
}

.order-status-step > div {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: var(--cream);
}

.order-status-step.active {
    color: var(--navy);
    border-color: var(--teal);
    background: var(--teal-bg);
}

.order-status-step.active > div {
    color: var(--white);
    background: var(--teal);
}

/* -- Floating Chat ----------------------------------------- */
.chat-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    font-family: var(--font-sans);
}

.chat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74,174,173,0.45);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(27,58,107,0.35);
}

.chat-toggle-icon .icon-svg { width: 18px; height: 18px; }

.chat-panel {
    position: absolute;
    right: 0;
    padding: 0%;
    bottom: calc(100% + 0.75rem);
    width: min(360px, calc(100vw - 2rem));
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 48px rgba(27,58,107,0.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform-origin: bottom right;
}

.chat-widget.open .chat-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-panel-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1e4d8c 100%);
    color: var(--white);
}

.chat-panel-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.chat-panel-info { flex: 1; }

.chat-panel-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.chat-panel-info span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.chat-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
}

.chat-head-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.chat-close,
.chat-restart {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-close:hover,
.chat-restart:hover { background: rgba(255,255,255,0.25); }

.chat-messages {
    max-height: 550px;
    overflow-y: auto;
    padding: 1rem;
    background: #f4f6f9;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.chat-bubble {
    width: fit-content;
    max-width: 86%;
    padding: 0.65rem 0.9rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.55;
}

.chat-bubble.bot {
    background: var(--white);
    color: var(--text);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chat-bubble.user {
    margin-left: auto;
    background: var(--teal);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-suggestions-zone {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.chat-suggestions-zone.zone-hidden { display: none; }

.chat-suggestions-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.chat-suggestions-zone button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--teal);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}

.chat-suggestions-zone button svg { opacity: 0.6; flex-shrink: 0; transition: var(--transition); }

.chat-suggestions-zone button:hover {
    background: var(--teal);
    color: var(--white);
}

.chat-suggestions-zone button:hover svg { opacity: 1; }

.chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.chat-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.9rem;
    font-size: 0.83rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus { border-color: var(--teal); background: var(--white); }
.chat-input::placeholder { color: var(--text-muted); }

.chat-mic-btn,
.chat-send-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.chat-mic-btn {
    background: var(--cream-dark);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
}

.chat-mic-btn:hover,
.chat-mic-btn.listening {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.chat-mic-btn.listening { animation: micPulse 1s infinite; }

.chat-send-btn {
    background: var(--teal);
    border: none;
    color: var(--white);
}

.chat-send-btn:hover { background: var(--navy); }

@keyframes micPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,174,173,0.4); }
    50%       { box-shadow: 0 0 0 6px rgba(74,174,173,0); }
}

.chat-no-match {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.25rem 0.1rem;
    margin: 0;
}

.chat-contact-cta {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    border-bottom: 1px solid var(--teal-light);
    transition: color 0.2s;
}
.chat-contact-cta:hover { color: var(--navy); border-color: var(--navy); }

.chat-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.65rem 0.9rem;
    width: auto;
}
.chat-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatDot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1;   }
}

/* -- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary-box { position: static; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .main-nav.open { transform: translateY(0); }

    .nav-list { flex-direction: column; gap: 0; width: 100%; }

    .nav-link {
        display: block;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-actions {
        margin-left: 0;
        padding: 0.75rem 0;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
        justify-content: space-between;
    }

    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image-wrap { order: -1; }
    .hero-image-main { aspect-ratio: 16/9; }
    .hero-badge { display: none; }

    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { aspect-ratio: 16/9; }

    .booking-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .process-flow { grid-template-columns: 1fr; }
    .process-flow::before { display: none; }
    .process-card { min-height: auto; }
    .order-status-track { grid-template-columns: 1fr 1fr; }

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

    .values-grid { grid-template-columns: 1fr; }

    .admin-sidebar { transform: translateX(-100%); width: 260px; z-index: 200; }
    .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 24px rgba(0,0,0,0.25); }
    .admin-main { margin-left: 0; }
    .admin-topbar { padding: 0.75rem 1rem; }
    .admin-topbar h1 { font-size: 1.05rem; }
    .admin-table-wrap { overflow-x: auto; }
    table.admin-table { display: table; min-width: 560px; }
    .admin-table-head { padding: 1rem; gap: 0.75rem; }
    .admin-content { padding: 1rem; }
    .stat-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-value { font-size: 1.4rem; }
    .stat-card { padding: 1rem; gap: 0.75rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    section { padding: 3.5rem 0; }
    .page-hero { padding-bottom: 3rem; }
    .cart-item { grid-template-columns: 64px 1fr; }

    .hero-trust { flex-wrap: wrap; gap: 1.5rem; }
    .trust-divider { display: none; }

    .pricing-table { overflow-x: auto; }
    .chat-widget { right: 0.85rem; bottom: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    .shop-grid { grid-template-columns: 1fr; }
    .order-status-track { grid-template-columns: 1fr; }
    .admin-content { padding: 1rem; }
    .admin-form-wrap { padding: 1.25rem; }
}

/* -- Preloader -------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body:has(#preloader:not(.hidden)) {
    overflow: hidden;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--cream-dark);
    border-top-color: var(--teal);
    animation: preloaderSpin 0.8s linear infinite;
}

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

/* -- Animations ------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
