/* ============================================================
   MUNANDY BAKERY — Main Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,600&display=swap');

/* ---- CSS Variables ---- */
:root {
    --blue-900: #0a1628;
    --blue-800: #0d1f3c;
    --blue-700: #1a3560;
    --blue-600: #1e4080;
    --blue-500: #2855a8;
    --blue-400: #3a6fd8;
    --blue-300: #6090e8;
    --blue-200: #a8c4f5;
    --blue-100: #deeaff;
    --blue-50: #f0f5ff;

    --gold: #d4a853;
    --gold-light: #f0c97a;
    --warm-white: #faf8f4;
    --cream: #f5f0e8;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #8888aa;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
    --shadow-blue: 0 8px 32px rgba(40, 85, 168, 0.25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-italic: 'Cormorant Garamond', serif;

    --nav-height: 76px;
    --topbar-height: 42px;
    --container-max: 1200px;
    --container-pad: 24px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.display-xl {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--blue-800);
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 400;
    margin-top: 0.6rem;
    max-width: 100%;
}

.label-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.italic-accent {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--gold);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: 80px 0;
}

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

.section--blue {
    background: var(--blue-800);
}

.section--dark {
    background: var(--blue-900);
}

.section--white {
    background: var(--white);
}

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

.section-header .label-tag {
    display: block;
    margin-bottom: 12px;
}

.section-divider {
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: var(--radius-full);
}

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

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

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

.flex {
    display: flex;
}

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

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-sm {
    gap: 8px;
}

.gap-md {
    gap: 16px;
}

.gap-lg {
    gap: 24px;
}

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

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

.text-blue {
    color: var(--blue-500);
}

/* ============================================================
   BUTTON COMPONENTS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(40, 85, 168, 0.35);
}

.btn-gold {
    background: var(--gold);
    color: var(--blue-900);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue-600);
    color: var(--blue-600);
}

.btn-outline:hover {
    background: var(--blue-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.82rem;
}

/* ============================================================
   CARD COMPONENTS
   ============================================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-body {
    padding: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.product-card__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card__image-wrap {
    overflow: hidden;
    position: relative;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--blue-900);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.product-card__body {
    padding: 18px 20px 20px;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-800);
    margin-bottom: 6px;
}

.product-card__desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
}

.product-card__price-currency {
    font-size: 0.85rem;
    font-weight: 500;
    vertical-align: super;
    margin-right: 2px;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
    background: var(--blue-900);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.topbar__info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 400;
}

.topbar__item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.topbar__hours {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--nav-height);
    box-shadow: 0 2px 20px rgba(10, 22, 40, 0.08);
    transition: var(--transition);
    align-content: center;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.15);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav__logo img {
    height: 48px;
    width: auto;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-700);
    letter-spacing: -0.02em;
}

.nav__logo-tagline {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

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

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blue-600);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--blue-600);
}

.nav__link:hover::after {
    width: calc(100% - 28px);
}

.nav__link.active {
    color: var(--blue-600);
    font-weight: 600;
}

.nav__link.active::after {
    width: calc(100% - 28px);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-700);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__mobile {
    display: none;
    position: fixed;
    top: calc(var(--topbar-height) + var(--nav-height));
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--blue-100);
    flex-direction: column;
    gap: 4px;
}

.nav__mobile.open {
    display: flex;
}

.nav__mobile-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav__mobile-link:hover, .nav__mobile-link.active {
    background: var(--blue-50);
    color: var(--blue-600);
}

/* ============================================================
   HERO / CAROUSEL
   ============================================================ */

.carousel {
    position: relative;
    overflow: hidden;
    height: min(90vh, 680px);
    background: var(--blue-900);
}

.carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel__slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.carousel__slide.active img {
    transform: scale(1.06);
}

.carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            rgba(10, 22, 40, 0.82) 0%,
            rgba(30, 64, 128, 0.55) 50%,
            rgba(10, 22, 40, 0.35) 100%
    );
    display: flex;
    align-items: center;
}

.carousel__content {
    padding: 0 var(--container-pad);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    animation: slideUp 0.8s ease both;
}

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

.carousel__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.35);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.carousel__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.carousel__title em {
    font-style: italic;
    color: var(--gold-light);
}

.carousel__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.carousel__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.carousel__prev, .carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.carousel__prev {
    left: 20px;
}

.carousel__next {
    right: 20px;
}

.carousel__prev:hover, .carousel__next:hover {
    background: var(--white);
    color: var(--blue-700);
    transform: translateY(-50%) scale(1.08);
}

.carousel__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.carousel__dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(40, 85, 168, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
    color: var(--gold);
}

.page-hero__breadcrumb span {
    color: var(--gold);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */

.feature-strip {
    background: var(--blue-700);
    padding: 28px 0;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-item__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-item__desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card__quote {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--blue-200);
    font-family: var(--font-display);
    margin-bottom: -12px;
}

.testimonial-card__text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-100);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blue-800);
}

.testimonial-card__role {
    font-size: 0.77rem;
    color: var(--text-light);
}

.stars {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--white);
    border: 1.5px solid var(--blue-100);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: var(--white);
    color: var(--blue-900);
}

.lightbox__caption {
    position: absolute;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    font-size: 1rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-700);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(58, 111, 216, 0.12);
}

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

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

select.form-control {
    cursor: pointer;
}

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

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

.alert--success {
    background: rgba(40, 168, 90, 0.1);
    border: 1.5px solid rgba(40, 168, 90, 0.3);
    color: #1a6e3a;
}

.alert--error {
    background: rgba(200, 50, 50, 0.09);
    border: 1.5px solid rgba(200, 50, 50, 0.3);
    color: #8a1a1a;
}

/* ============================================================
   INFO CARDS (contact page)
   ============================================================ */

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}

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

.info-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    flex-shrink: 0;
}

.info-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-800);
    margin-bottom: 6px;
}

.info-card__content {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.info-card__content a {
    color: var(--blue-600);
    transition: color 0.2s;
}

.info-card__content a:hover {
    color: var(--blue-400);
}

/* ============================================================
   HOURS TABLE
   ============================================================ */

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

.hours-table tr {
    border-bottom: 1px solid var(--blue-100);
}

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

.hours-table td {
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.hours-table td:first-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.hours-table td:last-child {
    text-align: right;
    color: rgba(255, 255, 255, 0.55);
}

.hours-table .closed {
    color: #c94040;
    font-weight: 500;
}

/* ============================================================
   CURRENCY SELECTOR
   ============================================================ */

.currency-bar {
    background: var(--blue-50);
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.currency-bar__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-700);
    white-space: nowrap;
}

.currency-bar__options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.currency-btn {
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid var(--blue-200);
    color: var(--blue-700);
    background: var(--white);
    transition: var(--transition);
}

.currency-btn:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
}

.currency-btn.active {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

.currency-rate-info {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ============================================================
   PRODUCTS PAGE CONTROLS
   ============================================================ */

.products-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.products-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.products-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.products-search input {
    width: 100%;
    padding: 11px 16px 11px 42px;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.products-search input:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(58, 111, 216, 0.1);
}

.products-category select {
    padding: 11px 16px;
    border: 1.5px solid var(--blue-100);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    outline: none;
    background: var(--white);
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
}

.products-category select:focus {
    border-color: var(--blue-400);
}

/* Loading skeleton */
.skeleton,
.skeleton-box {
    background: linear-gradient(90deg, #e8edf5 25%, #f0f4fa 50%, #e8edf5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
    display: block;
}

/* Hero carousel skeleton (shown before API responds) */
.carousel__slide--loading {
    min-height: 560px;
    background: var(--blue-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__skeleton {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--blue-800) 25%, var(--blue-700) 50%, var(--blue-800) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite;
}

/* Product card skeleton */
.product-card--skeleton {
    pointer-events: none;
}

.product-card--skeleton .product-card__image-wrap,
.product-card--skeleton .product-card__body div {
    background: linear-gradient(90deg, #e8edf5 25%, #f0f4fa 50%, #e8edf5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton {
    background: linear-gradient(90deg, #e8edf5 25%, #f0f4fa 50%, #e8edf5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--blue-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer__logo-tagline {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--gold);
}

.footer__about {
    font-size: 0.84rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer__social:hover {
    background: var(--blue-600);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

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

.footer__link {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__link:hover {
    color: var(--gold);
}

.footer__link::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
}

.footer__contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer__contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer__newsletter form {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.footer__newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.82rem;
    outline: none;
    transition: var(--transition);
}

.footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter input:focus {
    border-color: var(--blue-400);
}

.footer__newsletter button {
    padding: 10px 16px;
    background: var(--gold);
    color: var(--blue-900);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer__newsletter button:hover {
    background: var(--gold-light);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__bottom a {
    color: var(--gold);
    transition: color 0.2s;
}

.footer__bottom a:hover {
    color: var(--gold-light);
}

/* ============================================================
   ABOUT / CTA SECTIONS
   ============================================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-banner__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 32px;
}

/* ============================================================
   MAP EMBED
   ============================================================ */

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 460px;
    width: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer_logo {
    width: 100px;
    height: 100px;
}

.header_logo {
    width: 100px;
    height: 100px;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .feature-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 0;
    }

    .feature-item:nth-child(2n) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-pad: 16px;
    }

    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .topbar {
        height: auto;
        padding: 10px 0;
    }

    .topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .topbar__info {
        flex-wrap: wrap;
        gap: 12px;
    }

    .topbar__hours {
        display: none;
    }

    .carousel {
        height: min(75vh, 520px);
    }

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

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

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

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

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-strip__grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .carousel__prev {
        left: 10px;
    }

    .carousel__next {
        right: 10px;
    }
}

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

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

    .currency-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .currency-rate-info {
        margin-left: 0;
    }

    .btn-lg {
        padding: 13px 24px;
        font-size: 0.9rem;
    }
}
