/* RESET & BASE STYLES (Normalize + Custom Reset) */
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;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* BRAND COLORS & PASTEL PALETTE */
:root {
  --brand-primary: #223146;
  --brand-secondary: #F7F6F3;
  --brand-accent: #D16D3B;
  --soft-pastel-yellow: #fff9e5;
  --soft-pastel-pink: #ffedf3;
  --soft-pastel-blue: #e6f0fa;
  --soft-pastel-green: #e6faea;
  --soft-pastel-lilac: #f0e6fa;
  --text-main: #223146;
  --text-subtle: #6C7A98;
  --white: #fff;
  --shadow-1: 0 4px 28px rgba(34,49,70,0.07);
  --shadow-card: 0 1.5px 12px rgba(34,49,70,0.09);
  --radius-lg: 18px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --focus-blue: #9fc0fa;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--soft-pastel-blue);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}


/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: var(--brand-primary);
  letter-spacing: .01em;
  font-weight: 700;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--brand-primary);
  letter-spacing: .01em;
  margin-bottom: 22px;
  font-weight: 600;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--text-subtle);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 25px;
  letter-spacing:0.02em;
}
p {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: var(--brand-primary);
}

/* BUTTONS */
.cta-button, .mobile-menu button, .cookie-consent-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--brand-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 36px;
  border: none;
  display: inline-block;
  margin-top: 18px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
}
.cta-button:hover, .cta-button:focus {
  background: #b55625;
  box-shadow: 0 3px 16px rgba(209,109,59,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* FOR COOKIE BANNER BUTTONS (multiple) */
.cookie-consent-banner button, .cookie-modal button {
  background: var(--soft-pastel-yellow);
  color: var(--text-main);
  border-radius: var(--radius-md);
  margin-right: 16px;
  padding: 10px 22px;
  box-shadow: var(--shadow-1);
  border: 1px solid #ece4c9;
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.cookie-consent-banner .primary, .cookie-modal .primary {
  background: var(--brand-accent);
  color: #fff;
  border: none;
}
.cookie-consent-banner button:hover, .cookie-modal button:hover {
  background: #fff4d3;
}
.cookie-consent-banner .primary:hover, .cookie-modal .primary:hover {
  background: #b55625;
}

/* HEADER & NAV */
header {
  background: var(--soft-pastel-yellow);
  box-shadow: var(--shadow-card);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  font-size: 1.05rem;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--soft-pastel-lilac);
  color: var(--brand-accent);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 20px;
  z-index: 1060;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  border-radius: var(--radius-lg);
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px rgba(34,49,70,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--brand-accent);
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--soft-pastel-blue);
  box-shadow: 0 10px 60px 10px rgba(34,49,70,0.16);
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.83,.04,.27,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.62rem;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 16px 26px 8px 0;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #b55625;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 22px 40px 0 40px;
  margin-top: 24px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  width: 100%;
  padding: 11px 4px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.15s, color 0.16s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--soft-pastel-lilac);
  color: var(--brand-accent);
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    display: none;
  }
}

/* SECTION STYLES & FLEXBOX CONTAINERS */
section {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  margin-bottom: 60px;
  padding: 40px 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 28px 10px;
    margin-bottom: 36px;
    border-radius: var(--radius-md);
  }
}

.card-container, .card-grid, .feature-grid, .category-grid, .new-items-grid, .team-highlights, .support-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .feature-grid > div, .category-grid > div, .new-items-grid > div, .team-highlights > div, .support-features-grid > div {
  flex: 1 1 230px;
  min-width: 210px;
  background: var(--soft-pastel-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 26px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover, .category-grid > div:hover, .team-highlights > div:hover, .support-features-grid > div:hover, .new-items-grid > div:hover {
  box-shadow: 0 5px 24px rgba(34,49,70,0.11);
  transform: translateY(-3px) scale(1.018);
}
@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .category-grid, .new-items-grid, .team-highlights, .support-features-grid {
    gap: 16px;
    flex-direction: column;
  }
  .card, .feature-grid > div, .category-grid > div, .team-highlights > div, .support-features-grid > div, .new-items-grid > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--soft-pastel-pink);
  border-radius: var(--radius-md);
  padding: 20px 34px 20px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  max-width: 540px;
  color: var(--text-main);
  font-size: 1.06rem;
  transition: box-shadow 0.14s, background 0.14s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--brand-primary);
  margin-bottom: 7px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover {
  background: #fff4fa;
  box-shadow: 0 3px 22px rgba(145,64,104,0.09);
}
@media (max-width: 600px) {
  .testimonial-card {
    max-width: 100%;
    padding: 17px 12px;
  }
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 650px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

.service-list, .benefits-list, .step-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 18px;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid #ececec;
}
.step-list img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

/* TAGS & MARKERS */
.tag-new, .tag-editors, .tag-limited {
  font-size: .84em;
  background: var(--soft-pastel-green);
  color: var(--brand-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 9px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag-editors {
  background: var(--soft-pastel-blue);
  color: #3d64a5;
}
.tag-limited {
  background: var(--soft-pastel-pink);
  color: #ca2a95;
}

/* FOOTER */
footer {
  background: var(--soft-pastel-pink);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding-top: 32px;
  padding-bottom: 24px;
  margin-top: 60px;
  box-shadow: 0 -6px 36px -14px rgba(34,49,70,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-logo img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 0.99rem;
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--soft-pastel-yellow);
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .98rem;
  color: var(--text-subtle);
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 2px;
}
.footer-contact a {
  color: var(--brand-accent);
  text-decoration: underline dashed;
}

@media (max-width:700px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1200;
  width: 100vw;
  background: var(--soft-pastel-yellow);
  box-shadow: 0 -2px 16px rgba(209,109,59,0.12);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 20px 18px;
  font-size: 1rem;
  color: var(--text-main);
  border-top: 2px solid #ffe7bf;
  transition: transform 0.34s cubic-bezier(.85,.01,.13,1.09);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 9px;
    gap: 10px;
    font-size: 0.95rem;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37, 53, 66, 0.16);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, visibility 0.23s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--soft-pastel-blue);
  border-radius: var(--radius-lg);
  max-width: 375px;
  width: 93vw;
  box-shadow: var(--shadow-card);
  padding: 38px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  position: relative;
  animation: cookiePopupAnim 0.34s;
}
@keyframes cookiePopupAnim {
  0% { opacity: 0; transform: scale(0.94) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-weight: 600;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.01rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #eee;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
  border: 1px solid #dadada;
}
.cookie-toggle.active {
  background: var(--brand-accent);
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(.82,.06,.25,.99);
  box-shadow: 0 .5px 3px rgba(0,0,0,0.09);
}
.cookie-toggle.active .cookie-toggle-slider {
  left: 17px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  color: var(--brand-accent);
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
}

@media (max-width:400px) {
  .cookie-modal-content {
    padding: 17px 7px 16px 7px;
  }
}

/* ANIMATIONS, MICRO-INTERACTIONS, TRANSITIONS */
.card, .feature-grid > div, .category-grid > div, .team-highlights > div, .support-features-grid > div {
  transition: box-shadow 0.14s, transform 0.14s;
}
a, .cta-button, button, .main-nav a, .mobile-nav a {
  transition: background 0.13s, color 0.13s, box-shadow 0.19s, transform 0.13s;
}

/* FOCUS & ACCESSIBILITY */
:focus {
  outline: 2.5px dashed var(--focus-blue);
  outline-offset: 2.5px;
}
::-webkit-input-placeholder { color: #8b9eb7; font-style: italic; }
:-moz-placeholder { color: #8b9eb7; font-style: italic; }
::-moz-placeholder { color: #8b9eb7; font-style: italic; }
:-ms-input-placeholder { color: #8b9eb7; font-style: italic; }

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }

/* RESPONSIVE DESIGN */
@media (max-width: 940px) {
  .container { max-width: 98%; }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.25rem; }
}

/* === END OF STYLE CSS === */
