/* =========================
   Theme + Base
========================= */
:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;

  --gold: #c9a23a;
  --gold-dark: #b68b25;
  --gold-soft: rgba(201,162,58,.12);

  --border: #e9e9e9;
  --wrap: 1120px;

  --radius: 10px;
  --shadow-soft: 0 8px 18px rgba(0,0,0,.06);

  --font-body: Verdana, Geneva, Tahoma, sans-serif;
  --font-head: "Playfair Display", Georgia, serif;

  --menu-w: 92vw;
  --menu-max: 420px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  padding: 0;

  background:
    linear-gradient(
  rgba(253, 237, 221, 0.767),
  rgba(250, 222, 169, 0.568)
),
    url("https://t4.ftcdn.net/jpg/07/64/97/13/360_F_764971346_UWnWBvmGqINw3LyDFDH7RBYOWDN7Qij0.jpg");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;

  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }

.wrap{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

/* Overlay when menu opens */
body::before{
  content:"";
  position: fixed;
  inset: 0;
   background: rgba(255, 255, 255, 0.555); /* light overlay */
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 900;
}

body.menu-open{
  overflow: hidden;
}

body.menu-open::before{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   Header + Navigation
========================= */
.header{
  background: #ffffffa6;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 950;
}

.nav{
  display: flex;
   align-items: center; 
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  position: relative;
  width: 90%;
}

/* Brand */
.logo{
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: .2px;
}

.logo img{
  width: 150px;
  border-radius: 8px;
  /* border: 1px solid var(--border); */
  object-fit: cover;
}

/* .logo span{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.1;
  color: #b68b25;
} */

/* Hamburger / Close button */
.menu-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  z-index: 1002;
}

.menu-btn:hover{
  border-color: rgba(201,162,58,.55);
  background: rgba(201,162,58,.06);
  transform: translateY(-1px);
}

.menu-btn i{
  font-size: 18px;
  color: var(--text);
}

/* Pin the button when menu is open (like cakesforall close icon) */
body.menu-open .menu-btn{
  position: fixed;
  top: 16px;
  right: 16px;
}

/* =========================
   Mobile Menu Drawer
========================= */
.menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: var(--menu-w);
  max-width: var(--menu-max);

  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);

  padding: 78px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;

  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 1000;
}

.menu.open{
  transform: translateX(0);
}

/* Links: one per line (no sentence look) */
.link{
  display: block;
  text-decoration: none;
 color: var(--muted);
  padding: 12px 6px;
  font-size: 15.5px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
}

/* Animated underline (gold) */
.link::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.link:hover,
.link:focus-visible{
  color: var(--gold-dark);
}

.link:hover::after,
.link:focus-visible::after{
  transform: scaleX(1);
}

/* CTA buttons under links (keep original look) */
.nav-actions{
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  user-select: none;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}

.btn i{ font-size: 14px; }
.btn:active{ transform: translateY(1px); }

.btn-gold{
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover{
  filter: brightness(.96);
  transform: translateY(-1px);
}

.btn-outline{
  background: transparent;
  color: #111;
  border-color: rgba(201,162,58,.85);
}

.nav-actions .btn{
  white-space: nowrap;
}

.btn-outline:hover{
  background: rgba(201,162,58,.10);
  transform: translateY(-1px);
}


/* =========================
   Dropdown Button Group
========================= */

.btn-group{
  position: relative;
  width: 100%;
}


.dropdown-toggle{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 9px;

  font-weight: 700;
  border: 2px solid rgba(201,162,58,.85);

  background: transparent;

  color: #111;

  transition: all .2s ease;
}

/* Hover = alive */
.dropdown-toggle:hover{
  background: rgba(201,162,58,.15);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,162,58,.15);
}

.btn-group .dropdown-toggle{
  width: 100%;
  justify-content: space-between;
}

.dropdown-toggle .caret{
  font-size: 14px;
  transition: transform .25s ease;
}

/* Dropdown container */
.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);

  min-width: 200px;
  padding: 8px;

  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;

  transition: all .22s ease;
  z-index: 999;
}

/* Items */
.dropdown-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;

  transition: background .15s ease, transform .15s ease;
}

.dropdown-item i{
  font-size: 18px;
  color: var(--gold-dark);
}

.dropdown-item:hover{
  background: var(--gold-soft);
  transform: translateX(3px);
}

/* SHOW STATE */
.btn-group:hover .dropdown-menu{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btn-group:hover .caret{
  transform: rotate(180deg);
}

/* =========================
   Mobile Behavior
========================= */
@media (max-width: 919px){
  .dropdown-menu{
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 6px 0 0;
    display: none;
  }

  .btn-group.open .dropdown-menu{
    display: block;
  }

  .dropdown-item{
    padding-left: 6px;
  }
}



/* Smooth open animation */
.btn-group.open .dropdown-menu{
  animation: dropdownIn .25s ease;
}

@keyframes dropdownIn{
  from{
    opacity: 0;
    transform: translateY(8px) scale(.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   DESKTOP NAV FIX (CLEAN + ALIGNED)
========================= */

@media (min-width: 920px){

  /* Align nav actions properly */
  .nav-actions{
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Prevent ugly wrapping */
  .nav-actions .btn,
  .nav-actions .dropdown-toggle{
    height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  /* Fix gold button width */
  .btn-gold{
    min-width: 170px;
  }

  /* Dropdown should NOT stretch full width on desktop */
  .btn-group{
    width: auto;
  }

  /* Make dropdown button feel premium */
  .dropdown-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 210px;
    gap: 12px;

    background: linear-gradient(
      180deg,
      rgba(201,162,58,.18),
      rgba(201,162,58,.08)
    );

    border: 1px solid rgba(201,162,58,.25);
    color: var(--gold-dark);

    box-shadow: 0 8px 20px rgba(201,162,58,.08);
  }

  .dropdown-toggle:hover{
    transform: translateY(-2px);

    background: linear-gradient(
      180deg,
      rgba(201,162,58,.24),
      rgba(201,162,58,.12)
    );

    box-shadow: 0 14px 30px rgba(201,162,58,.14);
  }

  /* Fix dropdown position (was floating too far) */
  .dropdown-menu{
    top: calc(100% + 10px);
    right: 0;
    min-width: 230px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0,0,0,.10);
  }

  /* Upgrade dropdown items */
  .dropdown-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
  }

  .dropdown-item:hover{
    background: rgba(201,162,58,.10);
    transform: translateX(4px);
    color: var(--gold-dark);
  }
}
/* =========================
   Hero
========================= */
.hero{
  padding: 42px 0 80px;
  background: #ffffffb7;
}

.hero-grid{
  display: grid;
  gap: 22px;
}

.hero-left h1{
  font-family: var(--font-head);
  color: var(--gold-dark);
  font-size: 38px;
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: .1px;
}

.hero-left p{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15.5px;
  margin-top: 2rem;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right{
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.fade-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 10 /8;
  background: #f7f7f7;
}

.fade{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .9s ease;
}

.fade.active{
  opacity: 1;
  transform: scale(1);
}

/* =========================
   Desktop Layout
========================= */
@media (min-width: 920px){
  body::before{ display: none; }
  body.menu-open{ overflow: auto; }

  .menu-btn{ display: none; }

  .nav{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
  }

  .menu{
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    box-shadow: none;
    transform: none;
    transition: none;
    background: transparent;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  /* If you have .nav-links wrapper, links center perfectly */
  .nav-links{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex: 1;
  }

  .link{
    display: inline-block;
    border-bottom: none;
    padding: 6px 6px;
    font-size: 14px;
  }

  .link::after{
    bottom: -6px;
  }

  .nav-actions{
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: none;
  }

  /* CTAs slightly smaller on desktop nav (not tiny) */
  .nav-actions .btn{
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero{
    padding: 56px 0 72px;
  }

  .hero-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 28px;
  }

  .hero-left h1{ font-size: 50px; }
  .hero-left p{ font-size: 16.5px; }
}

/* =========================
   Tiny screens
========================= */
@media (max-width: 360px){
  .logo span{ font-size: 16px; }
  .hero-left h1{ font-size: 34px; }
}

/* =========================
   Section: Category Grid (CakesForAll vibe)
========================= */
.cat-section{
  padding: 56px 0;
}

.cat-intro{
  text-align: center;
  margin-bottom: 22px;
}

.cat-kicker{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: rgba(17,17,17,.55);
}

.cat-title{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .1px;
}

.cat-sub{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  font-size: 15.5px;
}

/* Grid */
.cat-grid{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

/* Tile: “image shows properly” */
.cat-tile{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
}

/* IMPORTANT: make tiles tall enough for cakes */
.cat-tile{
  aspect-ratio: 10 / 8; /* taller so cakes don't get chopped */
}

/* Image should NOT be cropped harshly */
.cat-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* shows full cake */
  object-position: center;
  transform: scale(1);
  transition: transform .35s ease;
  background: #f6f6f6;
}

/* Hover overlay (nice, clean) */
.cat-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(184, 167, 42, 0.05),
    rgba(255, 187, 0, 0.158)
  );
  opacity: 0;
  transition: opacity .25s ease;
}

/* Label only on hover */
.cat-label{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;

  padding: 12px 14px;
  border-radius: 5px;

   background: rgba(252, 242, 211, 0.959);
  border: 1px solid rgba(255,255,255,0.55);
 
  font-weight: 800;
  text-align: center;
  color: var(--gold-dark);

  transform: translateY(10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

.cat-tile:hover .cat-overlay,
.cat-tile:focus-visible .cat-overlay{
  opacity: 1;
}

.cat-tile:hover .cat-label,
.cat-tile:focus-visible .cat-label{
  transform: translateY(0);
  opacity: 1;
}

.cat-tile:hover img,
.cat-tile:focus-visible img{
  transform: scale(1.03);
}

/* Buttons under the grid */
.cat-buttons{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cat-buttons .btn{
  min-width: 180px; /* not huge, not tiny */
}

/* Mobile-first layout */
@media (min-width: 540px){
  .cat-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* Desktop: 4 in a row, slim */
@media (min-width: 920px){
  .cat-section{
    padding: 66px 0;
  }

  .cat-title{
    font-size: 44px;
  }

  .cat-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; /* slim but breathable */
  }

  .cat-tile{
    aspect-ratio: 4 / 5; 
  }
  
}

/* =========================
   Classes Preview Section
========================= */
.classes-preview{
  padding: 64px 0;
  background: #fff;
}

.classes-head{
  text-align: center;
  margin-bottom: 28px;
}

.section-kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: rgba(17,17,17,.55);
  margin-bottom: 8px;
}

.classes-head h2{
  font-family: var(--font-head);
  font-size: 34px;
  margin: 0 0 10px;
}

.classes-head p{
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* Grid */
.classes-grid{
  display: grid;
  gap: 18px;
}

/* Card */
.class-card{
  background:#fff;
  border-radius: 12px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.class-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.class-card img{
  width:100%;
  height:220px;
  object-fit: cover;
}

.class-body{
  padding: 16px;
}

.class-body h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.class-body p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.class-tag{
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Buttons */
.classes-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* Responsive */
@media (min-width: 720px){
  .classes-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .classes-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .classes-head h2{
    font-size: 42px;
  }
}

/* =========================
   How Ordering Works
========================= */
.order-steps{
  padding: 64px 0;
}

.steps-head{
  text-align: center;
  margin-bottom: 22px;
}



.steps-head h2{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .1px;
}

.steps-head p{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  font-size: 15.5px;
}

.steps-grid{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

/* Step Icon Container */
.step-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(201,162,58,.10);
  border: 1px solid rgba(201,162,58,.25);

  margin: 0 auto 12px; /* centers icon horizontally */
  position: relative;
  overflow: hidden;
}

/* icon styling */
.step-icon i{
  font-size: 22px;
  color: var(--gold-dark);
  transition: transform .35s ease, color .25s ease;
}

/* subtle pulse glow */
.step-icon::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle, rgba(201,162,58,.25), transparent 70%);
  opacity:0;
  transition: opacity .35s ease;
}

/* hover animation */
.step-card:hover .step-icon::before{
  opacity:1;
}

.step-card:hover .step-icon i{
  transform: translateY(-3px) scale(1.08);
  color: var(--gold);
}

.step-card h3{
  margin: 0 0 6px;
  font-size: 16.5px;
  text-align: center;
}

.step-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  text-align: center;
}

.steps-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.steps-actions .btn{
  min-width: 180px;
}

.steps-note{
  margin: 14px auto 0;
  max-width: 70ch;
  text-align: center;
  color: rgba(17,17,17,.70);
  font-size: 13.5px;
}

.steps-note i{
  color: var(--gold-dark);
  margin-right: 6px;
}

@media (min-width: 620px){
  .steps-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 920px){
  .steps-head h2{
    font-size: 42px;
  }

  .steps-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .step-card{
    padding: 18px;
  }
}

/* =========================
   About Preview
========================= */
.about-preview{
  padding: 64px 0;
  background: #f7f7f7;
}

.about-grid{
  display: grid;
  gap: 18px;
}

.about-left h2{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.about-left p{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 70ch;
  font-size: 15.5px;
}

.about-points{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.about-points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(17,17,17,.85);
  font-size: 14.5px;
}

.about-points i{
  color: var(--gold-dark);
  margin-top: 3px;
}

.about-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-right{
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
}

.about-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 920px){
  .about-grid{
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 28px;
  }

  .about-left h2{
    font-size: 42px;
  }

  .about-right img{
    aspect-ratio: 4 / 4;
  }
}

/* =========================
   Testimonials
========================= */
/* =========================
   Testimonials (Premium)
========================= */
.testimonials{
  padding: 44px 0;
}

.test-head{
  text-align: center;
  margin-bottom: 22px;
}

.test-head h2{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.test-head p{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted);
  font-size: 15.5px;
}

.test-grid{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.test-card{
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  font-family: var(--font-head);

}

/* subtle gold accent line */
.test-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .75;
}

.test-card:hover{
  transform: translateY(-4px);
  border-color: rgba(201,162,58,.45);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

.test-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.test-stars{
  display:flex;
  gap: 4px;
}

.test-stars i{
  color: var(--gold-dark);
  font-size: 14px;
}

.test-quote{
  color: rgba(17,17,17,.25);
  font-size: 18px;
  font-family: var(--font-head);

}

.test-card blockquote{
  margin: 0 0 14px;
  color: rgba(17,17,17,.85);
  font-size: 15px;
  line-height: 1.55;
}

.test-person{
  display:flex;
  align-items:center;
  gap: 10px;
}

.test-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(201,162,58,.14);
  border: 1px solid rgba(201,162,58,.28);
  color: var(--gold-dark);
}

.test-name{
  display:block;
  font-weight: 900;
}

.test-meta{
  display:block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.test-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.test-actions .btn{
  min-width: 180px;
}

@media (min-width: 920px){
  .test-head h2{
    font-size: 42px;
  }

  .test-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .test-card{
    padding: 18px;
  }
}

/* =========================
   Conversion Banner + Map
========================= */
.cta-location{
  background: #fff;
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.cta-grid{
  display: grid;
  gap: 24px;
}

.cta-content h2{
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
  color: var(--gold-dark);
}

.cta-text{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 15.5px;
}

.cta-details{
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}

.cta-details i{
  color: var(--gold-dark);
  margin-right: 8px;
}

.cta-buttons{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.WhatsApp {
  color: #fff;
  background: rgb(3, 202, 3);
  border-color: rgb(3, 202, 3);
}
.WhatsApp i {
  font-size: 18px;
  color: #fff;
}
.WhatsApp:hover {
  background: rgba(3, 202, 3, 0.966);
  border: none;
}

.cta-buttons .btn{
  min-width: 170px;
}

/* Map Styling */
.cta-map{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.cta-map iframe{
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(20%) contrast(95%);
}

/* Desktop Layout */
@media (min-width: 920px){
  .cta-grid{
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
  }

  .cta-content h2{
    font-size: 44px;
  }

  .cta-map iframe{
    min-height: 420px;
  }
}


/* =========================
   Order Conversion Section
========================= */

.order-banner{
  padding:70px 0;
  border-top:1px solid var(--border);
  background:#ffffffbb;
}

/* main grid */

.order-banner-grid{
  display:grid;
  gap:20px;
}

/* LEFT PANEL */

.order-panel{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.order-panel h2{
  margin:0 0 10px;
  font-family:var(--font-head);
  color: var(--gold-dark);
  font-size:34px;
  line-height:1.1;
}

.order-sub{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15.5px;
  max-width:64ch;
}

/* steps */

.order-steps-mini{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:10px;
}

.order-steps-mini li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  line-height:1.45;
  color:rgba(17,17,17,.85);
}

.order-steps-mini li span{
  width:26px;
  height:26px;
  flex:0 0 26px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:rgba(201,162,58,.14);
  border:1px solid rgba(201,162,58,.25);
}

/* FORM */

.order-form{
  display:grid;
  gap:12px;
}

.order-form label{
  display:grid;
  gap:6px;
}

.order-form span{
  font-size:13px;
  font-weight:700;
  color:rgba(17,17,17,.75);
}

.order-form input,
.order-form textarea,
.order-form select{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid var(--border);
  font-family:var(--font-body);
  color:var(--text);
  background:#fff;
  outline:none;
}

.order-form textarea{
  resize:vertical;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus{
  border-color:rgba(201,162,58,.6);
  box-shadow:0 0 0 3px rgba(201,162,58,.12);
}

/* Select styling to match inputs */
.order-form select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  outline: none;

  appearance: none;
  cursor: pointer;

  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Focus state */
.order-form select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,58,.15);
}

/* Add custom dropdown arrow */
.order-form .opt{
  position: relative;
}

.order-form .opt select{
  padding-right: 40px;
}

.order-form .opt::after{
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 12px;
  bottom: 12px;

  font-size: 12px;
  color: var(--muted);
  pointer-events: none;
}

/* 2 column rows */

.form-row{
  display:grid;
  gap:12px;
}

/* buttons */

.order-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}

.order-actions .btn{
  min-width:160px;
}

/* help */

.order-help{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border);
}

.order-help h3{
  margin:0 0 6px;
  font-size:15px;
}

.order-help p{
  margin:0 0 10px;
  font-size:13.5px;
  color:var(--muted);
}

.order-help-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.order-help-links a{
  color:var(--gold-dark);
  font-weight:800;
  text-decoration:none;
}

.order-help-links a:hover{
  text-decoration:underline;
}

.order-reference{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin: 0 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.order-reference-image{
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
}

.order-reference-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-reference-kicker{
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.order-reference-content h3{
  margin: 0 0 4px;
  font-size: 16px;
}

.order-reference-content p:last-child{
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

@media (max-width: 480px){
  .order-reference{
    grid-template-columns: 72px 1fr;
  }

  .order-reference-image{
    width: 72px;
    height: 72px;
  }
}

/* RIGHT SIDE */

.order-side{
  display:grid;
  gap:16px;
}

/* catalogue guide */

.order-guide{
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.order-guide h3{
  margin:0 0 8px;
  font-size:20px;
}

.order-guide p{
  margin:0 0 12px;
  font-size:14.5px;
  color:var(--muted);
}

.catalog-btn{
  margin-bottom:8px;
}

.guide-note{
  font-size:13px;
  color:var(--muted);
}

.order-guide-steps{
  margin:0 0 16px;
  padding-left:18px;
  display:grid;
  gap:8px;
  font-size:14px;
  color:var(--muted);
}

.order-guide-steps li{
  line-height:1.45;
}

/* MAP */

.order-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  background:#f6f6f6;
}

.order-map iframe{
  width:100%;
  height:220px;
  border:0;
  filter:grayscale(15%) contrast(95%);
}

/* Tablet */

@media (min-width:620px){

  .form-row{
    grid-template-columns:1fr 1fr;
  }

}

/* Desktop */

@media (min-width:920px){

  .order-banner-grid{
    grid-template-columns:1.2fr .8fr;
    align-items:start;
    gap:22px;
  }

  .order-panel{
    padding:22px;
  }

  .order-panel h2{
    font-size:42px;
  }

  .order-map iframe{
    height:260px;
  }

}




/* =========================
   Catalogue Page
========================= */

.catalog-hero{
  padding: 52px 0 24px;
  background: #ffffffa6;
}

.catalog-hero h1{
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: .1px;
}

.catalog-hero p{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 15.5px;
}

/* =========================
   Catalogue Controls
========================= */

.catalog-controls{
  padding: 0 0 20px;
  background: #ffffffa6;
  position: relative;
  z-index: 100%;
}

.catalog-toolbar{
  display: grid;
  gap: 14px;
}

.catalog-search{
  position: relative;
}

.catalog-search i{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(17,17,17,.45);
  font-size: 14px;
}

.catalog-search input{
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.catalog-search input:focus{
  border-color: rgba(201,162,58,.6);
  box-shadow: 0 0 0 3px rgba(201,162,58,.12);
}

.catalog-filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn{
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.filter-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,58,.45);
  background: rgba(201,162,58,.06);
  color: var(--gold-dark);
}

.filter-btn.active{
  border-color: rgba(201,162,58,.55);
  background: rgba(201,162,58,.10);
  color: var(--gold-dark);
}

/* =========================
   Catalogue Grid
========================= */

.catalog-grid-section{
  padding: 50px 0 56px;
  background: #ffffff41;
}

.catalog-grid{
  display: grid;
  gap: 16px;
}

.cake-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cake-card:hover{
  transform: translateY(-6px);
  border-color: rgba(201,162,58,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.cake-image{
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f7f7f7;
  overflow: hidden;
}

.cake-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.cake-card:hover .cake-image img{
  transform: scale(1.05);
}

.cake-info{
  padding: 16px;
}

.cake-info h3{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.cake-info p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cake-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cake-actions .btn{
  flex: 1 1 150px;
  min-width: 140px;
}

/* =========================
   Empty State
========================= */

.catalog-empty{
  margin-top: 18px;
  padding: 22px 16px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(201,162,58,.04);
}

.catalog-empty i{
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--gold-dark);
}

.catalog-empty p{
  margin: 0;
  font-size: 14.5px;
}

/* =========================
   Bottom CTA
========================= */

.catalog-bottom-cta{
    padding: 52px 0 64px;
  background: #ffffffd0;
}

.catalog-cta-box{
  display: grid;
  gap: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.catalog-cta-box h2{
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1.1;
}

.catalog-cta-box p{
  margin: 0;
  color: var(--muted);
}

.catalog-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   Catalogue Modal
========================= */

.catalog-modal{
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.catalog-modal[hidden]{
  display: none;
}

.catalog-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.catalog-modal-dialog{
  position: relative;
  width: min(920px, calc(100% - 24px));
  margin: 30px auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.20);
  z-index: 1;
}

.modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.modal-close:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,58,.45);
  background: rgba(201,162,58,.06);
}

.modal-grid{
  display: grid;
}

.modal-image{
  background: #f7f7f7;
  aspect-ratio: 4 / 3;
}

.modal-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-content{
  padding: 20px;
}

.modal-category{
  margin: 0 0 6px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.modal-content h3{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-family: var(--font-head);
}

.modal-content p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.modal-open{
  overflow: hidden;
}

/* =========================
   Responsive
========================= */

@media (min-width: 640px){
  .catalog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .catalog-hero{
    padding: 64px 0 24px;
  }

  .catalog-hero h1{
    font-size: 48px;
  }

  .catalog-toolbar{
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .catalog-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .catalog-cta-box{
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px;
  }

  .catalog-cta-box h2{
    font-size: 40px;
  }

  .modal-grid{
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }

  .modal-image{
    aspect-ratio: auto;
  }
}




.about-hero-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}



/* =========================
   About Page Story
========================= */

.about-story-section{
  padding: 70px 0;
  background: rgba(255, 255, 254, 0.644);
  border-top: 1px solid var(--border);
}

.about-story-grid{
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-story-media{
  order: 2;
}

.about-story-content{
  display: grid;
  gap: 14px;
}

.about-story-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.about-story-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
  max-width: 18ch;
}

.about-story-text{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

.about-story-image-wrap{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
}

.about-story-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}

@media (min-width: 920px){

  .about-story-grid{
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
  }

  .about-story-media{
    order: 1;
  }

  .about-story-title{
    font-size: 46px;
  }

  .about-story-text{
    font-size: 16px;
  }

}


/* =========================
   About Page Services
========================= */

.about-services-section{
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.about-services-head{
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.about-services-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.about-services-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.about-services-text{
  margin: 0 auto;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.about-services-grid{
  display: grid;
  gap: 16px;
}

.about-service-card{
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(201,162,58,.28);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.about-service-icon{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,58,.10);
  border: 1px solid rgba(201,162,58,.22);
}

.about-service-icon i{
  font-size: 40px;
  color: var(--gold-dark);
}

.about-service-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.about-service-text{
  margin: 0;
  font-size: 14.8px;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 700px){
  .about-services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .about-services-title{
    font-size: 46px;
  }

  .about-services-text{
    font-size: 16px;
  }

  .about-services-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .about-service-card{
    padding: 22px 20px;
  }
}

/* =========================
   About Page Standards
========================= */

.about-standards-section{
  padding: 70px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 254, 0.644);
}

.about-standards-head{
  text-align: center;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.about-standards-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.about-standards-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.about-standards-text{
  margin: 0 auto;
  max-width: 64ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.about-standards-grid{
  display: grid;
  gap: 18px;
}

.about-standard-item{
  padding: 22px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  text-align: center;
}

.about-standard-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,58,.12);
  border: 1px solid rgba(201,162,58,.25);
}

.about-standard-icon i{
  font-size: 22px;
  color: var(--gold-dark);
}

.about-standard-item h3{
  margin: 0;
  font-size: 18px;
}

.about-standard-item p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 700px){
  .about-standards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){

  .about-standards-title{
    font-size: 46px;
  }

  .about-standards-text{
    font-size: 16px;
  }

  .about-standards-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

}


/* =========================
   About Page Founder
========================= */

.about-founder-section{
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 254, 0.644);
}

.about-founder-grid{
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-founder-media{
  order: 2;
}

.about-founder-content{
  display: grid;
  gap: 14px;
}

.about-founder-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.about-founder-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.about-founder-text{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 60ch;
}

.about-founder-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.about-founder-image-wrap{
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
}

.about-founder-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (min-width: 920px){

  .about-founder-grid{
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
  }

  .about-founder-media{
    order: 1;
  }

  .about-founder-title{
    font-size: 46px;
  }

  .about-founder-text{
    font-size: 16px;
  }

}

/* =========================
   Our Work Page
========================= */

.work-hero-section{
  padding: 56px 0 26px;
  background: #ffffff9d;
}

.work-hero-content{
  max-width: 760px;
}

.work-hero-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.work-hero-title{
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: .1px;
}

.work-hero-text{
  margin: 0;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* filters */

.work-filter-section{
  padding: 0 0 20px;
      background: #ffffff4f;
}

.work-filter-wrap{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.work-filter-btn{
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  margin-top: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.work-filter-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,58,.45);
  background: rgba(201,162,58,.06);
  color: var(--gold-dark);
}

.work-filter-btn.active{
  border-color: rgba(201,162,58,.55);
  background: rgba(201,162,58,.10);
  color: var(--gold-dark);
}

/* gallery */

.work-gallery-section{
  padding: 0 0 70px;
  background: #ffffff4f;


}

.work-gallery-grid{
  display: grid;
  gap: 14px;
}

.work-gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  cursor: pointer;
}

.work-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.work-gallery-item:hover img{
  transform: scale(1.05);
}

.work-gallery-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.08) 55%, transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.work-gallery-item:hover .work-gallery-overlay{
  opacity: 1;
}

.work-gallery-meta{
  display: grid;
  gap: 4px;
  color: #fff;
}

.work-gallery-category{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
}

.work-gallery-title{
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.work-gallery-empty{
  margin-top: 16px;
  padding: 20px 16px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  text-align: center;
  color: var(--muted);
  background: rgba(201,162,58,.04);
}

.work-gallery-empty i{
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  color: var(--gold-dark);
}

/* instagram cta */

.work-instagram-cta-section{
  padding: 50px 0 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.336), rgba(253, 253, 253, 0.719));

}

.work-instagram-cta{
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(201,162,58,.05));
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.work-instagram-copy{
  display: grid;
  gap: 12px;
}

.work-instagram-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.work-instagram-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.08;
}

.work-instagram-text{
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.work-instagram-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.work-instagram-btn i{
  animation: workInstagramPulse 2.2s ease-in-out infinite;
}

@keyframes workInstagramPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.12); }
}

/* animated visual */

.work-instagram-visual{
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.work-instagram-ring{
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,58,.45);
  animation: workSpin 16s linear infinite;
}

@keyframes workSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.work-instagram-center{
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(201,162,58,.28);
  box-shadow: var(--shadow-soft);
}

.work-instagram-center i{
  font-size: 34px;
  color: var(--gold-dark);
}

.work-instagram-card{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.work-instagram-card i{
  color: var(--gold-dark);
}

.work-instagram-card-one{
  top: 26px;
  left: 12px;
  animation: workFloatOne 3.8s ease-in-out infinite;
}

.work-instagram-card-two{
  right: 8px;
  top: 44%;
  animation: workFloatTwo 4.2s ease-in-out infinite;
}

.work-instagram-card-three{
  bottom: 24px;
  left: 28px;
  animation: workFloatThree 3.5s ease-in-out infinite;
}

@keyframes workFloatOne{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

@keyframes workFloatTwo{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(10px); }
}

@keyframes workFloatThree{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* responsive */

@media (min-width: 620px){
  .work-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .work-hero-section{
    padding: 68px 0 28px;
  }

  .work-hero-title{
    font-size: 54px;
  }

  .work-hero-text{
    font-size: 16px;
  }

  .work-gallery-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .work-instagram-cta{
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
    padding: 30px;
  }

  .work-instagram-title{
    font-size: 46px;
  }
}


/* =========================
   Instagram Dropdown FIXED
========================= */

.work-instagram-dropdown{
  margin-top: 10px;
  display: grid;
  gap: 8px;

  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);

  max-width: 320px;
  animation: fadeSlide .25s ease;
}

.work-instagram-option{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);

  transition: background .2s ease, transform .15s ease;
}

.work-instagram-option i{
  color: var(--gold-dark);
  font-size: 15px;
}

.work-instagram-option span{
  font-weight: 700;
  font-size: 14px;
}

.work-instagram-option small{
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.work-instagram-option:hover{
  background: rgba(201,162,58,.08);
  transform: translateY(-1px);
}


.work-instagram-dropdown-wrap{
  position: relative;
}

.work-instagram-dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  z-index: 10;
}

.work-instagram-dropdown[hidden]{
  display: none !important;
}
/* =========================
   Contact Page
========================= */

.contact-page-hero{
  padding: 58px 0 28px;
}

.contact-page-hero-inner{
  max-width: 820px;
  display: grid;
  gap: 14px;
}

.contact-page-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.contact-page-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: .1px;
}

.contact-page-text{
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.contact-page-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* methods */

.contact-page-methods{
  padding: 0 0 28px;
}

.contact-methods-grid{
  display: grid;
  gap: 14px;
}

.contact-method-card{
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-method-card:hover{
  transform: translateY(-4px);
  border-color: rgba(201,162,58,.35);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.contact-method-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,58,.10);
  border: 1px solid rgba(201,162,58,.24);
}

.contact-method-icon i{
  font-size: 22px;
  color: var(--gold-dark);
}

.contact-method-card h3{
  margin: 0;
  font-size: 18px;
}

.contact-method-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-method-card span{
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gold-dark);
}

/* =========================
   ELITE IG POPUP
========================= */

.contact-ig-popup{
  position: fixed;
  inset: 0;
  z-index: 1000;
}

/* backdrop */
.contact-ig-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}

/* modal */
.contact-ig-modal{
  position: relative;
  max-width: 380px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%) scale(.96);

  background: #fff;
  border-radius: 20px;
  padding: 22px;

  box-shadow: 0 30px 80px rgba(0,0,0,.18);

  display: grid;
  gap: 18px;

  animation: modalIn .25s ease forwards;
}

@keyframes modalIn{
  to{
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

/* header */
.contact-ig-header{
  text-align: center;
  display: grid;
  gap: 6px;
}

.contact-ig-badge{
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201,162,58,.12);
  border: 1px solid rgba(201,162,58,.25);
}

.contact-ig-badge i{
  font-size: 22px;
  color: var(--gold-dark);
}

.contact-ig-header h3{
  margin: 0;
  font-size: 18px;
}

.contact-ig-header p{
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

/* options */
.contact-ig-options{
  display: grid;
  gap: 10px;
}

.ig-option{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);

  border: 1px solid var(--border);
  background: #fff;

  transition: all .2s ease;
}

.ig-option:hover{
  transform: translateY(-3px);
  border-color: rgba(201,162,58,.35);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

/* icon */
.ig-icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(201,162,58,.10);
}

.ig-icon i{
  color: var(--gold-dark);
}

/* info */
.ig-info span{
  font-weight: 700;
  font-size: 14px;
}

.ig-info small{
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* arrow */
.ig-arrow{
  margin-left: auto;
  font-size: 12px;
  opacity: .5;
  transition: transform .2s ease;
}

.ig-option:hover .ig-arrow{
  transform: translateX(4px);
}

/* close */
.contact-ig-close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

/* force hidden */
.contact-ig-popup[hidden]{
  display: none !important;
}

/* mobile */
@media(max-width:480px){
  .contact-ig-modal{
    width: calc(100% - 24px);
  }
}

.ig-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,162,58,.25);
}

.ig-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-followers{
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-style: normal;
  margin-top: 2px;
}

/* name row */
.ig-name{
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}

/* verified badge */
.ig-verified{
  font-size: 13px;
  color: #0095f6; /* IG blue */
}

/* growing badge */
.ig-growing{
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(0,196,106,.12);
  color: #00a86b;
  letter-spacing: .03em;
}

/* main */

.contact-page-main{
  padding: 0 0 70px;
}

.contact-page-main-grid{
  display: grid;
  gap: 18px;
}

.contact-page-form-panel,
.contact-page-info-panel{
  display: grid;
  gap: 16px;
}

.contact-page-form-panel{
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-panel-head{
  display: grid;
  gap: 10px;
}

.contact-panel-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.contact-panel-head h2{
  margin: 0;
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.08;
}

.contact-panel-head p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-page-form{
  display: grid;
  gap: 12px;
}

.contact-page-form label{
  display: grid;
  gap: 6px;
}

.contact-page-form span{
  font-size: 13px;
  font-weight: 700;
  color: rgba(17,17,17,.76);
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select{
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-page-form textarea{
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus{
  border-color: rgba(201,162,58,.6);
  box-shadow: 0 0 0 3px rgba(201,162,58,.12);
}

.contact-form-row{
  display: grid;
  gap: 12px;
}

.contact-form-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* info side */

.contact-info-box{
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-info-box h3{
  margin: 0 0 12px;
  font-size: 18px;
}

.contact-info-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-info-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-info-list i{
  color: var(--gold-dark);
  margin-top: 4px;
}

.contact-faq-mini{
  display: grid;
  gap: 14px;
}

.contact-faq-item h4{
  margin: 0 0 4px;
  font-size: 15px;
}

.contact-faq-item p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-hours-box p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-hours-box i{
  color: var(--gold-dark);
  margin-right: 8px;
}

/* location */

.contact-page-location{
  padding: 0 0 74px;
  background: #ffffffe0;
}

.contact-location-grid{
  display: grid;
  gap: 20px;
  align-items: center;
}

.contact-location-copy{
  display: grid;
  gap: 12px;
}

.contact-location-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.contact-location-copy h2{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.08;
}

.contact-location-copy p{
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 58ch;
}

.contact-location-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-location-map{
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #f6f6f6;
}

.contact-location-map iframe{
  width: 100%;
  height: 320px;
  border: 0;
}

/* final cta */

.contact-page-cta{
  padding: 40px 0 80px;
    background: #ffffffe0;
}

.contact-final-cta-box{
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(201,162,58,.05));
  box-shadow: var(--shadow-soft);
}

.contact-final-cta-copy{
  display: grid;
  gap: 10px;
}

.contact-final-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.contact-final-cta-copy h2{
  margin: 0;
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.08;
}

.contact-final-cta-copy p{
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.contact-final-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* responsive */

@media (min-width: 680px){
  .contact-methods-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-row{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .contact-page-hero{
    padding: 70px 0 30px;
  }

  .contact-page-title{
    font-size: 54px;
  }

  .contact-page-text{
    font-size: 16px;
  }

  .contact-methods-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-page-main-grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
  }

  .contact-panel-head h2{
    font-size: 42px;
  }

  .contact-location-grid{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .contact-location-copy h2{
    font-size: 46px;
  }

  .contact-location-map iframe{
    height: 420px;
  }

  .contact-final-cta-box{
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px;
  }

  .contact-final-cta-copy h2{
    font-size: 46px;
  }
}


/* =========================
   CLASSES PAGE
========================= */
/* =========================
   CLASSES GRID
========================= */

.classes-grid-section{
  padding:60px 0;
}

.classes-grid{
  display:grid;
  gap:20px;
}

.class-card{
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
}

.class-image{
  aspect-ratio:4/3;
  overflow:hidden;
}

.class-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.class-card:hover img{
  transform:scale(1.06);
}

.class-info{
  padding:18px;
  display:grid;
  gap:10px;
}

.class-info h3{
  margin:0;
  font-size:20px;
}

.class-info p{
  font-size:14px;
  color:var(--muted);
}

.class-meta{
  font-size:13px;
  font-weight:700;
  color:var(--gold-dark);
}

.class-actions{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   DESKTOP
========================= */

@media(min-width:920px){

.classes-hero-grid{
grid-template-columns:1.1fr .9fr;
align-items:center;
}

.classes-grid{
grid-template-columns:repeat(3,1fr);
}

}


/* =========================
   Custom Cakes Page
========================= */

.customcakes-hero-section{
  padding: 58px 0 34px;
  background: #ffffffb7;
}

.customcakes-hero-grid{
  display: grid;
  gap: 26px;
  align-items: center;
}

.customcakes-hero-copy{
  display: grid;
  gap: 14px;
}

.customcakes-hero-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.customcakes-hero-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: .1px;
  color: var(--text);
  max-width: 12ch;
}

.customcakes-hero-text{
  margin: 0;
  max-width: 58ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.customcakes-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.customcakes-hero-media{
  display: block;
}

.customcakes-hero-image-wrap{
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
}

.customcakes-hero-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* gallery */

.customcakes-gallery-section{
  padding: 24px 0 74px;
  background: #ffffff8e;
}

.customcakes-gallery-head{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

.customcakes-gallery-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--gold-dark);
}

.customcakes-gallery-title{
  margin: 0;
  font-family: var(--font-head);
  font-size: 34px;
  line-height: 1.1;
}

.customcakes-gallery-text{
  margin: 0 auto;
  max-width: 66ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.customcakes-gallery-grid{
  display: grid;
  gap: 14px;
}

.customcakes-gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #f6f6f6;
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.customcakes-gallery-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease;
}

.customcakes-gallery-item:hover .customcakes-gallery-image{
  transform: scale(1.05);
}

.customcakes-gallery-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.10) 58%, transparent);
  opacity: 0;
  transition: opacity .25s ease;
}

.customcakes-gallery-item:hover .customcakes-gallery-overlay{
  opacity: 1;
}

.customcakes-gallery-meta{
  display: grid;
  gap: 4px;
  color: #fff;
}

.customcakes-gallery-type{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
}

.customcakes-gallery-name{
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.customcakes-gallery-note{
  font-size: 13px;
  line-height: 1.5;
  opacity: .9;
}

.customcakes-gallery-empty{
  margin-top: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: rgba(201,162,58,.04);
  color: var(--muted);
}

.customcakes-gallery-empty i{
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  color: var(--gold-dark);
}

/* responsive */

@media (min-width: 640px){
  .customcakes-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px){
  .customcakes-hero-section{
    padding: 70px 0 36px;
  }

  .customcakes-hero-grid{
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
  }

  .customcakes-hero-title{
    font-size: 56px;
  }

  .customcakes-hero-text{
    font-size: 16px;
  }

  .customcakes-gallery-title{
    font-size: 46px;
  }

  .customcakes-gallery-text{
    font-size: 16px;
  }

  .customcakes-gallery-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .customcakes-gallery-item{
    min-height: 360px;
  }
}

.customcakes-gallery-actions{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.customcakes-view-more i,
.customcakes-view-less i{
  transition: transform .25s ease;
}

.customcakes-view-more:hover i{
  transform: translateY(2px);
}

.customcakes-view-less:hover i{
  transform: translateY(-2px);
}

/* =========================
   Custom Cakes Order Section
========================= */

.customcakes-order-section{
  padding: 60px 0;
   background:
    linear-gradient(
  rgba(253, 237, 221, 0.356),
  rgba(250, 222, 169, 0.24)
),
    url("https://t3.ftcdn.net/jpg/09/28/42/90/360_F_928429097_bU7nVvqmJs7U6R6WuPxfQbhoAzZIteug.jpg");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
/*  background-attachment: fixed; */ 
}

.customcakes-order-box{
  text-align:center;
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.customcakes-order-kicker{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--gold-dark);
}

.customcakes-order-title{
  font-family:var(--font-head);
  font-size:43px;
  margin:0;
}

.customcakes-order-text{
  max-width:60ch;
  margin:0 auto;
  color:var(--muted);
}

.customcakes-order-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:6px;
}


/* dropdowns */

.customcakes-order-dropdown,
.customcakes-ig-dropdown{
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  background:#ffffffcc;
  box-shadow:var(--shadow-soft);
  animation:fadeSlide .3s ease;

  width:100%;
  max-width:520px;
  margin:16px auto 0;
}


/* animation stays same */
@keyframes fadeSlide{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}


/* form */

.customcakes-order-form{
  display:grid;
  gap:10px;
  
}

.customcakes-form-row{
  display:grid;
  gap:10px;
}

.customcakes-order-form input,
.customcakes-order-form textarea{
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  font-family:var(--font-body);
}


/* IG */

.customcakes-ig-grid{
  display:grid;
  gap:14px;
}

.customcakes-ig-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  display:block;
}

.customcakes-ig-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:.4s;
}

.customcakes-ig-card:hover img{
  transform:scale(1.05);
}

.customcakes-ig-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:12px;
  background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color:#fff;
  font-weight:700;
}

.customcakes-form-group{
  display:grid;
  gap:6px;
}

.customcakes-form-group label{
  font-size:12px;
  font-weight:600;
  color:var(--muted);
}

.customcakes-order-form select{
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  font-family:var(--font-body);
  background:#fff;
}

.customcakes-note{
  font-size:12px;
  color:var(--muted);
  line-height:1.4;
}


/* desktop */

@media(min-width:720px){
  .customcakes-form-row{
    grid-template-columns:1fr 1fr;
  }

  .customcakes-ig-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width: 480px){

  .customcakes-order-dropdown,
  .customcakes-ig-dropdown{
    padding:14px;
    border-radius:14px;
    margin-top:12px;
  }

  .customcakes-order-form input,
  .customcakes-order-form textarea{
    padding:10px;
    font-size:14px;
  }

  .customcakes-ig-card img{
    height:160px;
  }

}






















/* =========================
   Footer Newsletter (Non-breaking)
========================= */

.footer-newsletter{
  margin-top: 3rem;
  margin-bottom: -60px; /* pulls it into footer */
  position: relative;
  z-index: 2;
}

.footer-newsletter-box{
  border: 1px dashed var(--gold-dark);
  border-radius: 25px;
  padding: 52px 25px;
   background:
    linear-gradient(
  rgba(253, 237, 221, 0.363),
  rgba(250, 222, 169, 0.11)
),
    url("https://st2.depositphotos.com/1010735/10659/v/950/depositphotos_106592054-stock-illustration-white-background-with-golden-confetti.jpg");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


/* left */

.footer-newsletter-left h2{
  margin: 0;
  font-family: var(--font-head);
  font-size: 32px;
}

.footer-newsletter-left p{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}


/* form */

.footer-newsletter-form{
  display: block;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 50%;
}

.footer-newsletter-input{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px dotted var(--gold-dark);
  border-radius: 10px;
  padding: 10px 20px;
  background: #fff;
  margin-bottom: 0.5rem;
}

.footer-newsletter-input i{
  color: var(--muted);
}

.footer-newsletter-input input{
  border: none;
  outline: none;
  font-family: var(--font-body);
  min-width: 200px;
}

.footer-newsletter-form .btn{
  white-space: nowrap;
}


/* 🔧 IMPORTANT: push footer down so overlap looks intentional */
.footer{
  padding-top: 80px;
}


/* =========================
   Responsive Fix (YOU NEEDED THIS)
========================= */

@media(max-width: 720px){

  .footer-newsletter{
    margin-bottom: -40px;
  }

  .footer-newsletter-box{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px;
  }

  .footer-newsletter-form{
    flex-direction: column;
    width: 100%;
  }

  .footer-newsletter-input{
    width: 100%;
  }

  .footer-newsletter-input input{
    width: 100%;
  }

  .footer-newsletter-form .btn{
    width: 100%;
  }

}
/* =========================
   Footer
========================= */
.footer{
  border-top: 1px dashed var(--gold-dark);
  background: transparent;
}

.footer-grid{
  padding: 48px 0;
  display: grid;
  gap: 22px;
}

.footer-brand .footer-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
}

.footer-logo img{
  width: 250px;
  object-fit: cover;
}

.footer-logo span{
  font-family: var(--font-head);
  font-size: 18px;
}

.footer-text{
  margin: 10px 0 12px;
  color: var(--muted);
  max-width: 40ch;
  font-size: 14.5px;
}

.footer-social{
  display: flex;
  gap: 10px;
}

.social-link{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: var(--gold-dark);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.social-link:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,58,.55);
  background: #b68b25e0;
}

.footer-links h3,
.footer-contact h3{
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-head);
}

.footer-links a{
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 7px 0;
  font-weight: 500;
  transition: color .15s ease;
  position: relative;
}

.footer-links a::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 50%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible{
  color: var(--gold-dark);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after{
  transform: scaleX(1);
}

.footer-contact p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.footer-contact i{
  color: rgba(0, 0, 0, 0.733);
  margin-right: 8px;
}

.footer-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-cta .btn{
  padding: 10px 12px;
  font-size: 15px;
}
.footer-cta .btn-gold i{
  color: #fff;  
}

/* Bottom bar */
.footer-bottom{
    border-top: 1px dashed var(--gold-dark);
  background: #fff;
}

.footer-bottom-inner{
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(17,17,17,.65);
  font-size: 13px;
}

.footer-note{
  margin: 0;
  color: rgba(17,17,17,.55);
}

/* Desktop */
@media (min-width: 920px){
  .footer-grid{
    grid-template-columns: 1.2fr .7fr 1fr;
    align-items: start;
    gap: 28px;
  }

  .footer-bottom-inner{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

