@charset "UTF-8";
/* ==========================================================================
   Westi — Handmade Cakes & Desserts, London
   Design system replicated from westi.co.uk (Porus theme)
   Palette: #764c24 brown · #e0a45e gold · #4a221a heading · #f6f2e9 cream
   Type:    Lora (body/UI) · Berkshire Swash (display)
   ========================================================================== */

/* --------------------------------------------------------------
   # Variables
   -------------------------------------------------------------- */
:root {
  --brown:        #764c24;
  --brown-dark:   #59391b;
  --brown-darker: #4f3318;
  --brown-mid:    #9d6530;
  --heading:      #4a221a;
  --gold:         #e0a45e;
  --text:         #636363;
  --muted:        #a1a1a1;
  --muted-2:      #b6b6b6;
  --cream:        #f6f2e9;
  --cream-light:  #f7e8da;
  --grey-50:      #fafafa;
  --grey-100:     #f6f6f6;
  --border:       #ebebeb;
  --border-2:     #e1e1e1;
  --sale:         #f03b42;
  --white:        #fff;
  --black:        #222;

  --font-body:    "Lora", Georgia, "Times New Roman", serif;
  --font-display: "Berkshire Swash", "Lora", Georgia, serif;

  --container:    1170px;
  --header-h:     100px;
  --radius:       3px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --------------------------------------------------------------
   # Reset & base
   -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  text-align: left;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  clear: both;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p  { margin: 0 0 1.5rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--brown);
  text-decoration: none;
  transition: color .3s var(--ease);
}
a:hover, a:focus-visible { color: var(--gold); }

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }

ul, ol { margin: 0 0 1.5rem; padding-left: 1.25rem; }
li > ul, li > ol { margin-bottom: 0; }

hr { height: 0; margin: 1.5rem 0; border: 0; border-top: 1px solid var(--border); }

::selection { background-color: var(--brown); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.icon {
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: middle;
  pointer-events: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------
   # Layout helpers
   -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.container-wide { max-width: 1400px; }

.row  { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col  { flex: 1 0 0%; padding: 0 15px; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-6  { flex: 0 0 50%;  max-width: 50%;  padding: 0 15px; }
.col-4  { flex: 0 0 33.3333%; max-width: 33.3333%; padding: 0 15px; }
.col-3  { flex: 0 0 25%;  max-width: 25%;  padding: 0 15px; }
.col-8  { flex: 0 0 66.6667%; max-width: 66.6667%; padding: 0 15px; }

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

.section       { padding: 100px 0; }
.section-sm    { padding: 60px 0; }
.section-cream { background-color: var(--cream); }

.font-primary { font-family: var(--font-display); font-weight: 400; }

/* --------------------------------------------------------------
   # Buttons
   -------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 17px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: var(--brown);
  border: 2px solid var(--brown);
  border-radius: 30px;
  cursor: pointer;
  transition: color .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover, .btn:focus-visible {
  color: #fff;
  background-color: var(--brown-dark);
  border-color: var(--brown-darker);
}

.btn-outline {
  color: var(--brown);
  background-color: transparent;
  border-color: var(--brown);
}
.btn-outline:hover, .btn-outline:focus-visible {
  color: #fff;
  background-color: var(--brown);
  border-color: var(--brown);
}

.btn-gold {
  color: #fff;
  background-color: transparent;
  border-color: var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  color: var(--gold);
  background-color: #fff;
  border-color: #fff;
}

.btn-sm  { padding: 12px 28px; font-size: 11px; }
.btn-block { display: block; width: 100%; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  font-family: var(--font-body);
  cursor: pointer;
}

/* --------------------------------------------------------------
   # Forms
   -------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="search"], input[type="date"], input[type="time"], input[type="password"],
select, textarea {
  width: 100%;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23764c24' d='M6 8 0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
textarea { min-height: 150px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
}
::placeholder { color: var(--muted-2); opacity: 1; }

label {
  display: block;
  margin-bottom: .5rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--heading);
}
.form-group { margin-bottom: 22px; }
.form-note  { font-size: 14px; color: var(--muted); }
.required   { color: var(--sale); }

/* --------------------------------------------------------------
   # Header
   -------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header.is-float {
  position: absolute;
  top: 0; left: 0; right: 0;
  background-color: transparent;
  border-bottom-color: rgba(255, 255, 255, .2);
}
.site-header.is-float .menu-horizontal > li > a,
.site-header.is-float .header-action a { color: #fff; }
/* The navy logo is unreadable against the dark hero, so it reverses out
   while the header floats and returns to full colour once it sticks. */
.site-header.is-float .site-logo { filter: brightness(0) invert(1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding { flex: 0 0 auto; text-align: center; }
.site-logo { display: block; max-height: 62px; width: auto; }

/* Sticky */
.site-header.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  background-color: #fff;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
  animation: headerDown .4s var(--ease);
}
.site-header.is-sticky .menu-horizontal > li > a { padding: 24px 0; color: #000; }
.site-header.is-sticky .header-action a { color: var(--heading); }
.site-header.is-sticky .site-logo { max-height: 48px; }
@keyframes headerDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Primary menu */
.primary-menu { flex: 1 1 0; }
.primary-menu.menu-left  { display: flex; justify-content: flex-start; }
.primary-menu.menu-right { display: flex; justify-content: flex-end; align-items: center; }

.menu-horizontal {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-horizontal > li { position: relative; }
.menu-horizontal > li > a {
  display: block;
  padding: 37px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #000;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.menu-horizontal > li > a:hover,
.menu-horizontal > li.current-menu-item > a { color: var(--gold); }

.menu-horizontal .caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 7px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

/* Sub menu */
.sub-menu {
  position: absolute;
  top: 100%; left: 0;
  z-index: 1099;
  min-width: 220px;
  margin: 0;
  padding: .5rem 0;
  list-style: none;
  background-color: var(--cream-light);
  border-radius: var(--radius);
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  font-family: var(--font-body);
  color: var(--heading);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.menu-horizontal > li:hover > .sub-menu,
.menu-horizontal > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-right .sub-menu { left: auto; right: 0; }
.sub-menu a {
  display: block;
  padding: .625rem 1.25rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading);
}
.sub-menu a:hover { color: var(--brown); background-color: rgba(255, 255, 255, .5); }

/* Header actions (search / cart) */
.header-action {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 30px;
}
.header-action a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--heading);
}
.header-action a:hover { color: var(--gold); }
.header-action-mobile { display: none; }
.cart-count {
  position: absolute;
  top: -9px; right: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: var(--brown);
  border-radius: 9px;
}

/* Burger */
.menu-toggle {
  display: none;
  padding: 10px;
  background: none;
  border: 0;
  color: var(--heading);
  font-size: 22px;
  line-height: 1;
}
.site-header.is-float .menu-toggle { color: #fff; }
.site-header.is-sticky .menu-toggle { color: var(--heading); }

/* --------------------------------------------------------------
   # Off-canvas mobile menu
   -------------------------------------------------------------- */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 1998;
  background-color: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.offcanvas-overlay.is-open { opacity: 1; visibility: visible; }

.offcanvas {
  position: fixed;
  top: 0; left: 0;
  z-index: 1999;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  padding: 30px 26px;
  overflow-y: auto;
  background-color: var(--heading);
  color: #fff;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
}
.offcanvas.is-open { transform: translateX(0); }
.offcanvas-close {
  position: absolute;
  top: 18px; right: 20px;
  padding: 6px;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
}
.offcanvas .offcanvas-logo { margin-bottom: 28px; }
.offcanvas .offcanvas-logo img {
  max-height: 54px;
  filter: brightness(0) invert(1);
}
.offcanvas-menu { margin: 0 0 28px; padding: 0; list-style: none; }
.offcanvas-menu li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.offcanvas-menu a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
}
.offcanvas-menu a:hover { color: var(--gold); }
.offcanvas-menu .sub-menu {
  position: static;
  min-width: 0;
  margin: 0 0 8px 14px;
  padding: 0;
  background: none;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.offcanvas-menu .sub-menu li { border: 0; }
.offcanvas-menu .sub-menu a {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  color: rgba(255, 255, 255, .75);
}
.offcanvas-contact {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .75);
}
.offcanvas-contact a { color: rgba(255, 255, 255, .75); }
.offcanvas-contact a:hover { color: var(--gold); }

/* --------------------------------------------------------------
   # Search popup
   -------------------------------------------------------------- */
.search-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18vh 20px 20px;
  background-color: rgba(74, 34, 26, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.search-popup.is-open { opacity: 1; visibility: visible; }
.search-popup-inner { width: 100%; max-width: 640px; text-align: center; }
.search-popup h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: #fff;
}
.search-popup form { display: flex; gap: 10px; }
.search-popup input[type="search"] {
  flex: 1 1 auto;
  padding: 16px 22px;
  font-size: 17px;
  border: 0;
  border-radius: 30px;
}
.search-popup .search-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
}
.search-results {
  margin-top: 26px;
  text-align: left;
  max-height: 46vh;
  overflow-y: auto;
}
.search-results a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  color: #fff;
  background-color: rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.search-results a:hover { background-color: rgba(255, 255, 255, .16); color: var(--gold); }
.search-results img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--radius); }
.search-results .sr-title { font-size: 16px; font-weight: 700; }
.search-results .sr-price { font-size: 14px; color: var(--gold); }
.search-empty { color: rgba(255, 255, 255, .7); font-size: 16px; padding: 10px 14px; }

/* --------------------------------------------------------------
   # Hero slider
   -------------------------------------------------------------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--heading);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s linear;
}
.hero-slide.is-active .hero-slide-bg { transform: scale(1.09); }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 14, 8, .3) 0%, rgba(30, 14, 8, .48) 55%, rgba(30, 14, 8, .58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--header-h) 20px 40px;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}
.hero-text {
  max-width: 430px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, .92);
}
.hero-slide.is-active .hero-eyebrow { animation: heroUp .8s .2s both var(--ease); }
.hero-slide.is-active .hero-title   { animation: heroUp .8s .35s both var(--ease); }
.hero-slide.is-active .hero-text    { animation: heroUp .8s .5s both var(--ease); }
.hero-slide.is-active .hero-cta     { animation: heroUp .8s .65s both var(--ease); }
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  margin-top: -27px;
  font-size: 18px;
  color: #fff;
  background-color: rgba(255, 255, 255, .14);
  border: 0;
  border-radius: 50%;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.hero-arrow:hover { background-color: var(--gold); color: #fff; }
.hero-prev { left: 30px; }
.hero-next { right: 30px; }

.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 34px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-dots button {
  width: 12px; height: 12px;
  padding: 0;
  background-color: rgba(255, 255, 255, .45);
  border: 0;
  border-radius: 50%;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.hero-dots button.is-active { background-color: var(--gold); transform: scale(1.25); }

/* --------------------------------------------------------------
   # Page title bar
   -------------------------------------------------------------- */
.page-title {
  padding: 290px 0 65px;
  text-align: center;
  background-color: var(--cream);
  background-image: url("../img/bg/bg-page-title-min.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--heading);
}
.breadcrumbs a { color: var(--heading); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--muted-2); }
.page-main-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--heading);
}
.page-title-ornament { margin-top: 17px; }

/* --------------------------------------------------------------
   # Section heading
   -------------------------------------------------------------- */
.gel-heading { margin-bottom: 0; }
.gel-heading-subtitle {
  margin-bottom: .775rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.gel-heading-title {
  margin: 0 0 .7em;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--heading);
}
.gel-heading-separate {
  width: 42px;
  height: 4px;
  margin-bottom: .7em;
  background-color: var(--black);
}
.gel-heading.text-center .gel-heading-separate { margin-left: auto; margin-right: auto; }
.gel-heading-description { font-size: 1rem; }
.gel-heading.has-ornament .gel-heading-separate { display: none; }
.heading-ornament { display: block; margin: 0 auto 1.5rem; }

/* --------------------------------------------------------------
   # Menu of the day (tabs)
   -------------------------------------------------------------- */
.menu-day {
  padding: 95px 0 100px;
  background-color: var(--cream);
  background-image: url("../img/bg/bg-product-01-2.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.tabs-nav button {
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading);
  background-color: transparent;
  border: 2px solid var(--heading);
  border-radius: 30px;
  transition: color .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.tabs-nav button:hover { color: var(--brown); border-color: var(--brown); }
.tabs-nav button.is-active {
  color: #fff;
  background-color: var(--brown);
  border-color: var(--brown);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn .5s var(--ease) both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Image box (menu card) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 30px;
}
.image-box { text-align: center; }
.image-box .image { display: block; margin-bottom: 2rem; }
.image-box .image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #d7aa82;
  transition: box-shadow .3s var(--ease), transform .4s var(--ease);
}
.image-box:hover .image img {
  box-shadow: 0 0 0 2px #d7aa82;
  transform: scale(1.03);
}
.image-box .title {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
}
.image-box .title a { color: var(--heading); }
.image-box .title a:hover { color: var(--brown); }
.image-box .description {
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}
.image-box .price-tag {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}

/* --------------------------------------------------------------
   # Shop / product grid
   -------------------------------------------------------------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.shop-result-count { margin: 0; font-size: 16px; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.shop-filters button {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--heading);
  background-color: transparent;
  border: 1px solid var(--border-2);
  border-radius: 30px;
  transition: all .3s var(--ease);
}
.shop-filters button:hover { border-color: var(--brown); color: var(--brown); }
.shop-filters button.is-active {
  color: #fff;
  background-color: var(--brown);
  border-color: var(--brown);
}
.shop-sort { min-width: 220px; }
.shop-sort select { padding: 9px 42px 9px 18px; font-size: 14px; border-radius: 30px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
.product-card { position: relative; text-align: center; }
.product-card.is-hidden { display: none; }

.product-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 22px;
  background-color: var(--grey-100);
  border-radius: var(--radius);
}
.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-thumb img { transform: scale(1.07); }

.product-flash {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--gold);
  border-radius: 30px;
}
.product-flash.out-of-stock { background-color: var(--muted); }

.product-actions {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-actions button, .product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: 15px;
  color: var(--heading);
  background-color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.product-actions button:hover, .product-actions a:hover {
  color: #fff;
  background-color: var(--brown);
}
.product-actions button:disabled { opacity: .45; cursor: not-allowed; }
.product-actions button:disabled:hover { color: var(--heading); background-color: #fff; }

.product-cat {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}
.product-title {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}
.product-title a { color: var(--heading); }
.product-title a:hover { color: var(--gold); }

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}
.price del { margin-right: 8px; font-weight: 400; color: var(--text); }
.price ins { text-decoration: none; }
.price .stock-out { font-size: 15px; font-weight: 400; color: var(--muted); }

/* --------------------------------------------------------------
   # Single product
   -------------------------------------------------------------- */
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-gallery-main {
  overflow: hidden;
  background-color: var(--grey-100);
  border-radius: var(--radius);
}
.product-gallery-main img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.product-gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
}
.product-gallery-thumbs button.is-active { border-color: var(--brown); }
.product-gallery-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

.product-summary .product-cat { text-align: left; }
.product-summary h1 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
}
.product-summary .price { display: block; margin-bottom: 20px; font-size: 26px; }
.product-short-desc { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.product-short-desc h4 {
  margin-bottom: .5rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading);
}
.product-short-desc p { font-size: 16px; }

.cart-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-2);
  border-radius: 30px;
  overflow: hidden;
}
.quantity button {
  width: 44px; height: 52px;
  font-size: 17px;
  color: var(--heading);
  background: none;
  border: 0;
}
.quantity button:hover { color: var(--brown); }
.quantity input {
  width: 52px;
  height: 52px;
  padding: 0;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--border-2);
  border-right: 1px solid var(--border-2);
  border-radius: 0;
  -moz-appearance: textfield;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-meta { font-size: 15px; line-height: 2; color: var(--text); }
.product-meta span { font-weight: 700; color: var(--heading); }

.product-tabs { margin-top: 70px; }
.product-tabs .tabs-nav { justify-content: flex-start; }
.product-tabs .tab-panel { padding-top: 30px; font-size: 16px; }
.ingredient-list { columns: 2; column-gap: 40px; margin: 0; padding-left: 1.1rem; }
.ingredient-list li { margin-bottom: 6px; break-inside: avoid; }

/* --------------------------------------------------------------
   # Cart
   -------------------------------------------------------------- */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 34px; }
.cart-table th {
  padding: 14px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--heading);
  border-bottom: 2px solid var(--border);
}
.cart-table td { padding: 18px 12px; font-size: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--radius); }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product a { font-weight: 700; color: var(--heading); }
.cart-remove {
  width: 30px; height: 30px;
  font-size: 15px;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.cart-remove:hover { color: #fff; background-color: var(--sale); border-color: var(--sale); }
.cart-empty { padding: 60px 0; text-align: center; }
.cart-empty p { font-size: 20px; margin-bottom: 26px; }

.cart-totals {
  max-width: 420px;
  margin-left: auto;
  padding: 30px;
  background-color: var(--cream);
  border-radius: var(--radius);
}
.cart-totals h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; }
.cart-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(74, 34, 26, .1);
}
.cart-totals-row.total { font-size: 20px; font-weight: 700; color: var(--heading); border-bottom: 0; }

/* --------------------------------------------------------------
   # About page
   -------------------------------------------------------------- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro img { border-radius: var(--radius); }
.about-signature {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--heading);
}
.about-signature small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.feature {
  padding: 42px 30px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(74, 34, 26, .09); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px; height: 74px;
  margin-bottom: 22px;
  font-size: 28px;
  color: var(--brown);
  background-color: var(--cream-light);
  border-radius: 50%;
}
.feature-icon .icon { width: 32px; height: 32px; }
.feature h4 { margin-bottom: .75rem; font-size: 22px; }
.feature p { font-size: 16px; }

.timeline { max-width: 780px; margin: 0 auto; padding: 0; list-style: none; }
.timeline li {
  position: relative;
  padding: 0 0 38px 42px;
  border-left: 2px solid var(--cream-light);
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: "";
  position: absolute;
  top: 6px; left: -9px;
  width: 16px; height: 16px;
  background-color: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline .year {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline h4 { margin-bottom: .5rem; font-size: 22px; }
.timeline p { font-size: 16px; }

/* --------------------------------------------------------------
   # Services
   -------------------------------------------------------------- */
.service-list { display: grid; gap: 70px; }
.service-item { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.service-item:nth-child(even) .service-media { order: 2; }
.service-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.service-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 34px; }
.service-body ul { margin: 0 0 1.5rem; padding-left: 1.1rem; font-size: 16px; }
.service-body li { margin-bottom: 8px; }

/* --------------------------------------------------------------
   # Blog
   -------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px 30px; }
.post-card { background-color: #fff; }
.post-thumb {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.post-thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-card h3 { font-size: 24px; margin-bottom: .6rem; }
.post-card h3 a { color: var(--heading); }
.post-card h3 a:hover { color: var(--brown); }
.post-card p { font-size: 16px; margin-bottom: 1rem; }
.read-more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
}
.read-more:hover { color: var(--gold); }

/* --------------------------------------------------------------
   # Contact
   -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 60px; align-items: start; }
.contact-info-list { margin: 0; padding: 0; list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  font-size: 18px;
  color: var(--brown);
  background-color: var(--cream-light);
  border-radius: 50%;
}
.contact-info-list h4 {
  margin-bottom: .3rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading);
}
.contact-info-list p { margin: 0; font-size: 16px; line-height: 1.7; }
.contact-info-list a { color: var(--text); }
.contact-info-list a:hover { color: var(--brown); }

.contact-form-wrap {
  padding: 44px;
  background-color: var(--cream);
  border-radius: var(--radius);
}
.contact-form-wrap h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }

.map-embed {
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.35);
}

.form-alert {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: var(--radius);
}
.form-alert.is-visible { display: block; }
.form-alert.success { color: #2b6b32; background-color: #e6f4e7; border: 1px solid #bfe0c2; }

/* --------------------------------------------------------------
   # Footer
   -------------------------------------------------------------- */
.site-footer {
  color: rgba(255, 255, 255, .72);
  background-color: var(--heading);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px 30px;
  padding: 80px 0 70px;
}
.footer-widget h4 {
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-logo { display: block; margin-bottom: 22px; }
.footer-logo img { max-height: 58px; filter: brightness(0) invert(1); }
.footer-widget p { font-size: 16px; line-height: 1.8; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin-bottom: 11px; }
.footer-menu a { font-size: 16px; color: rgba(255, 255, 255, .72); }
.footer-menu a:hover { color: var(--gold); }

.footer-contact { margin: 0; padding: 0; list-style: none; font-size: 16px; line-height: 1.8; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact .icon { margin-top: 5px; color: var(--gold); }
.footer-contact a { color: rgba(255, 255, 255, .72); }
.footer-contact a:hover { color: var(--gold); }

.footer-hours { margin: 0; font-size: 16px; }
.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .13);
}
.footer-hours div:last-child { border-bottom: 0; }
.footer-hours span:last-child { color: var(--gold); white-space: nowrap; }

.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-size: 15px;
  color: #fff;
  background-color: rgba(255, 255, 255, .09);
  border-radius: 50%;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.footer-social a:hover { color: #fff; background-color: var(--brown); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bottom a { color: rgba(255, 255, 255, .72); }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------
   # Toast
   -------------------------------------------------------------- */
.toast {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  padding: 16px 22px;
  font-size: 16px;
  color: #fff;
  background-color: var(--heading);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.toast.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.toast .icon { color: var(--gold); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  color: #fff;
  background-color: var(--brown);
  border: 0;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s, background-color .3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--gold); }

/* --------------------------------------------------------------
   # 404
   -------------------------------------------------------------- */
.error-404 { padding: 120px 0; text-align: center; }
.error-404 .code {
  font-family: var(--font-display);
  font-size: 150px;
  line-height: 1;
  color: var(--gold);
}

/* --------------------------------------------------------------
   # Responsive
   -------------------------------------------------------------- */
@media (max-width: 1199px) {
  .menu-horizontal { gap: 22px; }
  .menu-horizontal > li > a { font-size: 13px; }
  .page-title { padding: 190px 0 55px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  body { font-size: 17px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }
  h4 { font-size: 21px; }

  .primary-menu { display: none !important; }
  .menu-toggle { display: inline-block; }
  .header-inner { justify-content: space-between; }
  .site-branding { flex: 1 1 auto; text-align: center; }
  .header-action { margin-left: 0; }
  .header-action-mobile { display: flex; }

  .section { padding: 70px 0; }
  .menu-day { padding: 70px 0; }
  .page-title { padding: 165px 0 50px; }
  .page-main-title, .hero-title { font-size: 40px; }
  .gel-heading-title { font-size: 34px; }

  .menu-grid, .products-grid, .blog-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-single, .about-intro, .contact-grid, .service-item { grid-template-columns: 1fr; gap: 36px; }
  .service-item:nth-child(even) .service-media { order: 0; }
  .cart-totals { max-width: none; margin-left: 0; }
  .hero { min-height: 540px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .contact-form-wrap { padding: 32px 26px; }
}

@media (max-width: 767px) {
  .hero { height: auto; min-height: 500px; max-height: none; }
  .hero-title { font-size: 34px; }
  .hero-text { font-size: 16px; }
  .hero-arrow { display: none; }
  .page-title { padding: 140px 0 44px; }
  .page-main-title { font-size: 34px; }
  .error-404 .code { font-size: 100px; }

  .menu-grid, .products-grid, .blog-grid, .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .ingredient-list { columns: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 55px 0 45px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .cart-table thead { display: none; }
  .cart-table tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .cart-table td { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border: 0; }
  .cart-table td::before {
    content: attr(data-label);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--heading);
  }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .product-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 575px) {
  .section { padding: 55px 0; }
  .tabs-nav button { padding: 10px 20px; font-size: 12px; }
  .btn { padding: 14px 28px; }
  .search-popup { padding: 12vh 16px 16px; }
  .search-popup h3 { font-size: 32px; }
  .search-popup form { flex-direction: column; }
  .toast { left: 16px; right: 16px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide.is-active .hero-slide-bg { transform: none; }
}

@media print {
  .site-header, .site-footer, .hero, .back-to-top, .search-popup, .offcanvas { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
