:root {
  --color-bg: #f5fbff;
  --color-surface: #ffffff;
  --color-text: #14324a;
  --color-muted: #5f7c93;
  --color-accent: #2f8cbf;
  --color-border: #cfe3ef;
  --color-accent-soft: #dff2fb;
  --color-deep: #0f4f73;
  --radius: 20px;
  --container-max: 1240px;
  --section-space: 88px;
  --shadow-strong: 0 18px 50px rgba(25, 73, 104, 0.14);
  --shadow-soft: 0 10px 24px rgba(25, 73, 104, 0.08);
  --button-outline-width: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #f7fcff 0%, #eef8fd 100%);
  color: var(--color-text);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

img,
iframe,
video {
  width: 100%;
  height: auto;
  display: block;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

a {
  color: inherit;
}

.container,
.container-fluid,
.container-lg,
.container-xl {
  max-width: var(--container-max);
}

.site-section {
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-subheading {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--color-muted);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--color-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-surface {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.button,
.btn,
button,
input[type="submit"] {
  border-radius: 999px;
}

.button-primary,
.btn-primary {
  padding: 0.9rem 1.4rem;
  border: var(--button-outline-width) solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.button-primary:hover,
.btn-primary:hover,
.button-primary:focus,
.btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.button-secondary,
.btn-outline-secondary {
  padding: 0.9rem 1.4rem;
  border: var(--button-outline-width) solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.96);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(47, 140, 191, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 251, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207, 227, 239, 0.85);
}

.site-header a,
.site-header a:link,
.site-header a:visited,
.site-header a:hover,
.site-header a:focus,
.site-header .nav-link,
.site-footer a {
  color: var(--color-text);
  text-decoration: none;
}

.site-header a:hover,
.site-header a:focus,
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-footer a:hover,
.site-footer a:focus {
  color: var(--color-accent);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
}

.site-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #8fd3f4 0%, #2f8cbf 100%);
  color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.site-header__nav .nav-link {
  font-weight: 700;
}

.site-header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-header__mobile-actions {
  padding-top: 1rem;
  display: grid;
  gap: 12px;
}

.announcement-bar {
  padding: 12px 0;
  background: linear-gradient(90deg, #0f4f73 0%, #2f8cbf 50%, #56b8dc 100%);
  color: #ffffff;
}

.announcement-bar__slide {
  text-align: center;
  font-weight: 700;
}

.text-with-image__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border);
}

.text-with-image__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.promo-banner__inner,
.newsletter__inner,
.contact-form__panel,
.map-section__frame,
.store-map__card,
.faq__item,
.testimonial-card,
.trusted-by__item,
.product-card,
.collection-hero,
.page-card,
.cart-panel,
.account-card,
.order-card,
.search-panel,
.not-found-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.promo-banner__inner,
.newsletter__inner {
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(143, 211, 244, 0.3), rgba(255, 255, 255, 0.96));
}

.trusted-by__grid,
.testimonials__grid,
.instagram-feed__grid,
.collection-grid,
.product-grid,
.footer-menu-grid,
.account-grid {
  display: grid;
  gap: 24px;
}

.trusted-by__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trusted-by__item {
  padding: 22px;
  text-align: center;
  font-weight: 800;
  color: var(--color-deep);
}

.instagram-feed__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.instagram-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.instagram-card__media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.instagram-card__body {
  padding: 18px;
}

.map-embed,
.store-map__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}

.map-embed iframe,
.store-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq__list {
  display: grid;
  gap: 18px;
}

.faq__item {
  padding: 24px;
}

.faq__item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.testimonials__grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card__stars {
  margin-bottom: 14px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
}

.site-footer {
  margin-top: 40px;
  padding: 72px 0 28px;
  background: #eaf6fc;
  border-top: 1px solid var(--color-border);
}

.footer-menu-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.product-card {
  overflow: hidden;
}

.product-card__media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card__body {
  padding: 20px;
}

.product-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-card__description {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.collection-grid,
.product-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.cart-line,
.order-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-line:last-child,
.order-line:last-child {
  border-bottom: 0;
}

.cart-summary,
.order-summary {
  padding: 24px;
  border-radius: 20px;
  background: rgba(223, 242, 251, 0.55);
  border: 1px solid var(--color-border);
}

.table thead th {
  color: var(--color-muted);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-empty,
.empty-state {
  padding: 44px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .trusted-by__grid,
  .instagram-feed__grid,
  .testimonials__grid,
  .collection-grid,
  .product-grid,
  .footer-menu-grid,
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .trusted-by__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .instagram-feed__grid,
  .testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-menu-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  }

  .account-grid {
    grid-template-columns: 1fr 1fr;
  }
}
