@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  font-size: 14px;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
.top-banner__left {
  background: #005a57;
  color: #fff;
  padding: 8px 16px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.top-banner__left a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}
.top-banner__left a:hover {
  text-decoration: underline;
}
.top-banner__right {
  font-weight: 500;
  color: #111;
}
.top-banner__right strong {
  color: #7a002a;
}
@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .top-banner__left {
    border-radius: 8px;
  }
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
}
.main-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-header__logo img {
  height: 100px;
  border-radius: 20px;
}
.main-header__logo {
  border-radius: 20px;
}
.main-header__nav {
  display: flex;
  gap: 24px;
}
.main-header__nav a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.main-header__nav a:hover {
  color: #7a002a;
}
@media (max-width: 768px) {
  .main-header__nav {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}
.main-header__button {
  padding: 8px 20px;
  background: #7a002a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.main-header__button:hover {
  background: #a6003c;
}
@media (max-width: 768px) {
  .main-header__button {
    margin-top: 12px;
  }
}

.hero {
  background: #fff;
  padding: 40px 20px;
}
.hero__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.hero__image {
  flex: 1 1 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.hero__content {
  flex: 1 1 50%;
  background: #701c2d;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.hero__content .hero__label {
  color: #ffd700;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.hero__content .hero__subtitle {
  font-size: 20px;
  font-style: italic;
}
.hero__content .hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #ffd700;
}
.hero__content .hero__note {
  font-size: 14px;
  color: #fdd;
}
@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
  }
  .hero__content, .hero__image {
    flex: 1 1 100%;
  }
  .hero__content {
    padding: 30px 20px;
    text-align: center;
  }
}

.categories {
  background: #fafafa;
  padding: 40px 20px;
}
.categories__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-items: center;
}
.categories .category {
  background: #fff;
  border: 2px solid #004d40;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  width: 100px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.categories .category img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.categories .category span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.categories .category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #00796b;
}

.product-categories {
  padding: 50px 20px;
  background: #fff;
}
.product-categories__header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-categories__header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.product-categories__header .arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #eee;
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.2s;
}
.product-categories__header .arrow:hover {
  background: #ddd;
}
.product-categories__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.category-card {
  background: #f9f9f9;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.category-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 15px;
  margin-bottom: 5px;
  color: #111;
}
.category-card .btn {
  margin: 0 15px 15px;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 14px;
  border: 1px solid #000;
  background: transparent;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  transition: all 0.2s;
}
.category-card .btn:hover {
  background: #000;
  color: #fff;
}

.news-offers {
  padding: 60px 20px;
  background: #fff;
}
.news-offers__header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-offers__header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.news-offers__header__all {
  font-size: 14px;
  padding: 8px 16px;
  background: #f3f3f3;
  border-radius: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.news-offers__header__all:hover {
  background: #e0e0e0;
}
.news-offers__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.news-card--red {
  background: #720b2b;
}
.news-card--green {
  background: #005a57;
}
.news-card__text h3 {
  font-size: 20px;
  font-weight: 700;
}
.news-card__text h3 span {
  display: inline-block;
  font-weight: 400;
  color: #ffc107;
}
.news-card__text p {
  margin-top: 10px;
  font-size: 14px;
}
.news-card__text .news-card__btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.news-card__text .news-card__btn:hover {
  background: #ddd;
}
.news-card img {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .news-card {
    flex-direction: row;
    align-items: center;
  }
  .news-card img {
    width: 50%;
    margin-top: 0;
    margin-left: 20px;
  }
  .news-card__text {
    width: 50%;
  }
}

.new-products {
  padding: 60px 20px;
  background: #fefefe;
}
.new-products__header {
  max-width: 1200px;
  margin: 0 auto 30px;
}
.new-products__header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.new-products__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.product-card .favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
}
.product-card .favorite:hover {
  color: #e60023;
}
.product-card img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #00695c;
  margin-bottom: 15px;
}
.product-card .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid #00695c;
  background: transparent;
  color: #00695c;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.product-card .btn:hover {
  background: #00695c;
  color: #fff;
}

.blog-section {
  padding: 60px 20px;
  background: #fff;
}
.blog-section__header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-section__header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
.blog-section__header__view-all {
  font-size: 14px;
  padding: 8px 16px;
  background: #f3f3f3;
  border-radius: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.blog-section__header__view-all:hover {
  background: #e0e0e0;
}
.blog-section__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}
.blog-card .tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}
.blog-card .tag--pink {
  background: #fff0f5;
  color: #c2185b;
  border: 1px solid #c2185b;
}
.blog-card .tag--blue {
  background: #e0f7fa;
  color: #00796b;
  border: 1px solid #00796b;
}
.blog-card .date {
  font-style: italic;
  color: #999;
}
.blog-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.event-block {
  background: #7a002a;
  padding: 60px 20px;
  color: #fff;
}
.event-block__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.event-block__content {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.event-block__content h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}
.event-block__content h2 strong {
  color: #ffd700;
}
.event-block__content p {
  font-size: 16px;
  line-height: 1.6;
  color: #f8f8f8;
}
.event-block__btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  transition: all 0.2s;
}
.event-block__btn:hover {
  background: #ffd700;
  color: #7a002a;
}
.event-block__logo {
  margin-top: 30px;
}
.event-block__logo img {
  height: 40px;
}
.event-block__image {
  flex: 1 1 50%;
}
.event-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .event-block__container {
    flex-direction: column;
  }
  .event-block__content, .event-block__image {
    flex: 1 1 100%;
  }
  .event-block__content {
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }
}

.footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 30px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer__brand img {
  width: 100px;
  margin-bottom: 12px;
  border-radius: 20px;
}
.footer__brand p {
  font-size: 14px;
  color: #ccc;
}
.footer__links h4, .footer__contact h4, .footer__social h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #fff;
}
.footer__links ul, .footer__contact ul, .footer__social ul {
  list-style: none;
  padding: 0;
}
.footer__links ul li, .footer__contact ul li, .footer__social ul li {
  margin-bottom: 6px;
  font-size: 14px;
}
.footer__links ul li a, .footer__contact ul li a, .footer__social ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer__links ul li a:hover, .footer__contact ul li a:hover, .footer__social ul li a:hover {
  color: #fff;
}
.footer__icons {
  display: flex;
  gap: 10px;
}
.footer__icons a img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: 0.2s;
}
.footer__icons a img:hover {
  opacity: 1;
}
.footer__bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer__bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 20px;
}
.footer__bottom a {
  color: #aaa;
  margin-left: 10px;
  text-decoration: none;
}
.footer__bottom a:hover {
  color: #fff;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about-intro {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
}
.about-intro__container {
  max-width: 800px;
  margin: 0 auto;
}
.about-intro__container h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}
.about-intro__container p {
  font-size: 16px;
  margin-top: 10px;
  color: #555;
}

.about-mission {
  background: #fff;
  padding: 60px 20px;
}
.about-mission__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-mission__container h2 {
  font-size: 24px;
  color: #00695c;
}
.about-mission__container p {
  margin-top: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.about-values {
  background: #f9f9f9;
  padding: 60px 20px;
}
.about-values__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-values__container h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #00695c;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.about-values .value-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
}
.about-values .value-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #7a002a;
}
.about-values .value-box p {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.about-stats {
  background: #fff;
  padding: 60px 20px;
}
.about-stats__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px;
}
.about-stats .stat h3 {
  font-size: 36px;
  color: #111;
}
.about-stats .stat p {
  font-size: 14px;
  color: #666;
}

.products-page {
  padding: 60px 20px;
  background: #fff;
}
.products-page__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
}
.products-page__header h1 {
  font-size: 32px;
  color: #111;
  font-weight: 700;
}
.products-page__header p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}
.products-page__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.product-card .price {
  font-size: 17px;
  font-weight: 700;
  color: #00695c;
  margin-bottom: 12px;
}
.product-card .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00695c;
  background: transparent;
  color: #00695c;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.product-card .btn:hover {
  background: #00695c;
  color: #fff;
}

.product-info {
  background: #f7f7f7;
  padding: 60px 20px;
}
.product-info__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.product-info__container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}
.product-info__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.product-info .info-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s;
}
.product-info .info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.product-info .info-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #00695c;
  margin-bottom: 10px;
}
.product-info .info-box p {
  font-size: 14px;
  color: #555;
}

.privacy-page {
  padding: 60px 20px;
  background: #fefefe;
}
.privacy-page__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-page .privacy__container__title {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: #111;
  border-left: 4px solid #7a002a;
  padding-left: 12px;
}
.privacy-page .privacy__container__text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
.privacy-page h1.privacy__container__title {
  font-size: 30px;
  margin-top: 0;
  padding-left: 0;
  border-left: none;
  color: #7a002a;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
}
.cookie-banner__text {
  font-size: 14px;
  color: #333;
  flex: 1;
}
.cookie-banner__text a {
  color: #7a002a;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #a6003c;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner .cookie-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner .cookie-btn--secondary {
  background: #f5f5f5;
  color: #333;
}
.cookie-banner .cookie-btn--secondary:hover {
  background: #e0e0e0;
}
.cookie-banner .cookie-btn:not(.cookie-banner .cookie-btn--secondary) {
  background: #7a002a;
  color: #fff;
}
.cookie-banner .cookie-btn:not(.cookie-banner .cookie-btn--secondary):hover {
  background: #99003f;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
}

.contact-page {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}
.contact-page__container {
  max-width: 600px;
  margin: 0 auto;
}
.contact-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.contact-page p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}
.contact-page .contact-info {
  text-align: left;
  margin-bottom: 40px;
}
.contact-page .contact-info div {
  margin-bottom: 10px;
  font-size: 14px;
}
.contact-page .contact-info strong {
  color: #7a002a;
}
.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.contact-page .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-page .contact-form button {
  padding: 12px;
  background: #7a002a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-page .contact-form button:hover {
  background: #99003f;
}
.contact-page .popup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #00695c;
  color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-size: 14px;
  animation: fade 0.4s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coffee-story {
  padding: 80px 20px;
  background: #fff;
}
.coffee-story__content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.coffee-story__text {
  flex: 1;
}
.coffee-story__text h2 {
  font-size: 28px;
  color: #7a002a;
  margin-bottom: 16px;
}
.coffee-story__text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}
.coffee-story__image {
  flex: 1;
}
.coffee-story__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.philosophy {
  background: #f6f1ed;
  padding: 100px 20px;
}
.philosophy__container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.philosophy h2 {
  font-size: 30px;
  color: #7a002a;
  margin-bottom: 20px;
}
.philosophy__lead {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
}
.philosophy p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.values {
  padding: 100px 20px;
  background-color: #f8f5f2;
}
.values__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.values__container h2 {
  font-size: 30px;
  color: #7a002a;
  margin-bottom: 30px;
}
.values__container .values__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.values__container .values__list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}
.values__container .values__list li strong {
  color: #7a002a;
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Sora";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

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