/* ========================================================
   Sizzle Patch - Elegant Classic Website Stylesheet
   --------------------------------------------------------
   - Responsive, mobile-first layout (flexbox only)
   - "Elegant Classic" design: serif fonts, muted colors
   - Brand: #323232 (primary), #A1874F (secondary), #F2F2F2 (accent)
   - All interactive + cookie-consent and burger-menu
   ========================================================= */

/* == CSS RESET & BASE == */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #FAFAF7;
  color: #323232;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: #A1874F; text-decoration: none; transition: color 0.15s; }
a:hover, a:focus { color: #684d16; text-decoration: underline; }
ul, ol { margin-left: 1.5em; margin-bottom: 20px; }
li { margin-bottom: 8px; }

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  color: #24221b;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 500; }
p {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #323232;
  letter-spacing: 0.01em;
}
strong, b { font-weight: bold; color: #24221b; }

/* == LAYOUT CONTAINERS == */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: none;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cta-banner {
  background: #fff;
  border: 1px solid #e4e1da;
  border-radius: 18px;
  box-shadow: 0 5px 24px 0 rgba(35,30,10,0.13);
  padding: 36px 24px;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* == FLEXBOX PATTERNS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(50, 50, 50, 0.065);
  border: 1px solid #f1efe8;
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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 {
  background: #F8F8F4;
  color: #24221b;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-radius: 16px;
  margin: 0 0 20px 0;
  box-shadow: 0 6px 20px 0 rgba(50,50,50,0.06);
  border: 1px solid #e7e2d6;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card strong {
  color: #A1874F;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* == HERO & FEATURES == */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #ebe6d8;
  box-shadow: 0 2px 10px 0 rgba(90,85,40,0.06);
  min-width: 220px;
  max-width: 315px;
  padding: 26px 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover,
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(90,85,40,0.12);
}
.feature-grid img { width: 36px; height: 36px; margin-bottom: 6px; }

/* == BUTTONS == */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  min-width: 130px;
  min-height: 46px;
  padding: 0 30px;
  margin: 8px 6px 0 0;
  box-shadow: 0 2px 9px 0 rgba(50,50,50,0.03);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: #A1874F;
  color: #fff;
  border: 1px solid #A1874F;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #80652c;
  color: #fff; 
  box-shadow: 0 4px 18px 0 rgba(90,85,40,0.20);
}
.btn-secondary {
  background: #fff;
  color: #A1874F;
  border: 1px solid #A1874F;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #A1874F;
  color: #fff;
}

/* == HEADER & NAVIGATION == */
header {
  background: #fff;
  border-bottom: 1px solid #ede5d0;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 3px 18px 0 rgba(90,80,50,0.04);
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  color: #323232;
  font-size: 1.07rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 4px 15px;
  border-radius: 18px;
  transition: background 0.15s, color 0.16s;
}
header nav a:hover,
header nav a:focus {
  background: #f7f5ef;
  color: #A1874F;
}
header img[alt="Sizzle Patch"] {
  height: 49px;
  width: auto;
  margin-right: 15px;
}
.mobile-menu-toggle {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 2.2rem;
  color: #A1874F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: 8px;
  transition: color 0.15s;
  z-index: 150;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #323232;
}

/* == MOBILE NAV MENU == */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 28, 22, 0.92);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.5,0.04,0.2,1), background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.7rem;
  color: #fff;
  position: absolute;
  top: 28px;
  right: 32px;
  cursor: pointer;
  z-index: 1200;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #A1874F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 90px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 16px 0;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #A1874F;
  color: #fff;
}

@media (max-width: 1050px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1051px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* == MAIN & SECTION SPACING == */
main {
  padding-top: 0;
  padding-bottom: 52px;
}
section { margin-bottom: 60px; padding: 40px 20px; }

/* == SLIDERS & TESTIMONIALS == */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
}
.star-rating { display: flex; gap: 3px; margin-bottom: 10px; }
.star-rating img { width: 23px; height: 23px; }

/* == FAQ == */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 7px 0 rgba(70,55,33,0.06);
  border: 1px solid #EFEADD;
  margin-bottom: 12px;
}

/* == FORMS - CUSTOMIZING DEMO CONTACT FORM == */
.text-section p img {
  vertical-align: middle;
  margin-left: 10px;
}

/* == FOOTER == */
footer {
  background: #F8F6F2;
  padding: 38px 0 14px 0;
  border-top: 1px solid #ebe6d8;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.05rem;
}
footer nav a {
  color: #A1874F;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 2px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.16s;
}
footer nav a:hover {
  background: #A1874F;
  color: #fff;
}
footer .footer-contact {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  align-items: center;
  color: #323232;
}
footer .footer-contact img {
  width: 19px; height: 19px; margin-right: 7px; vertical-align: middle;
}
footer .footer-contact span, 
footer .footer-contact div {
  display: flex; align-items: center; gap: 7px;
}
footer .footer-note {
  color: #b6add0;
  font-size: 0.97rem;
  margin-top: 4px;
}

/* == RESPONSIVE: MOBILE FIRST == */
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 24px 5px; }
  .cta-banner { padding: 22px 8px; }
  .testimonial-card { padding: 18px 11px; }
  .card { padding: 14px 8px; }
  .feature-grid { gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  .content-wrapper, .text-section {
    gap: 10px;
    padding: 0;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 100%;
    min-width: 0;
    padding: 14px 8px;
  }
  .testimonials-slider {
    gap: 13px;
  }
  .cta-banner {
    padding: 16px 6px;
    font-size: 1rem;
  }
  .section { margin-bottom: 44px; padding: 18px 0; }
  .testimonial-card { padding: 13px 7px; font-size: 1rem; }
  .footer-contact { flex-direction: column; gap: 8px; }
  .footer-note { text-align: center; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.09rem; }
  .card, .testimonial-card, .cta-banner { padding: 9px 3px; }
  .feature-item { gap: 6px; }
  .footer-contact { font-size: 0.98rem; }
}

/* =====================
   MICROINTERACTIONS
   ===================== */
input, textarea, select, button {
  font-family: inherit;
  outline: none;
  border: none;
}
.btn-primary, .btn-secondary {
  transition: background 0.19s, color 0.19s, transform 0.19s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.18s, border 0.16s, transform 0.19s;
}
.card:active, .testimonial-card:active, .feature-grid > div:active {
  transform: scale(0.97);
}

/* ==================
   COOKIE BANNER
   ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff6e6;
  color: #4B4326;
  z-index: 2000;
  box-shadow: 0 -2px 16px 0 rgba(50,50,30,0.13);
  padding: 22px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  border-top: 2px solid #A1874F;
  animation: cookie-slide-in 0.5s cubic-bezier(0.6,0.12,0.45,1) 1;
}
@keyframes cookie-slide-in {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.05rem;
  text-align: center;
  color: #4B4326;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 3px;
}
.cookie-banner .btn-cookie {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.04rem;
  padding: 8px 26px;
  border-radius: 17px;
  border: 1px solid #A1874F;
  background: #fff;
  color: #A1874F;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.16s, color 0.15s, border 0.18s;
}
.cookie-banner .btn-cookie.accept {
  background: #A1874F;
  color: #fff;
}
.cookie-banner .btn-cookie.accept:hover,
.cookie-banner .btn-cookie.settings:hover {
  background: #80652c;
  color: #fff;
  border: 1.4px solid #80652c;
}
.cookie-banner .btn-cookie.reject {
  background: #fff;
  color: #B87757;
  border: 1px solid #B87757;
}
.cookie-banner .btn-cookie.reject:hover {
  background: #e1ddd6;
}

/* ==== COOKIE MODAL POPUP ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40, 38, 30, 0.58);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; animation: fade-in 0.22s; }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 7px 38px 0 rgba(40,35,10,0.26);
  padding: 44px 22px 22px 22px;
  min-width: 90vw;
  max-width: 410px;
  margin: 0 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  animation: popup-slide-in 0.26s cubic-bezier(0.5,0.07,0.32,1);
}
@keyframes popup-slide-in {
  from {transform:scale(0.88) translateY(33px); opacity:0;}
  to {transform:scale(1) translateY(0); opacity:1;}
}
.cookie-modal h2 { font-size: 1.24rem; margin-bottom: 13px; color: #A1874F; }
.cookie-modal label {
  font-size: 1.03rem;
  margin-bottom: 8px;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #A1874F;
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid #A1874F;
  cursor: pointer;
}
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-modal {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  border-radius: 14px;
  padding: 7px 22px;
  font-size: 1.04rem;
  background: #A1874F;
  color: #fff;
  border: 1px solid #A1874F;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal .btn-cookie-modal.cancel {
  background: #fff;
  color: #A1874F;
  border: 1px solid #A1874F;
}
.cookie-modal .btn-cookie-modal.cancel:hover {
  background: #f9f1df;
}
.cookie-modal .btn-cookie-modal:hover {
  background: #80652c;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px; right: 22px;
  font-size: 2.2rem;
  color: #A1874F;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 4000;
}
.cookie-modal .modal-close:hover { color: #24221b; }

/* ==== UTILITIES ==== */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* ==== HELPER CLASSES FOR CLEAR SPACING IN FLEX LAYOUTS ==== */
section > .container { margin-bottom: 0; }
.card + .card, .testimonial-card + .testimonial-card, .feature-item + .feature-item {
  margin-top: 20px;
}
.content-grid > *, .card-container > *, .feature-grid > * {
  margin-bottom: 0 !important;
}

/* ==== PRINT FONT-FACES FOR MONTSERRAT & OPEN SANS (fallbacks for display/body) ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

/* If you want to explicitly use Montserrat as 'display', you can add this: */
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body, p, li, ul, ol, strong, .footer-contact, label, input,
.btn-cookie, .btn-cookie-modal {
  font-family: 'Open Sans', 'Georgia', 'Times New Roman', Times, serif;
}

/* === SCROLLBAR STYLES (Webkit Browsers Only) === */
::-webkit-scrollbar { width: 9px; background: #ece6da; }
::-webkit-scrollbar-thumb {
  background: #A1874F;
  border-radius: 9px;
}

/* ===========================================================
   END OF SIZZLE PATCH ELEGANT CLASSIC STYLESHEET
   =========================================================== */
