/* --- CSS RESET & NORMALIZE --- */
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,
main, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F5F3EE;
  color: #2A1C16;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- BRAND COLORS & FONTS --- */
:root {
  --primary: #734741;
  --primary-dark: #502e25;
  --secondary: #F5F3EE;
  --accent: #A85E00;
  --accent-vibrant: #ff9f1c;
  --vibrant-elec: #ff4d5f;
  --elec-blue: #12b6fa;
  --elec-green: #53e65e;
  --white: #fff;
  --black: #181818;
  --shadow: 0 4px 24px rgba(30,16,1,0.12), 0 1.5px 5px rgba(80,40,10,0.13);
  --border-radius: 20px;
}

/* --- TYPOGRAPHY SCALE --- */
h1, .h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
h2, .h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
}
p, li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #3c261b;
  margin-bottom: 12px;
}
strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  h3, .h3 { font-size: 1.12rem; }
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.23s cubic-bezier(.45,.07,.52,1.11), transform 0.19s cubic-bezier(.75,.01,.45,1.2);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,159,28,0.14), 0 2.5px 9px rgba(80,70,10,0.15);
  transform: translateY(-7px) scale(1.03);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fffbea;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(115,71,65,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 420px;
  transition: box-shadow 0.18s, transform 0.15s;
  color: #2A1C16;
}
.testimonial-card p {
  color: #2A1C16;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(255,77,95,0.09),0 2px 12px rgba(168,94,0,.11);
  transform: translateY(-4px) scale(1.01);
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 680px;
}

/* General section & card spacing */
section {
  margin-bottom: 60px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-grid > div {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px rgba(18,182,250,0.08), 0 3.5px 14px rgba(115,71,65,0.17);
  transform: translateY(-5px) scale(1.03);
}
.feature-grid img {
  height: 43px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 1.5px 0 var(--accent-vibrant));
}
.price {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 3.5px 13px;
  font-size: 1rem;
  margin-top: 12px;
  letter-spacing: 0.1em;
  box-shadow: 0 1.5px 5px rgba(168,94,0,0.07);
}

/******** HERO SECTION ********/
.hero {
  background: linear-gradient(90deg, #ffefea 24%, #ffe487 100%);
  min-height: 370px;
  display: flex;
  align-items: center;
  padding: 48px 0 48px 0;
  margin-bottom: 40px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 24px rgba(255,77,95,0.11);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.84);
  padding: 32px 36px 32px 36px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(168,94,0,0.09);
  max-width: 520px;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 26px 0 26px 0;
    min-height: unset;
    border-radius: 0 0 18px 18px;
  }
  .hero .content-wrapper {
    padding: 18px 8px 18px 8px;
    max-width: 100%;
  }
}

/********* BUTTONS & CTAs *********/
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  border-radius: 16px;
  padding: 13px 34px;
  margin-top: 12px;
  background: var(--accent-vibrant);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(255,77,95,0.07);
  transition: background 0.16s, box-shadow 0.18s, transform 0.16s;
  letter-spacing: 0.05em;
  outline: none;
}
.cta.primary {
  background: linear-gradient(90deg, var(--accent-vibrant), var(--elec-blue));
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--elec-blue), var(--accent-vibrant));
  color: #181818;
  box-shadow: 0 8px 28px rgba(18,182,250,0.19), 0 2px 10px rgba(115,71,65,0.11);
  transform: scale(1.05) rotate(-1deg);
  outline: 2px solid var(--accent-vibrant);
}

.button, button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.15s;
}
.button:hover, button:hover {
  background: var(--accent-vibrant);
  color: #fffbea;
  transform: translateY(-2.5px) scale(1.04);
}

a {
  transition: color 0.14s;
}
a:hover {
  color: var(--accent-vibrant);
}


/* Secondary Accent for emphasis text or price tags */
.text-accent {
  color: var(--accent-vibrant);
  font-weight: 700;
}


/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(115,71,65,0.04);
  padding-top: 0;
  position: relative;
  z-index: 103;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}
.logo img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  padding: 8px 8px;
  border-radius: 10px;
  transition: color 0.15s, background 0.16s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-vibrant);
  color: #fff;
}
@media (max-width: 980px) {
  .main-nav {
    gap: 13px;
  }
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent-vibrant);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 49px;
  height: 49px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(168,94,0,0.10);
  cursor: pointer;
  transition: background 0.16s, transform 0.14s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--elec-blue);
  transform: scale(1.1) rotate(-5deg);
}
/* Show burger menu on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    display: none;
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 38px;
  }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(100deg, #fff 60%, #ffe487 110%);
  box-shadow: 0 8px 44px rgba(255,77,95,0.09);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform .35s cubic-bezier(.72,-0.07,.48,1.1), opacity .27s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  background: var(--vibrant-elec);
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-top: 22px;
  margin-right: 20px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 101;
  cursor: pointer;
  transition: background 0.2s, transform 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-vibrant);
  transform: scale(1.13);
  color: #ffe487;
}

.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: #ffefea;
  padding: 16px 28px;
  width: 82vw;
  border-radius: 18px;
  transition: background 0.18s, color 0.15s, transform 0.14s;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-vibrant);
  color: #fff;
  transform: scale(1.04) skewX(-2deg);
}

/*****************
 * MAIN LAYOUTS  *
 *****************/
@media (max-width: 1020px) {
  .feature-grid, .card-container, .content-grid {
    justify-content: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/*****************
 * FOOTER         *
 *****************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline dotted;
  opacity: .96;
  transition: color 0.12s, text-decoration 0.17s, opacity 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent-vibrant);
  text-decoration: underline solid;
  opacity: 1;
}
.contact-info {
  font-size: 0.99rem;
  color: #ffe8b7;
}
.contact-info a {
  color: #ffe487;
  text-decoration: underline;
  font-weight: 600;
}
.contact-info a:hover {
  color: #fff;
}
.social-media {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 16px;
  align-items: center;
}
.social-media a img {
  height: 34px;
  width: 34px;
  filter: brightness(1.12) drop-shadow(0 0 3px #ffe487);
  opacity: 0.93;
  transition: filter 0.16s, opacity 0.13s, transform 0.13s;
}
.social-media a:hover img {
  filter: brightness(1.32) drop-shadow(0 0 7px var(--accent-vibrant));
  opacity: 1;
  transform: scale(1.10) rotate(-4deg);
}
footer .copyright {
  font-size: .95rem;
  color: #8b645f;
  padding: 23px 0 5px 3px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .footer-links {
    gap: 16px;
  }
}

/*****************************************
*   COOKIE BANNER + COOKIE MODAL         *
*****************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #ffe487 18%, #ffefea 100%);
  box-shadow: 0 -2px 19px rgba(168,94,0,0.14);
  color: var(--primary);
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7vw 18px 7vw;
  font-size: 1rem;
  gap: 18px;
  animation: cookieFadeIn 0.8s cubic-bezier(.17,.84,.54,1.13);
}
@keyframes cookieFadeIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .banner-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--accent-vibrant);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 8px 19px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.13s, transform 0.11s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--elec-blue);
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .reject {
  background: var(--vibrant-elec);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--accent);
}
.cookie-banner .settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--accent-vibrant);
}
.cookie-banner .settings:hover { 
  background: var(--accent-vibrant);
  color: #fff;
}

/****** COOKIE MODAL ******/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-200px) scale(0.99);
  background: #fff;
  color: var(--primary);
  z-index: 3999;
  min-width: 310px;
  max-width: 94vw;
  width: 420px;
  border-radius: 16px;
  box-shadow: 0 6px 40px rgba(255,159,28,0.11), 0 2px 10px rgba(115,71,65,0.18);
  padding: 30px 26px 18px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s, transform .31s cubic-bezier(.65,.16,.41,1.18);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.45rem;
  font-family: 'Merriweather', serif;
  color: var(--primary);
  margin-bottom: 20px;
}
.cookie-modal .cookie-types {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 19px;
}
.cookie-modal .cookie-type {
  background: #FFEFED;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal .cookie-type.essential {
  background: #E7FFD0;
  font-weight: 700;
}
.cookie-modal .cookie-type label {
  font-size: 1rem;
  color: var(--primary-dark);
}
.cookie-modal .cookie-type input[type=checkbox] {
  accent-color: var(--accent-vibrant);
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--accent-vibrant);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.13s, color 0.15s, transform 0.13s;
}
.cookie-modal .close {
  background: #fff;
  color: var(--primary-dark);
  border: 1.3px solid var(--accent-vibrant);
}
.cookie-modal .close:hover {
  background: var(--accent-vibrant);
  color: #fff;
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 90vw;
    width: 97vw;
    padding: 16px 3vw 14px 3vw;
  }
}

/******************
  UTILITY CLASSES
*******************/
.bg-elec-blue { background: var(--elec-blue); color: #fff; }
.bg-vibrant-elec { background: var(--vibrant-elec); color: #fff; }
.rounded { border-radius: var(--border-radius); }
.text-center { text-align: center; }
.text-bold { font-weight: 700; }


/********** FORMATTING VARIOUS BLOCKS **********/
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #3c261b;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 8px;
}
ul li::marker {
  color: var(--accent-vibrant);
}

/********** CONTACT BLOCKS ***********/
.contact .content-wrapper {
  gap: 24px;
}
.address-block, .email-link, .phone-hours {
  background: #fffbea;
  border-radius: 12px;
  box-shadow: 0 1.5px 9px rgba(255,223,120,0.07);
  padding: 13px 18px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .contact .content-wrapper {
    flex-direction: column;
  }
  .address-block, .email-link, .phone-hours {
    padding: 8px 13px;
    font-size: 0.99rem;
  }
}

/********* MAP & SHOWROOM HOURS *********/
.store-location-map {
  background: #ebfbfd;
  border-radius: 13px;
  padding: 13px 20px;
  margin-bottom: 10px;
  min-width: 180px;
}
.opening-hours {
  background: #fffbea;
  border-radius: 13px;
  padding: 9px 15px;
}
@media (max-width: 700px) {
  .opening-hours ul {
    font-size: 0.99rem;
  }
}

/********** FILTER OPTIONS **********/
.filter-options {
  background: #EBFBFD;
  border-radius: 13px;
  padding: 15px 18px;
  font-size: .99rem;
  margin-top: 16px;
  margin-bottom: 16px;
}

/********** PRICE TABLES *********/
.price-table {
  background: #fffbea;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(168,94,0,0.06);
  padding: 19px 16px;
  margin-top: 16px;
  font-size: 1rem;
}
.price-table ul li:not(:last-child) {
  margin-bottom: 9px;
}

/********** ORDERED LISTS *********/
.features ol {
  list-style-type: decimal;
  padding-left: 28px;
}
.features ol li {
  color: #513521;
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 2px;
}
.features ol li strong {
  color: var(--accent-vibrant);
}

/* --- VISUAL & MICRO-INTERACTIONS --- */
.card, .feature-grid > div, .testimonial-card, .cookie-modal, .cookie-banner, .content-wrapper, .section, .feature-item, .about, .services {
  box-sizing: border-box;
}

/* --- FOCUS STATES for Accessibility --- */
*:focus {
  outline: 2.2px dashed var(--elec-blue);
  outline-offset: 2px;
}

/**********************
* TRANSITIONS / SMOOTHNESS *
***********************/
a, button, .cta, .feature-grid > div, .card, .testimonial-card {
  transition: all 0.16s cubic-bezier(.4,0,.2,1);
}

/********** MISC SPACING --- strict margin and gap enforcement **********/
section, .section, .card, .testimonial-card, .feature-grid > div {
  margin-bottom: 32px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/********* RESPONSIVE LAYOUTS *********/
@media (max-width: 1210px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  .container { padding-left: 7px; padding-right: 7px; }
  section, .section { padding: 22px 2vw 22px 2vw; }
}

/********* END OF FILE *********/
