@font-face {
  font-family: "Quicksand";
  src: url(../fonts/Quicksand-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Fredoka";
  src: url(../fonts/Fredoka-VariableFont_wdth\,wght.ttf);
  font-display: swap;
}

:root {
  --color-bg: #fdf8f5;
  --color-surface: #ffffff;
  --color-primary: #e07a5f;
  --color-primary-light: #f2cc8f;
  --color-secondary: #3d405b;
  --color-accent: #81b29a;
  --color-text: #2b2d42;
  --color-text-light: #6c757d;
  --color-border: #f4e4d4;
  --color-muted: #b0a8a0;
  --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Fredoka', cursive;
  --shadow-soft: 0 15px 30px -10px rgba(0,0,0,0.05);
  --shadow-hover: 0 25px 40px -12px rgba(0,0,0,0.1);
  --radius-card: 24px;
  --radius-element: 40px;
  --section-gap: clamp(40px, 6vw, 64px);
  --container-padding: clamp(16px, 5vw, 48px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  opacity: 1;
  transition: opacity 0.2s;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: left;
}

.section-title span {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-primary-light);
  opacity: 0.5;
  z-index: -1;
  border-radius: 4px;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.2rem;
  border-radius: var(--radius-element);
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background: transparent;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(224,122,95,0.3);
}

.btn--primary:hover {
  background: #d06a4f;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(224,122,95,0.4);
}

.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn--text {
  color: var(--color-secondary);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
}

.btn--text:hover {
  color: var(--color-primary);
}

.header {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(224,122,95,0.1);
  padding: 0.75rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--color-secondary);
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__link {
  font-weight: 600;
  transition: color 0.2s;
  font-size: 1.1rem;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.nav__toggle-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-secondary);
  margin: 5px 0;
  transition: 0.2s;
  border-radius: 3px;
}

.header__notice {
  font-size: 0.75rem;
  color: var(--color-muted);
  background: rgba(255,255,255,0.7);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  font-weight: 500;
}

.hero {
  padding: calc(var(--section-gap) / 2) 0 var(--section-gap);
}

.hero--playful {
  background: radial-gradient(circle at 20% 30%, #fff3e6 0%, var(--color-bg) 70%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__title-accent {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--color-primary-light);
  opacity: 0.6;
  z-index: -1;
  border-radius: 6px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero__media {
  position: relative;
}

.hero__image-wrapper {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff5e6;
  animation: blob 12s infinite alternate;
}

@keyframes blob {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.categories {
  padding: var(--section-gap) 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  border: 1px solid var(--color-border);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.category-card__image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fce8d9;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.category-card__desc {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.category-card__price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}

.story-mission {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-radius: 80px 80px 0 0;
}

.story-mission__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-mission__image img {
  border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.story-block p {
  font-size: 1.1rem;
  margin: 1.5rem 0;
  color: var(--color-text-light);
}

.story-block__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.story-block__badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  color: var(--color-secondary);
}

.values-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
}

.values-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.values-list i {
  color: var(--color-accent);
}

.featured-products {
  padding: var(--section-gap) 0;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
  position: relative;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-accent);
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.product-card__image {
  height: 180px;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: #fbf3e8;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.product-card__desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0.5rem 0 1.2rem;
}

.product-card__btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.testimonials {
  padding: var(--section-gap) 0;
  background: #f3ebe4;
  border-radius: 80px;
  margin: 1rem 0;
}

.testimonials__slider {
  padding: 1rem 0.5rem 3.5rem;
}

.testimonial {
  background: var(--color-surface);
  padding: 2.2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  height: auto;
}

.testimonial__stars {
  color: #f4b942;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--color-text);
}

.testimonial__author strong {
  display: block;
  color: var(--color-secondary);
}

.testimonial__author span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.order-form {
  padding: var(--section-gap) 0;
}

.order-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.order-form__info img {
  border-radius: 20px;
  margin-top: 1.5rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.order-form__perks {
  display: flex;
  gap: 1.5rem;
  margin: 1.8rem 0;
  flex-wrap: wrap;
}

.order-form__perks div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--color-border);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  background: white;
}

.form__group input:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(224,122,95,0.15);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form__group--checkbox input {
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
}

.form__group--checkbox label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.form__submit {
  width: 100%;
  justify-content: center;
}

.form__note {
  text-align: center;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.faq {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-radius: 60px;
  margin-bottom: 1rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.faq__question {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.faq__answer {
  color: var(--color-text-light);
}

.footer {
  background: var(--color-secondary);
  color: #f0eae6;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  border-radius: 60px 60px 0 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__logo a {
  color: white;
}

.footer__slogan {
  margin-top: 1rem;
  opacity: 0.9;
  font-style: italic;
}

.footer__label {
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
}

.footer__address {
  font-style: normal;
  line-height: 1.7;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer__legal-links {
  list-style: none;
}

.footer__legal-links li {
  margin-bottom: 0.6rem;
}

.footer__legal-links a {
  color: #f0eae6;
  opacity: 0.9;
  transition: opacity 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.footer__legal-links a:hover {
  opacity: 1;
  color: white;
}

.footer__disclaimer {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
  color: #ddd2ca;
}

.footer__copyright {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__container {
    flex-wrap: wrap;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    gap: 1.5rem;
    border-radius: 0 0 30px 30px;
  }
  .nav__menu.active {
    display: flex;
  }
  .nav__toggle {
    display: block;
  }
  .header__notice {
    order: 3;
    width: 100%;
    margin-top: 0.8rem;
    text-align: center;
  }
  .hero__container,
  .story-mission__container,
  .order-form__wrapper {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
  .categories__grid {
    grid-template-columns: 1fr;
  }
  .featured__grid {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer {
    border-radius: 40px 40px 0 0;
  }
  .section-title {
    text-align: center;
  }
  .btn {
    padding: 0.8rem 1.8rem;
  }
  .order-form__wrapper {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}
.legal-page {
  padding: 50px 0;
}
.legal-page h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.thanks {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.thanks__content {
  max-width: 600px;
}
.thanks__logo {
  margin-bottom: 2rem;
}
.thanks__logo img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.thanks h1 {
  margin-bottom: 1rem;
}
.thanks p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}
.thanks .btn {
  margin-top: 1rem;
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}