/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/main.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fff;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: #9d173c;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff278d;
}

.site-header {
  background-color: #FFBCBE;
}

.site-header__top {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .site-header__top {
    padding: 0.5rem 0.75rem 0;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
    display: none;
  }
}

.site-header__inner {
  max-width: 320px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .site-header__inner {
    max-width: 280px;
    padding: 0.75rem 0.75rem 1.5rem;
  }
}

.site-logo img {
  margin: 0 auto;
}

.site-header__hours {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #5c2035;
  text-align: right;
}

@media (max-width: 767px) {
  .site-header__hours {
    font-size: 0.6875rem;
    line-height: 1.35;
    flex: 1 1 40%;
    min-width: 0;
  }
}

.site-header__hours p {
  margin: 0;
}

.socials-list.socials-list--header {
  justify-content: flex-start;
  gap: 0rem;
}

.site-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

@media (max-width: 767px) {
  .site-main {
    padding: 0 0.75rem 2rem;
  }
}

.site-footer {
  padding: 2rem 1rem;
  background: #f5f5f5;
  text-align: center;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 1.5rem 0.75rem;
  }
}

.site-footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .site-footer__inner {
    gap: 1.25rem;
  }
}

.socials-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .socials-list {
    gap: 0.625rem;
    flex-wrap: wrap;
  }
}

.socials-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffbcbe;
  color: #9d173c;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (max-width: 767px) {
  .socials-list__link {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.socials-list__link:hover {
  background: #ff278d;
  color: #fff;
}

.socials-list__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

@media (max-width: 767px) {
  .socials-list__icon {
    width: 1rem;
    height: 1rem;
  }
}

.site-footer__copyright {
  font-size: 0.875rem;
  color: #666;
}

@media (max-width: 767px) {
  .site-footer__copyright {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.promo-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 900;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

@media (max-width: 767px) {
  .promo-banner {
    max-width: 85vw;
  }
}

.promo-banner.is-visible {
  transform: translateX(0);
  pointer-events: auto;
}

.promo-banner__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 50%;
  background: #9d173c;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(157, 23, 60, 0.25);
}

@media (max-width: 767px) {
  .promo-banner__close {
    top: 0.375rem;
    right: 0.375rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
}

.promo-banner__close:hover {
  background: #ff278d;
}

.promo-banner__image-wrap {
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(157, 23, 60, 0.2);
}

@media (max-width: 767px) {
  .promo-banner__image-wrap {
    box-shadow: 0 4px 20px rgba(157, 23, 60, 0.2);
  }
}

.promo-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

/*# sourceMappingURL=main.css.map*/