/* =========================================
   OZEE CAKES N CONFECTIONERY
   Brand Colors: Gold + Blue + White
   ========================================= */

:root {
  /* Brand Colors */
  --gold:        #C9A227;
  --gold-light:  #E2BC4E;
  --gold-pale:   #F7EDCC;
  --gold-dark:   #9A7A1A;

  --blue:        #0047AB;
  --blue-mid:    #1B6CA8;
  --blue-light:  #2E8FD4;
  --blue-pale:   #D6E8F7;
  --blue-dark:   #003280;

  --white:       #FFFFFF;
  --off-white:   #FAFBFF;
  --cream:       #FDF9EE;

  --text:        #0D1B3E;
  --text-mid:    #3A4A6B;
  --text-light:  #6B7A9B;
  --border:      rgba(0, 71, 171, 0.12);

  --shadow-sm:   0 2px 12px rgba(0,71,171,0.08);
  --shadow-md:   0 8px 32px rgba(0,71,171,0.14);
  --shadow-lg:   0 20px 60px rgba(0,71,171,0.18);

  --radius:      14px;
  --radius-lg:   22px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', sans-serif;
  --transition:  all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-pale); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { width: 100px; animation: logoPulse 1.2s ease infinite alternate; }
.loader-inner p {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--gold-light);
  margin-top: 1rem; letter-spacing: 0.05em;
}
@keyframes logoPulse {
  from { transform: scale(1); filter: drop-shadow(0 0 8px rgba(201,162,39,0.4)); }
  to   { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(201,162,39,0.8)); }
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; }
h3 { font-size: 1.5rem; font-weight: 400; }
em { font-style: italic; color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); background: var(--gold-pale);
  padding: 0.3rem 1rem; border-radius: 20px;
  margin-bottom: 1rem; border: 1px solid rgba(201,162,39,0.3);
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--text-light); margin-top: 0.8rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-header.light h2 { color: white; }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); border-color: rgba(201,162,39,0.4); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark); padding: 0.85rem 2rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,162,39,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.55); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-blue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: white; padding: 0.85rem 2rem;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,71,171,0.35);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,71,171,0.5); }
.btn-blue.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--blue-dark);
  padding: 0.85rem 2rem; border-radius: 50px;
  border: 2px solid var(--blue);
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.btn-ghost:hover { background: var(--blue); color: white; }

/* ---- HEADER ---- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#header.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--gold);
}
/* Scrolled — dark text */
header.scrolled nav > a,
header.scrolled nav .nav-dropdown-trigger { color: var(--text-mid) !important; }
header.scrolled nav > a:hover { color: var(--blue) !important; background: var(--blue-pale); }
header.scrolled .logo-name { color: var(--blue-dark) !important; }
header.scrolled .logo-sub  { color: var(--gold-dark) !important; }
/* Not scrolled — white text on hero */
header:not(.scrolled) nav > a,
header:not(.scrolled) nav .nav-dropdown-trigger { color: rgba(255,255,255,0.92) !important; }
header:not(.scrolled) nav > a:hover,
header:not(.scrolled) nav .nav-dropdown-trigger:hover { color: white !important; background: rgba(255,255,255,0.12); }
header:not(.scrolled) .logo-name { color: white; }
header:not(.scrolled) .logo-sub  { color: rgba(255,255,255,0.75); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0.6rem 2rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--blue-dark); line-height: 1; }
.logo-sub  { font-size: 0.65rem; color: var(--gold-dark); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  color: var(--text-mid); text-decoration: none;
  padding: 0.5rem 0.85rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; transition: var(--transition);
}
nav a:hover { color: var(--blue); background: var(--blue-pale); }
nav .btn-order {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark); padding: 0.55rem 1.1rem;
  border-radius: 50px; font-weight: 600;
  box-shadow: 0 2px 10px rgba(201,162,39,0.35);
}
nav .btn-order:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,162,39,0.5); color: var(--blue-dark); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; flex-direction: column;
  background: white; border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-nav a { padding: 0.7rem 0; color: var(--text); text-decoration: none; font-size: 1rem; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav .btn-order { margin-top: 1rem; text-align: center; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--blue-dark); border-radius: 50px; border-bottom: none; font-weight: 600; }
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 90px 4rem 50px;
  background: linear-gradient(150deg, #0D2461 0%, #0047AB 45%, #1B6CA8 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(201,162,39,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
/* Decorative circles */
.hero-bg::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.2);
}
.hero-bg::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.15);
}
.hero-content {
  position: relative; z-index: 1;
  flex: 1;
  max-width: 560px;
  margin-right: 3rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
  background: rgba(201,162,39,0.15);
  padding: 0.4rem 1rem; border-radius: 20px;
  border: 1px solid rgba(201,162,39,0.3);
}
.hero-content h1 { margin-bottom: 1.5rem; color: white; }
.hero-content h1 em { color: var(--gold-light); }
.hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero logo display */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-logo-wrap {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 3px solid rgba(201,162,39,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: floatHero 4s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(201,162,39,0.2), inset 0 0 60px rgba(255,255,255,0.04);
}
.hero-logo-wrap img { width: 260px; height: 260px; object-fit: contain; border-radius: 50%; }
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold-light), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-floats {
  position: absolute; right: 5%; bottom: 15%;
  display: flex; flex-direction: column; gap: 0.8rem; z-index: 2;
}
.float-badge {
  background: rgba(255,255,255,0.95); border-radius: 50px;
  padding: 0.65rem 1.1rem; font-size: 0.8rem; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--blue-dark);
  animation: floatAnim 3s ease-in-out infinite;
}
.float-badge.f2 { animation-delay: 0.6s; }
.float-badge.f3 { animation-delay: 1.2s; }
@keyframes floatAnim {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}

/* ---- FEATURES STRIP ---- */
.features-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  background: var(--gold);
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 2rem; color: var(--blue-dark);
  flex: 1; min-width: 200px;
  border-right: 1px solid rgba(0,71,171,0.15);
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 1.4rem; color: var(--blue-dark); opacity: 0.8; }
.feature-item strong { display: block; font-size: 0.9rem; font-weight: 600; }
.feature-item span { font-size: 0.75rem; opacity: 0.75; }

/* ---- MENU ---- */
.menu-section { padding: 6rem 0; background: var(--off-white); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  border: 2px solid var(--border); background: transparent;
  color: var(--text-light); font-size: 0.85rem; cursor: pointer;
  font-family: var(--font-sans); font-weight: 500; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue); color: white; border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,71,171,0.25);
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 2rem; }
.loading-products { grid-column: 1/-1; display: flex; flex-direction: column; align-items: center; padding: 4rem; color: var(--text-light); gap: 1rem; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--blue-pale); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Product Card */
.product-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); cursor: pointer;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,0.4); }
.card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; position: absolute; inset: 0; }
.product-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-img-placeholder { font-size: 3.5rem; opacity: 0.3; }
.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark); font-size: 0.68rem; padding: 0.3rem 0.8rem;
  border-radius: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.card-body { padding: 1.4rem; }
.card-category { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--blue-mid); margin-bottom: 0.4rem; font-weight: 600; }
.card-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }
.card-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--blue); }
.card-price span { font-size: 0.78rem; font-family: var(--font-sans); color: var(--text-light); font-weight: 400; }
.card-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark); border: none; cursor: pointer;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; font-family: var(--font-sans);
  transition: var(--transition);
}
.card-order-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,162,39,0.45); }
.no-products { grid-column: 1/-1; text-align: center; padding: 4rem; color: var(--text-light); font-family: var(--font-serif); font-size: 1.3rem; }
.load-more-wrap { text-align: center; margin-top: 3rem; }
.btn-load-more {
  background: transparent; border: 2px solid var(--blue);
  color: var(--blue); padding: 0.85rem 2.5rem;
  border-radius: 50px; cursor: pointer; font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.btn-load-more:hover { background: var(--blue); color: white; }

/* ---- ABOUT ---- */
.about-section { padding: 6rem 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blue-pale) 0%, var(--gold-pale) 100%);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  border: 2px solid rgba(201,162,39,0.3);
}
.about-img-placeholder img { width: 180px; height: 180px; object-fit: contain; }
.about-img-placeholder p { font-family: var(--font-serif); font-size: 1.4rem; color: var(--blue-dark); font-weight: 400; }
.about-badge-circle {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-serif); font-size: 1rem; line-height: 1.4;
  font-weight: 600; border: 4px solid var(--cream); box-shadow: var(--shadow-md);
}
.about-text h2 { margin-bottom: 1.5rem; color: var(--text); }
.about-text p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8; }
.about-stats { display: flex; gap: 2rem; margin: 2.5rem 0; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--blue); }
.stat span { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; }

/* ---- GALLERY ---- */
.gallery-section { padding: 6rem 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem; padding: 2rem 0;
}
.gallery-item { aspect-ratio:1/1; overflow:hidden; border-radius:10px; cursor:pointer; transition:transform .3s; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item:hover { transform:translateY(-3px); }
.gallery-placeholder { text-align: center; padding: 4rem; color: var(--text-light); font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 0.15em; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.15);
}
.testimonial-card { display: none; text-align: center; max-width: 680px; margin: 0 auto; animation: fadeInUp 0.5s ease; }
.testimonial-card.active { display: block; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.stars { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 1.5rem; }
.testimonial-card p { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; font-style: italic; color: white; line-height: 1.7; margin-bottom: 2rem; }
.t-author strong { display: block; color: var(--gold-light); font-size: 1rem; }
.t-author span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--gold-light); transform: scale(1.3); }

/* ---- CONTACT ---- */
.contact-section { padding: 6rem 0; background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text); }
.contact-item span { font-size: 0.82rem; color: var(--text-light); }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.8rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-sans); font-size: 0.9rem;
  background: var(--off-white); color: var(--text);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,71,171,0.1);
}
.form-group textarea { resize: vertical; }
.form-message { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 8px; font-size: 0.85rem; display: none; }
.form-message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-message.error   { background: #fce4ec; color: #c62828; display: block; }

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(150deg, var(--blue-dark) 0%, #0A1E4A 100%);
  color: white; padding: 5rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; padding-bottom: 4rem; }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0.8rem 0; line-height: 1.7; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: var(--transition); font-size: 0.9rem;
  border: 1px solid rgba(201,162,39,0.2);
}
.social-links a:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }
.footer-links h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.86rem; margin-bottom: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-newsletter h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-newsletter p { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.7rem 1rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(201,162,39,0.25); border-radius: 8px; color: white; font-family: var(--font-sans); font-size: 0.85rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--blue-dark); border: none; padding: 0.7rem 1.2rem; border-radius: 8px; cursor: pointer; font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; transition: var(--transition); }
.newsletter-form button:hover { transform: translateY(-1px); }
.footer-bottom { border-top: 1px solid rgba(201,162,39,0.2); text-align: center; padding: 1.5rem 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ---- ORDER MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,30,80,0.75); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius-lg);
  max-width: 650px; width: 100%; max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 30px 80px rgba(0,30,80,0.4);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 4px solid var(--gold);
}
@keyframes modalIn { from { transform: scale(0.9) translateY(20px); opacity:0; } to { transform: scale(1) translateY(0); opacity:1; } }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--blue-pale); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 0.9rem; color: var(--blue);
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--blue); color: white; }
.modal-header { padding: 2rem 2rem 1rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--text); }
.modal-header p { font-size: 0.85rem; color: var(--text-light); margin-top: 0.3rem; }
.modal-body { padding: 1.5rem 2rem 2rem; }
.order-cake-preview {
  background: linear-gradient(135deg, var(--blue-pale), var(--gold-pale));
  border-radius: var(--radius); padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem; font-size: 0.9rem;
  border: 1px solid rgba(201,162,39,0.3);
}
.order-summary-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-top: 1px solid var(--border); font-size: 0.9rem; }
.order-note { font-size: 0.78rem; color: var(--text-light); margin: 0.8rem 0 1.5rem; font-style: italic; }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--blue-dark); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.88rem; z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
  border: 1px solid var(--gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .hero-floats { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 2rem 60px; }
  h1 { font-size: 2.4rem; }
  .about-stats { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem; padding: 2rem 0;
}
.gallery-item { aspect-ratio:1/1; overflow:hidden; border-radius:10px; cursor:pointer; transition:transform .3s; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item:hover { transform:translateY(-3px); }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem; padding: 2rem 0;
}
.gallery-item { aspect-ratio:1/1; overflow:hidden; border-radius:10px; cursor:pointer; transition:transform .3s; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item:hover { transform:translateY(-3px); }
}

/* ---- Login / Register nav button ---- */
.btn-ghost-nav {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  border: 1.5px solid rgba(0,71,171,0.35);
  color: var(--blue); background: rgba(0,71,171,0.06);
  font-size: 0.84rem; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost-nav:hover {
  background: rgba(0,71,171,0.12);
  border-color: var(--blue);
}
/* On scrolled/white header */
header.scrolled .btn-ghost-nav {
  border-color: rgba(0,71,171,0.4);
  color: var(--blue);
}
/* On dark hero (not scrolled) */
header:not(.scrolled) .btn-ghost-nav {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.08);
}
header:not(.scrolled) .btn-ghost-nav:hover {
  background: rgba(255,255,255,0.15);
}
#navAccount {
  font-size: 0.84rem; font-weight: 500;
  color: var(--blue); text-decoration: none;
  gap: 0.4rem;
}
header:not(.scrolled) #navAccount { color: white; }

/* ---- Card image slider (homepage + cakes page) ---- */
.card-slider {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.card-slides { width: 100%; height: 100%; position: relative; }
.card-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .5s ease;
}
.card-slide.active { opacity: 1; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: white; border: none;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .7rem; z-index: 3;
  opacity: 0; transition: opacity .2s;
}
.card-slider:hover .slider-prev,
.card-slider:hover .slider-next { opacity: 1; }
.slider-prev { left: 6px; }
.slider-next { right: 6px; }
.slider-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; z-index: 3;
}
.sdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: background .2s, transform .2s;
}
.sdot.active { background: white; transform: scale(1.3); }

/* Testimonial emoji avatar */
.t-emoji { font-size: 2rem; margin-bottom: .5rem; }

/* ---- Founder image in About section ---- */
.about-img-founder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-founder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-founder:hover img { transform: scale(1.03); }
.about-img-wrap { position: relative; }

/* ---- Google Review CTA ---- */
.review-cta {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}
.review-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.review-cta-left { flex: 1; min-width: 200px; }
.google-stars {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}
.review-cta-left p {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}
.review-cta-left p strong { color: white; }
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  background: white;
  color: #1a1a1a;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
@media (max-width: 600px) {
  .review-cta-inner { flex-direction: column; align-items: flex-start; }
  .btn-google-review { width: 100%; justify-content: center; }
}

/* ---- Nav Dropdown ---- */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: .35rem;
  cursor: pointer;
}
.nav-dropdown-trigger i {
  font-size: .65rem;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-trigger i { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 14px;
  padding: .5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  border: 1px solid rgba(0,71,171,.08);
  z-index: 1000;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: white;
  border-left: 1px solid rgba(0,71,171,.08);
  border-top: 1px solid rgba(0,71,171,.08);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1.25rem;
  color: #0D1B3E !important;
  font-size: .85rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:first-child {
  font-weight: 600;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: .25rem;
}
.nav-dropdown-menu a:hover {
  background: #EEF3FF;
  color: #0047AB !important;
}

/* On dark header (not scrolled) */
header:not(.scrolled) .nav-dropdown-trigger { color: white; }



/* ---- Mobile nav categories ---- */
.mobile-cat-title {
  font-weight: 700 !important;
  color: #0047AB !important;
  padding-bottom: .3rem !important;
  border-bottom: 1px solid #EEE;
  margin-bottom: .1rem;
}
.mobile-cat-item {
  padding-left: 1.2rem !important;
  font-size: .88rem !important;
  color: #555 !important;
  border-bottom: none !important;
}
.mobile-cat-item:hover { color: #0047AB !important; }