/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Brand Colors as variables */
:root {
  --sp-primary: #25303B;
  --sp-secondary: #7A684F;
  --sp-accent: #F5F3F0;
  --sp-bg: #F7F9FA;
  --sp-light: #fff;
  --sp-gray: #E3E6EA;
  --sp-dark: #181E24;
  --sp-blue: #2B3A4B;
  --sp-border: #CED4DA;
  --sp-text-main: #23272B;
  --sp-text-muted: #6C757D;
  --sp-success: #40916c;
  --sp-danger: #d00000;
  --sp-shadow: 0 4px 12px rgba(37,48,59,0.06);
}

/* Typography */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--sp-text-main);
  background: var(--sp-bg);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: var(--sp-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--sp-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  font-family: 'Segoe UI', Arial, sans-serif;
}
p, ul li, ol li {
  font-size: 1rem;
  color: var(--sp-text-main);
  margin-bottom: 12px;
  line-height: 1.6;
}
strong {
  font-weight: 600;
}
.text-section h2, .text-section h3 {
  margin-top: 0;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
}
a {
  color: var(--sp-primary);
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--sp-secondary);
}

/* Button styles */
.btn-primary, .product-card a.btn-primary, .next-steps .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-primary);
  color: var(--sp-light);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  margin: 0 0 8px 0;
  cursor: pointer;
  box-shadow: var(--sp-shadow);
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.03em;
  min-width: 120px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--sp-blue);
  color: var(--sp-accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,48,59,0.08);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-secondary);
  color: var(--sp-light);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  margin: 0 0 8px 0;
  cursor: pointer;
  box-shadow: var(--sp-shadow);
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-decoration: none;
  min-width: 120px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--sp-primary);
  color: var(--sp-accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,48,59,0.08);
}

/* Layout Wrappers */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
}

/* Header & Navigation */
header {
  background: var(--sp-light);
  box-shadow: 0 2px 8px rgba(37,48,59,0.03);
  z-index: 50;
  position: relative;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 18px 0 18px 0;
  min-height: 72px;
}
header nav > a img {
  width: 150px;
  height: auto;
  margin-right: 24px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--sp-primary);
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--sp-accent);
  color: var(--sp-secondary);
}
header nav .btn-primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--sp-primary);
  color: var(--sp-light);
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 14px 2px 14px;
  cursor: pointer;
  z-index: 1002;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--sp-blue);
  color: var(--sp-secondary);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--sp-light);
  box-shadow: 0 0 0 100vmax rgba(37,48,59,0.07);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.42,.78,.47,1);
  padding: 0;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  display: inline-block;
  align-self: flex-end;
  background: var(--sp-accent);
  color: var(--sp-primary);
  font-size: 2.2rem;
  margin: 18px 28px 0 0;
  padding: 3px 12px 1px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  z-index: 2002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--sp-primary);
  color: var(--sp-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 36px;
  width: 80vw;
  max-width: 350px;
  min-height: 60vh;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--sp-primary);
  padding: 10px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.18s, color .2s;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--sp-accent);
  color: var(--sp-secondary);
  padding-left: 8px;
}

@media (max-width: 1100px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
}
@media (max-width: 768px) {
  header nav ul {
    display: none;
  }
  header nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Hero Section */
.hero {
  padding: 0;
  background: var(--sp-accent);
  border-bottom: 1px solid var(--sp-gray);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
}
.hero .content-wrapper {
  padding: 42px 0;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: var(--sp-primary);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .hero .content-wrapper {
    padding: 26px 0;
  }
  .hero .container {
    min-height: 170px;
  }
  h1 {
    font-size: 2rem;
  }
}

/* Section Spacing & Cards */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, section {
    margin-bottom: 32px;
    padding: 22px 8px 24px 8px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--sp-light);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--sp-shadow);
  border: 1px solid var(--sp-border);
  padding: 28px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}

.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;
    gap: 16px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********** FEATURES SECTION ON INDEX ***********/
.features {
  background: var(--sp-light);
  border-radius: 16px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.features .feature-grid li {
  flex: 1 1 240px;
  background: var(--sp-accent);
  border-radius: 10px;
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  box-shadow: var(--sp-shadow);
  transition: box-shadow .2s, transform .14s;
  border: 1px solid var(--sp-border);
  margin-bottom: 0;
}
.features .feature-grid li:hover {
  box-shadow: 0 12px 40px rgba(37,48,59,0.10);
  transform: translateY(-2px) scale(1.01);
}
.features .feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 18px;
}
.features .feature-grid h3 {
  font-size: 1.17rem;
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/********** PRODUCT LISTING IN KATALOG ***********/
.catalog-features .filter-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 26px;
}
.catalog-features .filter-bar ul {
  display: flex;
  gap: 12px;
}
.catalog-features .filter-bar a {
  color: var(--sp-secondary);
  padding: 6px 18px;
  border-radius: 16px;
  border: 1px solid var(--sp-secondary);
  font-size: 1rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: none;
  transition: background 0.16s, color 0.14s;
}
.catalog-features .filter-bar a:hover, .catalog-features .filter-bar a:focus {
  background: var(--sp-secondary);
  color: var(--sp-light);
}
.product-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.product-card {
  background: var(--sp-light);
  border: 1px solid var(--sp-border);
  border-radius: 13px;
  padding: 28px 24px 22px 24px;
  flex: 1 1 240px;
  box-shadow: var(--sp-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 190px;
  max-width: 260px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .16s;
  margin-bottom: 0;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(37,48,59,0.13);
  transform: translateY(-3px) scale(1.03);
}
.product-card img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}
.product-card h3 {
  margin-bottom: 5px;
  font-size: 1.17rem;
}
.product-card p {
  font-size: 1rem;
  color: var(--sp-text-main);
}
.product-card a {
  margin-top: 12px;
  font-weight: 600;
  color: var(--sp-primary);
  text-decoration: underline;
  display: inline-block;
  transition: color 0.17s, text-decoration 0.08s;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.product-card a:hover, .product-card a:focus {
  color: var(--sp-secondary);
  text-decoration: none;
}
@media (max-width: 900px) {
  .product-listing {
    flex-direction: column;
    gap: 18px;
  }
  .product-card {
    max-width: 100%;
  }
}

/********* SERVICES / BENEFITS LISTS **********/
.services ul, .purchase-services ul,
.services-list ul, .brand-story ul, .unique-features ul, .values-list,
.gift-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services ul li, .purchase-services ul li,
.services-list ul li, .brand-story ul li, .unique-features ul li, .values-list li,
.gift-benefits li {
  background: var(--sp-accent);
  color: var(--sp-text-main);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(122,104,79,0.05);
  border: 1px solid var(--sp-gray);
  font-size: 1rem;
}
@media (max-width: 700px) {
  .services ul li, .purchase-services ul li,
  .services-list ul li {
    padding: 12px 10px;
  }
}

/************ TRUST SIGNALS ************/
.trust-signals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 12px;
}
.trust-signals li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--sp-primary);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: var(--sp-accent);
  border-radius: 22px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px rgba(37,48,59,0.06);
  border: 1px solid var(--sp-gray);
  min-width: 0;
}
.trust-signals img {
  width: 32px;
  height: 32px;
}

/******** STEPPER & LISTS FOR PROCESSES ********/
.steps-list, .reservation-process ol, .delivery-services .steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-left: 16px;
}
.steps-list li, .reservation-process ol li, .delivery-services .steps li {
  position: relative;
  padding-left: 16px;
  color: var(--sp-primary);
  margin-bottom: 0;
  font-size: 1rem;
}
.steps-list li:before, .reservation-process ol li:before, .delivery-services .steps li:before {
  content: '•';
  color: var(--sp-secondary);
  position: absolute;
  left: 0;
}

/******************* TESTIMONIALS **************/
.testimonials {
  background: var(--sp-accent);
  border-radius: 16px;
  box-shadow: var(--sp-shadow);
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 16px 24px;
  margin-bottom: 20px;
  background: var(--sp-light);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(37,48,59,0.06);
  transition: box-shadow 0.19s;
  color: var(--sp-text-main);
  font-size: 1.1rem;
  max-width: 640px;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(37,48,59,0.15);
}
.testimonials .testimonial-card p {
  margin-bottom: 6px;
  color: var(--sp-dark);
  font-size: 1.05rem;
}
.testimonials .testimonial-card strong {
  color: var(--sp-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/****************** MAP PLACEHOLDER ************/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sp-accent);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 14px rgba(37,48,59,0.05);
  border: 1px solid var(--sp-gray);
  margin-top: 16px;
}
.map-placeholder img {
  width: 56px;
  height: 56px;
}
@media (max-width: 600px) {
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px;
  }
}

/***************** FOOTER ********************/
footer {
  background: var(--sp-primary);
  color: var(--sp-accent);
  border-top: 2px solid var(--sp-gray);
  padding: 32px 0 20px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 0 0 0;
}
.footer-contact {
  flex: 1 1 260px;
  color: var(--sp-accent);
  font-size: 1rem;
}
.footer-contact h3 {
  color: var(--sp-accent);
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--sp-secondary);
  text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--sp-accent);
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: var(--sp-accent);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.85;
  padding: 2px 0;
  transition: opacity .16s, color .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  opacity: 1;
  color: var(--sp-secondary);
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--sp-accent);
}
.footer-social img {
  height: 26px;
  width: 26px;
  transition: filter 0.16s;
  vertical-align: middle;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.5) contrast(1.25);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/************* COOKIE CONSENT BANNER **************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--sp-dark);
  color: var(--sp-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 24px 28px;
  box-shadow: 0 -4px 24px rgba(37,48,59,.17);
  font-size: 1rem;
  gap: 24px;
  transition: opacity .29s, bottom .29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -120px;
}
.cookie-banner-text {
  flex: 1 1 320px;
  max-width: 580px;
  color: var(--sp-accent);
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-btn.accept {
  background: var(--sp-success);
  color: var(--sp-light);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #20745b;
}
.cookie-btn.reject {
  background: var(--sp-danger);
  color: var(--sp-light);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #7c0020;
}
.cookie-btn.settings {
  background: var(--sp-secondary);
  color: var(--sp-light);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--sp-primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px;
    font-size: .98rem;
  }
  .cookie-banner-actions {
    gap: 10px;
  }
}

/************* COOKIE MODAL *************/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,48,59,0.25);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: var(--sp-light);
  color: var(--sp-text-main);
  border-radius: 18px;
  box-shadow: 0 8px 54px rgba(37,48,59,.12);
  padding: 40px 36px 32px 36px;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: var(--sp-primary);
  margin-bottom: 6px;
}
.cookie-preference-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--sp-gray);
  padding: 10px 0 5px 0;
  font-size: 1rem;
}
.cookie-preference-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--sp-gray);
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: var(--sp-secondary);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(37,48,59,0.09);
  transition: left 0.18s, background 0.14s;
}
.cookie-toggle:checked::after {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  padding: 10px 20px;
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.55rem;
  background: none;
  color: var(--sp-secondary);
  border: none;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.12s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--sp-primary);
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 22px 12px 18px 12px;
    min-width: 0;
    max-width: 94vw;
  }
}

/* Miscellaneous utility classes */
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.no-list-style {
  list-style: none !important;
  padding-left: 0 !important;
}

/***** Responsive Utility for Columns ******/
@media (max-width: 900px) {
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
}

/********* FORM ELEMENTS (future proof) *********/
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  width: 100%;
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--sp-light);
  color: var(--sp-text-main);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border 0.16s, background 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--sp-secondary);
  background: #f3efe9;
}
label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sp-primary);
  margin-bottom: 4px;
  display: block;
}

::-webkit-input-placeholder { color: #909BAA; }
::-moz-placeholder { color: #909BAA; }
:-ms-input-placeholder { color: #909BAA; }
::placeholder { color: #909BAA; }

/* For accessibility: Focus outlines */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px dotted var(--sp-secondary);
  outline-offset: 2px;
}

/********* THANK YOU + NEXT STEPS *******/
.next-steps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 16px 0;
  list-style: none;
  padding: 0;
  justify-content: flex-start;
}
.next-steps ul li {
  display: flex;
  align-items: center;
}
.next-steps a {
  font-size: 1rem;
  color: var(--sp-primary);
  text-decoration: underline;
  font-weight: 500;
  border-radius: 4px;
  padding: 5px 8px;
  transition: color .14s, background .13s;
}
.next-steps a.btn-primary {
  text-decoration: none;
  margin-right: 0;
  margin-bottom: 0;
  padding: 10px 24px;
}
.next-steps a:hover, .next-steps a:focus {
  background: var(--sp-accent);
  color: var(--sp-secondary);
}

/********* PRIVACY / TERMS PAGES **********/
.privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use {
  background: var(--sp-light);
  border-radius: 16px;
  box-shadow: var(--sp-shadow);
  padding: 40px 20px;
}
.privacy-policy h1, .gdpr-policy h1, .cookies-policy h1, .terms-of-use h1 {
  font-size: 2rem;
  color: var(--sp-primary);
  margin-bottom: 20px;
}

/********* MOBILE FONT SIZES & SPACING ********/
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .content-wrapper {
    gap: 10px;
  }
  .product-card {
    padding: 20px 10px 16px 10px;
  }
}
