/* RESET AND NORMALIZE */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
html, body { width: 100%; min-height: 100%; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd { margin: 0; padding: 0; font-weight: normal; }
img, svg { display: block; max-width: 100%; height: auto; border: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

:root {
  /* Brand & warm_friendly palette */
  --color-primary: #1A2634;
  --color-secondary: #2D9CDB;
  --color-accent: #F8FAFB;
  --color-warm1: #FFC894;
  --color-warm2: #FFD9B3;
  --color-warm3: #F4ECE2;
  --color-warm4: #F8F6F2;
  --color-success: #27AE60;
  --color-error: #EB5757;
  --color-shadow: rgba(237, 140, 51, 0.09);
  --text-dark: #213042;
  --text-medium: #544934;
  --text-light: #fff;
  --shadow-card: 0 2px 14px 0 rgba(237, 140, 51, 0.13);
  --shadow-soft: 0 4px 18px 0 rgba(237, 140, 51, 0.07);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--color-warm4);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.38rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; font-weight: 600; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-medium);
  font-size: 1rem;
}
small { font-size: 0.93rem; color: var(--text-medium); }

strong { color: var(--color-primary); font-weight: 600; }

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.17s;
}
a:hover, a:focus { color: #fa8500; }

.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: var(--color-warm1);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 48px 0 36px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 { color: var(--color-primary); font-size: 2.5rem; line-height: 1.15; }
.hero p { font-size: 1.23rem; }

/* NAVIGATION */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 18px 0 rgba(237, 140, 51, 0.04);
  border-bottom: 1px solid #f7ebe2;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 8px 10px;
  border-radius: 14px;
  transition: background 0.15s, color 0.15s;
  color: var(--color-primary);
}
header nav a:hover, header nav a:focus {
  background: var(--color-warm2);
  color: #cb7000;
}

.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #FFBD71 0%, #FF8153 100%);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 22px;
  font-size: 1.12rem;
  padding: 11px 34px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(255,180,82,0.07);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
  outline: none;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 0 #fff4eb70;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #ffb072 10%, #ffa06a 80%);
  color: #974c00;
  box-shadow: 0 4px 20px 0 rgba(255,180,82,0.13);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-warm1);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  padding: 7px 18px 7px 13px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.15s;
  z-index: 1001;
}
.mobile-menu-toggle:hover { background: var(--color-warm2); }
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--color-warm1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.5,0.02,0.2,1.01);
  box-shadow: -4px 0 18px 0 rgba(237,140,51,0.08);
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-primary);
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin-right: 20px;
  margin-bottom: 19px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  border-radius: 16px;
  color: #412b12;
  width: 85vw;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm2);
  color: #984a00;
}

@media (max-width: 1060px) {
  header nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1060px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1061px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: var(--color-warm3);
  border-top: 1px solid #ECD4B2;
  font-size: 0.98rem;
  padding-top: 30px;
  padding-bottom: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 42px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--color-primary);
  font-weight: 500;
  border-radius: 10px;
  padding: 5px 7px;
  transition: background 0.16s;
}
footer nav a:hover, footer nav a:focus { background: var(--color-warm2); color: #ff7104; }
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--color-primary);
  font-size: 0.98rem;
}
footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.98rem;
}
footer img {
  width: 22px; height: 22px;
  border-radius: 7px;
}

/* CARD & FLEX PATTERNS - MANDATORY */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 28px 21px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(237,140,51,0.16);
  transform: translateY(-5px) scale(1.01);
}

.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;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 280px;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(237,140,51,0.15);
}
.testimonial-card p {
  color: #1A2634;
  font-size: 1.12rem;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1rem;
}
.testimonial-card div {
  display: flex; align-items: center; gap: 2px;
}
.testimonial-card img {
  width: 21px; height: 21px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdfa;
  border-radius: 20px;
  padding: 26px 19px;
  min-width: 230px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.15s;
}
.feature-item:hover {
  box-shadow: 0 10px 32px 0 rgba(237,140,51,0.18);
}
.feature-item img {
  width: 36px; height: 36px;
  margin-bottom: 4px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}

.brand-list, .category-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.brand-item, .brand-card, .category-card {
  background: var(--color-warm2);
  border-radius: 20px;
  padding: 26px 20px;
  min-width: 230px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.brand-item img,
.brand-card img {
  width: 42px; height: 42px; border-radius: 12px;
}
.category-card h3 {
  margin-bottom: 8px;
}
.category-card p {
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff6ee;
  border-radius: 18px;
  padding: 18px 18px 13px 18px;
  box-shadow: 0 2px 10px 0 rgba(237,140,51,0.06);
  margin-bottom: 7px;
  transition: box-shadow 0.13s;
}
.faq-item h3 {
  color: var(--color-primary);
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.text-section {
  margin-bottom: 17px;
}
.text-section p, .text-section ul {
  font-size: 1.07rem;
  color: var(--text-medium);
}

ul, ol {
  padding-left: 25px;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-medium);
}

/* BUTTONS */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 1rem;
  background: var(--color-warm1);
  color: var(--color-primary);
  font-weight: 600;
  transition: background 0.13s, color 0.12s, box-shadow 0.13s;
  outline: none;
}
button:hover, button:focus {
  background: #ffdfa3;
  color: #a04b00;
}

/* Animations & Microtransitions */
.cta-primary, .feature-item, .card, .brand-card, .category-card, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, transform 0.17s;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--color-warm1);
  color: var(--color-primary);
  padding: 22px 18px 22px 20px;
  box-shadow: 0 -4px 18px 0 rgba(237,140,51,0.15);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookie-slide-up 0.48s cubic-bezier(.5,1.47,.4,.99);
}
@keyframes cookie-slide-up {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 auto;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--color-primary);
}
.cookie-banner .cookie-btns {
  display: flex; gap: 12px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 14px;
  font-size: 0.99rem;
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 6px 0 rgba(45,156,219,0.05);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ff9406;
  color: var(--color-primary);
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid var(--color-secondary);
}
.cookie-btn.cookie-settings:hover {
  background: var(--color-warm2);
  border-color: #d97f18;
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(255, 199, 155, 0.39);
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.2s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  color: var(--color-primary);
  box-shadow: 0 8px 40px 0 rgba(237,140,51,0.18);
  border-radius: 22px;
  max-width: 410px;
  width: 95vw;
  padding: 32px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-bounce-in 0.33s;
}
@keyframes modal-bounce-in {
  from { transform: scale(0.84); opacity: 0.1; }
  75%  { transform: scale(1.07); }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 13px;
  color: #af6410;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 13px;
  background: #F4ECE2;
  position: relative;
  outline: none;
  transition: background 0.13s;
  cursor: pointer;
  border: 1.3px solid #e5b97c;
}
.cookie-modal .toggle:checked {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s, background 0.14s;
  box-shadow: 0 1px 3px 0 #c4c4c434;
}
.cookie-modal .toggle:checked:before {
  left: 19px; background: #fdf6e5;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-note {
  color: #6f4d21;
  font-size: 0.96rem;
  margin-top: 4px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 950px) {
  .hero { padding: 35px 0 24px 0; }
  .feature-grid, .brand-list, .category-grid {
    gap: 18px;
  }
  .brand-item, .brand-card, .category-card, .feature-item, .testimonial-card {
    min-width: 200px;
    padding: 19px 13px;
  }
  .card { padding: 19px 11px; }
}
@media (max-width: 750px) {
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .hero { border-radius: 18px; }
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 23px;
  }
  .brand-list, .category-grid, .feature-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  section, .section {
    padding: 27px 7px 34px 7px;
    margin-bottom: 36px;
  }
  .testimonial-card, .card, .brand-card, .category-card, .feature-item {
    min-width: 0;
  }
  .faq-list {
    gap: 14px;
  }
}
@media (max-width: 610px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.26rem; }
  .cta-primary { font-size: 0.98rem; padding: 8px 22px; }
  .testimonial-card p {
    font-size: 1rem;
  }
  .cookie-banner p {
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 18px 9px 20px 13px;
    max-width: 97vw;
  }
}

/* Mobile Flex Direction Fixes */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .brand-list, .category-grid, .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 13px 8px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* Accessibility, Focus Styles */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #ffbc50;
  outline-offset: 2px;
}

/* util spacing */
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 32px; }
.mb-2 { margin-bottom: 18px; }
.mb-3 { margin-bottom: 32px; }

/* Hide content visually but keep for screen readers */
.sr-only { position: absolute; left: -10000px; width: 1px; height: 1px; top: auto; overflow: hidden; }

/* Custom Scrollbar (warm, soft) */
::-webkit-scrollbar { width: 9px; background: var(--color-warm2); border-radius: 12px; }
::-webkit-scrollbar-thumb { background: #ffe0bc; border-radius: 12px; }

/* END OF CSS */
