/* ========== CSS RESET & BASE STYLES ========== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', 'Georgia', serif;
  background: #FBFBFC;
  color: #222834;
  line-height: 1.7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #BB4000;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E5602A;
  text-decoration: underline;
}
strong, b {
  font-weight: bold;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #333D4B;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
  line-height: 1.25;
}
h1 { font-size: 2.5rem; margin-bottom: 0.75em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p + p {
  margin-top: 0.7em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(51, 61, 75, 0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  position: relative; /* Only for focus/decoration */
  overflow: hidden;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 28px rgba(51,61,75,0.15);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FBFBFC;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(51,61,75,0.10);
  padding: 20px;
  margin-bottom: 20px;
  color: #222834;
  max-width: 560px;
}
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card cite {
  display: block;
  color: #BB4000;
  font-style: normal;
  margin-top: 0.7em;
  font-size: 0.97rem;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #FFF;
  border-bottom: 1px solid #E6E8EB;
  position: relative;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 32px;
}
.main-nav > a img {
  height: 38px;
  display: block;
  margin-right: 30px;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', serif;
  color: #333D4B;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #F5F7F9;
  color: #BB4000;
}

.cta-button {
  background: #BB4000;
  color: #FFF;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px rgba(229, 96, 42, 0.10);
  transition: background 0.16s, box-shadow 0.18s, color 0.18s;
  display: inline-block;
  letter-spacing: 0.03em;
  margin-left: 24px;
}
.cta-button:hover,
.cta-button:focus {
  background: #E5602A;
  color: #FFF;
  box-shadow: 0 6px 28px rgba(229, 96, 42, 0.12);
  text-decoration: none;
}

/* Burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #222834;
  cursor: pointer;
  z-index: 120;
  margin-left: 18px;
  transition: color 0.18s;
  padding: 2px 12px;
  border-radius: 6px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #BB4000;
  background: #ECE8E5;
}

/* ========== MOBILE MENU STYLES ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  height: 100vh;
  background: #FBFBFC;
  box-shadow: -2px 0 18px rgba(51,61,75,0.22);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.55,.06,.68,.19);
  z-index: 2222;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 24px 32px;
  gap: 12px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333D4B;
  cursor: pointer;
  margin-bottom: 14px;
  transition: color 0.16s;
  border-radius: 6px;
  padding: 6px 10px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #BB4000;
  background: #ECE8E5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.15rem;
  color: #222834;
  font-weight: 600;
  padding: 10px 6px 10px 0;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E6E8EB;
  color: #BB4000;
}

@media (max-width: 1020px) {
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 8px;
  }
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 800px) {
  .main-nav ul,
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  background: #FAFAFC;
  border-bottom: 1px solid #EBEDEF;
  padding: 52px 0 38px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 26px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #222834;
  margin-bottom: 14px;
  font-family: 'Montserrat', Georgia, serif;
}
.hero p {
  font-size: 1.15rem;
  color: #474d56;
  margin-bottom: 0.8em;
}

/* ========== FEATURES ========== */
.features {
  padding: 40px 0;
  background: #FFF;
  border-bottom: 1px solid #F0F1F3;
}
.features .content-wrapper, .services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
}
.features ul, .services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features li, .services li {
  background: #FBFBFC;
  border-radius: 10px;
  min-width: 240px;
  padding: 20px 18px 18px 23px;
  box-shadow: 0 1.5px 10px rgba(51,61,75,0.06);
  font-size: 1.04rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.features li img, .services li img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.features li strong, .services li strong {
  color: #222834;
  font-size: 1.01em;
}

/* ========== SERVICES/LEGAL/CATEGORY ========== */
.services .content-wrapper {
  gap: 20px 30px;
  flex-wrap: wrap;
}
.services li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.legal .content-wrapper {
  gap: 20px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(51,61,75,0.06);
  padding: 36px 32px;
}

.product-categories .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.category-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F5F7F9;
  border-radius: 12px;
  padding: 26px 20px;
  gap: 14px;
  min-width: 210px;
  flex: 1 1 220px;
  max-width: 265px;
  box-shadow: 0 1.5px 8px rgba(51,61,75,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.category-tile img {
  width: 38px;
  height: 38px;
}
.category-tile h3 {
  margin-bottom: 0.5em;
}
.category-tile:hover,
.category-tile:focus {
  box-shadow: 0 5px 30px rgba(229,96,42,0.09);
}

/* ========== PRODUCT LIST & CARDS ========== */
.products-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.product-card {
  background: #FFF;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px rgba(51,61,75,0.10);
  min-width: 250px;
  max-width: 320px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #E5602A;
  transition: box-shadow 0.14s, border-color 0.2s;
}
.product-card:hover {
  box-shadow: 0 7px 34px rgba(229,96,42,0.12);
  border-left: 4px solid #BB4000;
}
.product-card h3 {
  font-size: 1.23rem;
  margin-bottom: 0.25em;
}
.product-card .tag {
  display: inline-block;
  color: #FFF;
  background: #BB4000;
  font-size: 0.93em;
  font-family: 'Montserrat', serif;
  border-radius: 8px;
  padding: 2px 13px 3px 9px;
  margin-right: 8px;
  margin-bottom: 4px;
  vertical-align: top;
  letter-spacing: 0.04em;
}
.add-to-reservation {
  display: inline-block;
  margin-top: .7em;
  background: #E5602A;
  color: #FFF;
  font-family: 'Montserrat', serif;
  padding: 9px 18px 9px 15px;
  border-radius: 8px;
  font-size: 1.02rem;
  font-weight: 600;
  transition: background 0.18s;
  box-shadow: 0 0.5px 7px rgba(229,96,42,0.11);
  text-align: center;
}
.add-to-reservation:hover,
.add-to-reservation:focus {
  background: #BB4000;
}

/* ========== SALE, DISCOUNT, FILTER ========== */
.sale-highlight {
  background: #E5602A;
  color: #FFF;
  display: inline-block;
  padding: 9px 20px;
  border-radius: 22px;
  font-weight: bold;
  font-size: 1.23em;
  margin-top: 18px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(229,96,42,0.13);
}
.discount-badge {
  display: inline-block;
  background: #BB4000;
  color: #FFF;
  font-size: 0.98em;
  padding: 1px 10px 1.5px 9px;
  border-radius: 5px;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.filter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: 'Montserrat', serif;
}
.filter-controls select {
  font-family: 'Montserrat', serif;
  border: 1px solid #D2D6DB;
  padding: 6px 12px;
  border-radius: 6px;
  background: #FFF;
  font-size: 1em;
}

/* ========== CALLOUT SECTIONS ========== */
.callout {
  background: #FAF5EF;
  border-radius: 20px;
  margin-top: 42px;
  margin-bottom: 52px;
  box-shadow: 0 2px 24px rgba(229,96,42,0.06);
  padding: 40px 0;
}
.callout .content-wrapper {
  gap: 15px;
  align-items: flex-start;
}
.callout h2 {
  color: #222834;
  font-size: 2.1rem;
}
.callout p {
  color: #474d56;
  font-size: 1.09rem;
}

/* ========== FOOTER ========== */
footer {
  background: #333D4B;
  color: #FAFAFC;
  font-family: 'Montserrat', serif;
  font-size: 1.04rem;
  padding-top: 45px;
  margin-top: 32px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}
.footer-top > a img {
  height: 48px;
  margin-bottom: 10px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-top nav a {
  color: #C2B9B1;
  font-size: 0.97em;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.footer-top nav a:hover,
.footer-top nav a:focus {
  color: #E5602A;
}
.footer-bottom {
  text-align: center;
  padding-bottom: 28px;
  color: #A6A3A0;
  font-size: 0.99em;
  border-top: 1px solid #454b55;
  padding-top: 17px;
}

/* ========== CONTACT PAGE ========== */
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(51,61,75,0.08);
  padding: 36px 34px;
}
.contact .text-section {
  flex: 1 1 330px;
  min-width: 260px;
}
.contact .map {
  flex: 1 1 280px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact .map img {
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(51,61,75,0.12);
}

/* ========== THANK YOU PAGE ========== */
.thank-you .content-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 2px 24px rgba(51,61,75,0.10);
  gap: 16px;
  align-items: center;
  text-align: center;
}
.thank-you h1 {
  color: #222834;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.46rem; }
  .main-nav {
    padding: 14px 0;
    gap: 0;
  }
  .section {
    margin-bottom: 34px;
    padding: 18px 7px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper, .card-container {
    gap: 16px;
  }
  .content-grid, .product-categories .content-wrapper, .products-list .content-wrapper {
    gap: 14px;
  }
  .category-tile,
  .product-card {
    min-width: 95vw;
    max-width: 100vw;
    padding: 16px 10px;
  }
  .callout {
    margin-top: 24px;
    margin-bottom: 27px;
    padding: 18px 0;
  }
  .testimonial-card {
    padding: 13px 7px;
    font-size: 0.99em;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom {
    font-size: 0.92em;
  }
  .contact .content-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px 8px;
  }
  .contact .map img {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========== MICRO-INTERACTIONS & ANIMATIONS ========== */
.cta-button,
.add-to-reservation,
.card,
.category-tile,
.product-card {
  transition: box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.16s;
}

input:focus,
select:focus,
button:focus {
  outline: 2px solid #BB4000;
  outline-offset: 2px;
}

/* Slight card hover animation */
.card:active, .product-card:active, .category-tile:active {
  transform: translateY(2px) scale(0.99);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FBFBFC;
  color: #222834;
  box-shadow: 0 -2px 18px rgba(51,61,75,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 32px;
  z-index: 4400;
  font-size: 1rem;
  border-top: 1px solid #E6E8EB;
  animation: cookie-slide-in 0.5s cubic-bezier(.55,.13,.51,1.01);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 340px;
  font-size: 1.05em;
}
.cookie-banner__actions {
  display: flex;
  gap: 11px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: 10px 19px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.cookie-btn--accept {
  background: #BB4000;
  color: #FFF;
}
.cookie-btn--accept:hover { background: #E5602A; }
.cookie-btn--reject {
  background: #E6E8EB;
  color: #222834;
}
.cookie-btn--reject:hover { background: #D2D6DB; }
.cookie-btn--settings {
  background: #FFF;
  color: #333D4B;
}
.cookie-btn--settings:hover { background: #F5F7F9; color: #BB4000; }

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 13px;
    font-size: 0.98em;
  }
  .cookie-banner__actions { gap: 6px; }
}

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(34, 40, 52, 0.27);
  z-index: 4610;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.18s cubic-bezier(.55,.13,.51,1.01);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #FBFBFC;
  border-radius: 16px;
  padding: 36px 32px 28px 32px;
  min-width: 315px;
  max-width: 98vw;
  box-shadow: 0 8px 50px rgba(51,61,75,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-size: 1.03em;
  color: #222834;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__header h2 {
  font-size: 1.28em;
  margin-bottom: 2px;
  color: #333D4B;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #BBB2B2;
  cursor: pointer;
  border-radius: 7px;
  transition: color 0.13s;
  padding: 6px 12px;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus { color: #BB4000; background: #F2EFEA; }

.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #FFF;
  padding: 13px 16px;
  border-radius: 7px;
  box-shadow: 0 1.5px 8px rgba(51,61,75,0.06);
}
.cookie-category__label {
  font-weight: 600;
  font-family: 'Montserrat', serif;
  font-size: 1.05em;
  color: #222834;
  margin-bottom: 5px;
}
.cookie-category__description {
  color: #474d56;
  font-size: 0.98em;
}
.cookie-toggle {
  margin-left: auto;
  min-width: 45px;
  height: 25px;
  border-radius: 14px;
  background: #E6E8EB;
  border: 1.5px solid #D2D6DB;
  position: relative;
  transition: background 0.13s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-toggle input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__slider {
  position: absolute;
  left: 2.5px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #BBB2B2;
  transition: left 0.17s, background 0.19s;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  left: 22.5px;
  background: #BB4000;
}
.cookie-category--essential .cookie-toggle {
  background: #D2D6DB;
  border-color: #C2B9B1;
  pointer-events: none;
}
.cookie-category--essential .cookie-toggle__slider {
  background: #888;
  left: 22.5px;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 9px;
}
.cookie-modal .cookie-btn {
  min-width: 102px;
}

@media (max-width: 580px) {
  .cookie-modal__dialog {
    padding: 16px 7px 16px 7px;
  }
}

/* ========== UTILITIES & OVERRIDES ========== */
.text-section {
  margin-bottom: 24px;
}
.map {
  min-width: unset;
}
blockquote {
  quotes: '\201E''\201C''\201A''\2018';
}
blockquote:before {
  content: open-quote;
  color: #BB4000;
  font-size: 2.5em;
  vertical-align: -0.4em;
  margin-right: 9px;
}
blockquote:after {
  content: close-quote;
  color: #BB4000;
  font-size: 1.5em;
  vertical-align: -0.4em;
  margin-left: 6px;
}

::-webkit-scrollbar {
  width: 12px;
  background: #F5F7F9;
}
::-webkit-scrollbar-thumb {
  background: #EAEAEA;
  border-radius: 10px;
}

/* ========== END OF CSS ========== */
