/* =============================================================
   CSS RESET & NORMALIZE (Mobile-first 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, 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; }
*, *::before, *::after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5EFE6;
  color: #222;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}
a {
  color: #27576B;
  text-decoration: underline;
  outline: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7431C;
  text-decoration: none;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong { font-weight: 700; }
em, i { font-style: italic; }
blockquote {
  border-left: 4px solid #F3B339;
  padding-left: 1em;
  color: #7B5233;
  font-style: italic;
  background: #FAF3E7;
  margin: 20px 0;
}
pre {
  background: #F3B33922;
  padding: 12px;
  border-radius: 3px;
  font-size: 14px;
  margin: 24px 0;
  overflow-x: auto;
}
hr {
  border: 0;
  height: 1px;
  background: #e5c97a;
  margin: 32px 0;
}


/* =============================================================
   VINTAGE RETRO BRAND: COLORS & FONTS
   ============================================================= */
:root {
  --primary: #27576B;
  --primary-light: #497b96;
  --secondary: #F3B339;
  --secondary-dark: #C7891A;
  --accent: #FFFFFF;
  --bg-vintage: #F5EFE6;
  --brown: #A7431C;
  --beige: #FFFBEB;
  --olive: #B8AA89;
  --shadow: 0 4px 16px 0 #0001;
  --card: #FAF3E7;
  --card-edge: #E9DDD3;
  --testi-bg: #FFF8ED;
  --testi-border: #F3B339;
}


@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  letter-spacing: 0.02em;
  color: #A7431C;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main section {
  margin-bottom: 60px;
}
.container {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.content-wrapper {
  background: var(--beige);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Vintage Pattern Border for Visuals */
.content-wrapper, .testimonial-card, .store-summary-card, .thank_you {
  border: 2px solid var(--card-edge);
  background-image: repeating-linear-gradient(-45deg, #EADAB7, #EADAB7 6px, transparent 6px, transparent 12px);
  background-size: 22px 22px;
}

.text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #5a4323;
  margin-bottom: 12px;
}

/* Card & Flex Container Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 20px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testi-bg);
  border: 2px solid var(--testi-border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #2B1C13;
  box-shadow: 0 2px 8px #FAC77A22;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.store-summary-card {
  background: #FFFBEB;
  border: 2px solid #EADAB7;
  border-radius: 13px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* Utility Classes */
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }
.pt-2 { padding-top: 12px; }
.pt-4 { padding-top: 24px; }
.pb-2 { padding-bottom: 12px; }
.pb-4 { padding-bottom: 24px; }

/****************************
 HEADER & NAVIGATION
*****************************/
header {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  min-height: 64px;
  box-shadow: 0 5px 20px #0001;
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 0 14px 24px;
  white-space: nowrap;
}
header nav img {
  height: 42px;
  margin-right: 26px;
  border-radius: 7px;
  padding: 3px 6px;
  background: rgba(255,248,237,0.75);
  box-shadow: 0 2px 4px #0001;
}
header nav a {
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 5px 13px;
  margin-right: 2px;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #2C2616;
  box-shadow: 0 2px 6px #F3B33966;
}
header nav .btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  border-radius: 99px;
  margin-left: 16px;
  padding: 8px 22px;
  font-size: 1.1rem;
  letter-spacing: 0.048em;
  box-shadow: 0 2px 12px #F3B33922;
  outline: 2px solid transparent;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
}
header nav .btn-primary:hover, header nav .btn-primary:focus {
  background: var(--secondary-dark);
  color: #fff;
  box-shadow: 0 5px 20px #F3B33955;
  outline: 2px solid #B8AA89;
}

/****************************
  MOBILE NAVIGATION
*****************************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 16px;
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 23px;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: 0 2px 8px #F3B33955;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary-dark);
  color: #fff;
  outline: 2px solid #FFD98F;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF8ED;
  z-index: 120;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.82,.01,.16,.99);
  box-shadow: -3px 0 20px #0002;
  padding: 0 0 36px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 21px; top: 18px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  border: none;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 125;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: 2px solid #A7431C;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  color: var(--primary);
  background: none;
  font-size: 1.25rem;
  border-radius: 9px;
  padding: 12px 21px;
  margin-right: 0;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
  text-decoration: underline;
}

/* Hide mobile menu and toggle by default on desktop */
@media (min-width: 900px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 899px) {
  header nav {
    display: none;
  }
}
@media (max-width: 899px) {
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/****************************
 HERO SECTION + CTA
*****************************/
.hero {
  background: url('../assets/vintage-bg.png'), linear-gradient(110deg, #FFD98F 14%, #FFF8ED 80%);
  background-size: cover;
  min-height: 280px;
  box-shadow: 0 2px 20px #EEEEEE44;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border-bottom: 6px solid #EADAB7;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero .content-wrapper {
  background: rgba(255,251,235,0.97);
  border-radius: 16px 16px 90px 16px;
  box-shadow: 0 10px 36px #EADAB799;
  text-align: center;
  gap: 20px;
  padding: 42px 20px 38px 20px;
  border: 3.5px solid #EADAB7;
}
.hero h1 {
  color: #A7431C;
  text-shadow: 0 2px 4px #F3B33933;
}
.hero p { font-size: 1.22rem; color: #67523f; }

.cta .content-wrapper {
  background: linear-gradient(96deg, #FEF6E2 92%, #FFF1D0 100%);
  border: 2.5px dotted var(--secondary-dark);
  border-radius: 18px;
  box-shadow: 0 1px 18px #F3B33944;
  text-align: center;
  font-size: 1.14rem;
}

/****************************
 FORMS, SEARCH & FILTERS
*****************************/
input[type="text"], input[type="email"] {
  width: 100%;
  background: #fffbe7;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1.1rem;
  padding: 11px 17px;
  color: #574432;
  margin-bottom: 14px;
  transition: border 0.16s, box-shadow 0.18s;
  outline: none;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 7px #F3B33922;
}
input[type="text"]:focus, input[type="email"]:focus {
  border-color: #27576B;
  box-shadow: 0 2px 12px #A7431C18;
}
.category-filters, .offer-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.category-filters span, .offer-filter span {
  display: inline-block;
  background: #FAF3E7;
  color: #87521B;
  border-radius: 7px;
  padding: 6px 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid #EADAB7;
  transition: background 0.18s, color 0.18s, border 0.14s;
}
.category-filters span:hover, .offer-filter span:hover {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid #C7891A;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  color: #A7431C;
  margin: 26px 0 8px 0;
}

/****************************
 BUTTONS, LINKS, ANIMATIONS
*****************************/
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat',Impact,Charcoal,sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  letter-spacing: 0.045em;
  border: none;
  border-radius: 99px;
  padding: 11px 38px;
  margin-top: 14px;
  margin-bottom: 2px;
  box-shadow: 0 1px 8px #F3B33955;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  outline: 2px solid transparent;
  transition: background 0.16s, color 0.16s, outline 0.16s, box-shadow 0.21s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C7891A;
  color: #fff;
  outline: 2px solid #FFF4BB;
  box-shadow: 0 1px 16px #A7431C33;
}

/****************************
 CARDS, HIGHLIGHTS, TESTIMONIALS
*****************************/
.highlights .content-wrapper, .service-highlights, .offer-highlights, .testimonial-highlights {
  background: linear-gradient(111deg, #FFFBEB 80%, #EADAB7 105%);
  border: 1.8px dashed #F3B339;
  border-radius: 14px;
  text-align: center;
  margin-top: 16px;
  padding: 18px 5px;
  font-family: 'Montserrat', Impact, Charcoal, serif;
  color: #A7431C;
  font-size: 1.14rem;
  font-weight: 700;
  box-shadow: 0 2px 14px #F3B33911;
}

/****************************
 FOOTER
*****************************/
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 30px 0 18px 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat',Impact,Charcoal,sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  margin-right: 0;
  background: none;
  border-radius: 5px;
  padding: 5px 10px;
  transition: background 0.16s,color 0.16s;
  text-decoration: none;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
footer .text-section {
  font-family: 'Roboto',Arial,sans-serif;
  color: #fff8ed;
  text-align: center;
  margin: 0 auto 2px auto;
  font-size: 1rem;
}
footer address {
  font-style: normal;
  display: block;
  margin-bottom: 6px;
}

/****************************
 SPECIAL PAGES (THANK YOU)
*****************************/
.thank_you {
  margin: 26px 0;
  background: #FFFBEB;
  border-left: 8px solid #F3B339;
  border-radius: 11px;
  padding: 36px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  color: #7B5233;
  box-shadow: 0 2px 12px #FFB22718;
  text-align: center;
}
.thank_you ul {
  margin-top: 24px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

/****************************
 RESPONSIVE RULES
*****************************/
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 28px 9px;
  }
  .card, .testimonial-card, .store-summary-card{ padding: 16px 9px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 7px; }
  .content-wrapper { gap: 15px; }
  .section { margin-bottom: 40px; padding: 26px 6px; }
  .footer nav, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .testimonial-card { font-size: 1rem; }
  .hero .content-wrapper { border-radius: 8px 8px 28px 8px; padding: 26px 6px 24px 6px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
}

/****************************
 HOVER/TRANSITIONS/MICRO-INTERACTIONS
*****************************/
.card, .store-summary-card, .testimonial-card, .thank_you, .content-wrapper {
  transition: box-shadow 0.25s, transform 0.13s;
}
.card:hover, .store-summary-card:hover, .testimonial-card:hover {
  box-shadow: 0 5px 32px 0 #F3B33933, 0 2px 8px #A7431C19;
  transform: translateY(-2px) scale(1.015);
}
input[type="text"]:focus, input[type="email"]:focus {
  background: #FFF5DF;
}

/****************************
 COOKIE CONSENT BANNER & MODAL
*****************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FEF6E2;
  border-top: 4px solid #EADAB7;
  box-shadow: 0 -1px 15px #A7431C22;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 18px 12px;
  z-index: 3000;
  animation: banner-in 0.32s cubic-bezier(.71,0,.32,1) forwards;
}
@keyframes banner-in {
  from { transform: translateY(100px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner p {
  color: #A7431C;
  font-family: 'Montserrat', Impact, Charcoal, serif;
  font-size: 1.13rem;
  margin-bottom: 0.5em;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 26px;
  border: none;
  font-size: 1.01rem;
  margin-top: 2px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: all 0.18s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 1px 6px #F3B33920;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: #fffbe7;
}
.cookie-banner .reject {
  background: #efd393;
  color: #7B5233;
  border: 1.5px solid #F3B339;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F3B339;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary-light);
  color: #fff;
  border: none;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--primary);
  color: #FFD98F;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39, 87, 107, 0.48);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: modal-in 0.29s cubic-bezier(0.55, 0, 0.25, 1) both;
}
@keyframes modal-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #FFFBEB;
  border: 3px solid #EADAB7;
  border-radius: 14px;
  box-shadow: 0 4px 42px #0003;
  max-width: 388px;
  width: 92vw;
  padding: 30px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 10px; right: 14px;
  background: var(--primary);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 1.18rem;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #FEF6E2;
  border-radius: 8px;
  border: 1px solid #EADAB7;
  margin-bottom: 12px;
  padding: 8px 10px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  margin-right: 9px;
}
.cookie-modal .cookie-toggle {
  accent-color: var(--secondary);
  width: 21px; height: 21px;
}
.cookie-modal .always-on {
  color: #C7891A;
  font-size: 0.95rem;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: center;
}
.cookie-modal button {
  font-family: 'Montserrat', Impact, Charcoal, sans-serif;
  border-radius: 19px;
  padding: 8px 21px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.16s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: #fffbe7;
}

/****************************
 MISC VINTAGE ELEMENTS
*****************************/
::-webkit-scrollbar { width: 9px; background: #FEF6E2; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #EADAB7 80%, #FFFBEB 100%);
  border-radius: 11px;
}

/****************************
 PAGE-SPECIFIC COMPONENTS
*****************************/
.review-guidelines ul {
  background: #FEF6E2;
  border: 1.5px dashed #A7431C;
  border-radius: 9px;
  padding: 15px 16px;
  font-size: 1rem;
}
.review-guidelines li {
  color: #A7431C;
  font-family: 'Montserrat', Charcoal, serif;
  margin-bottom: 8px;
}

/****************************
  ENSURE MINIMUM 20PX GAPS & RESPONSIVE
*****************************/
main section ul, main ul, main ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
main section li, main ul li, main ol li {
  margin-bottom: 12px;
}

/****************************
  AVOID CONTENT OVERLAP
*****************************/
.content-wrapper + .content-wrapper {
  margin-top: 20px;
}
.card + .card, .testimonial-card + .testimonial-card, .store-summary-card + .store-summary-card {
  margin-top: 20px;
}

/****************************
  END OF STYLE
*****************************/
