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

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

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

/* CSS Variables - tylko globalne */
:root {
  /* Brand colors */
  --color-primary: #6b8a1e;
  --color-secondary: #de6011;
  --color-black: #262626;
  --color-gray-dark: #3d3d3d;
  --color-gray-medium: #4f4f4f;
  --color-gray: #6d6d6d;
  --color-gray-light: #b0b0b0;
  --color-gray-lighter: #e7e7e7;
  --color-gray-lightest: #f6f6f6;
  --color-white: #ffffff;
  --color-yellow: #ff0;
  --color-green-bg: #f8faee;
  --color-green-border: #e5ebc5;
  /* Fonts */
  --font-main: "Roboto", sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.5;
}

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

/* Navbar */
.navbar {
  width: 100%;
  border-bottom: 1px solid var(--color-gray-lighter);
}
.navbar__social-bar {
  background-color: var(--color-black);
  width: 100%;
  padding: 4px 8px;
}
@media (min-width: 769px) {
  .navbar__social-bar {
    padding: 4px 16px;
  }
}
.navbar__social-container {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1248px;
  margin: 0 auto;
  padding: 4px 16px;
}
.navbar__social-link {
  display: block;
  width: 24px;
  height: 24px;
}
.navbar__social-icon {
  width: 100%;
  height: 100%;
}
.navbar__logo-section {
  background-image: url("../img/navbar-bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}
.navbar__logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1248px;
  margin: 0 auto;
  padding: 4px 16px;
  gap: 16px;
}
@media (min-width: 769px) {
  .navbar__logo-container {
    padding: 16px 24px;
  }
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.navbar__logo-icon {
  width: 28px;
  height: 56px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .navbar__logo-icon {
    width: 40px;
    height: 80px;
  }
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.navbar__logo-primary {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .navbar__logo-primary {
    font-size: 48px;
  }
}
.navbar__logo-secondary {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 8.4px;
}
@media (min-width: 769px) {
  .navbar__logo-secondary {
    font-size: 28px;
  }
}
.navbar__menu-section {
  display: none;
  background-color: var(--color-white);
  width: 100%;
  border-top: 1px solid var(--color-gray-lighter);
}
@media (min-width: 769px) {
  .navbar__menu-section {
    display: block;
  }
}
.navbar__menu-section.active {
  display: block;
}
.navbar__menu {
  display: flex;
  flex-direction: column;
  max-width: 1248px;
  margin: 0 auto;
  padding: 16px;
  gap: 16px;
}
@media (min-width: 769px) {
  .navbar__menu {
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
    gap: 24px;
  }
}
.navbar__menu-link {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
@media (min-width: 992px) {
  .navbar__menu-link {
    font-size: 16px;
  }
  .navbar__menu-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #b0b0b0;
  }
  .navbar__menu-link:last-child::after {
    display: none;
  }
}
.navbar__menu-link:hover {
  color: var(--color-primary);
}
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.67px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4.67px 3.33px;
}
@media (min-width: 769px) {
  .navbar__hamburger {
    display: none;
  }
}
.navbar__hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Content */
.main-content {
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1248px;
  margin: 0 auto;
  padding: 24px 16px;
  gap: 16px;
}
@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 24px;
    gap: 24px;
  }
}

/* Article */
.article {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 12px;
}
@media (min-width: 992px) {
  .article {
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 16px;
  }
}
.article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
  padding: 4px 0;
}
@media (min-width: 769px) {
  .article__meta {
    font-size: 12px;
  }
}
.article__breadcrumb {
  flex: 1;
  color: var(--color-black);
}
.article__date {
  flex-shrink: 0;
  color: var(--color-gray);
  text-align: right;
}
.article__heading-main {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .article__heading-main {
    font-size: 40px;
  }
}
.article__heading-accent-green {
  color: var(--color-primary);
}
.article__heading-accent-orange {
  color: var(--color-secondary);
}
.article__heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .article__heading {
    font-size: 28px;
  }
}
.article__image-hero, .article__image {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.article__image-wrapper {
  width: 100%;
  aspect-ratio: 816/480;
  position: relative;
}
.article__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__image-caption {
  background-color: var(--color-gray-lightest);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 769px) {
  .article__image-caption {
    padding: 16px;
    gap: 8px;
  }
}
.article__image-caption p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .article__image-caption p {
    font-size: 16px;
  }
}
.article__image-caption p strong {
  font-weight: 700;
}
.article__image-source {
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}
.article__text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .article__text {
    font-size: 18px;
  }
}
.article__text p {
  margin-bottom: 18px;
}
.article__text p:last-child {
  margin-bottom: 0;
}
.article__text p strong {
  font-weight: 700;
}
.article__text p em {
  font-style: italic;
  color: var(--color-gray-medium);
}
.article__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
}
@media (min-width: 769px) {
  .article__list {
    padding-right: 24px;
  }
}
.article__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 280px;
}
.article__list-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.article__list-text {
  flex: 1;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .article__list-text {
    font-size: 18px;
  }
}
.article__list-text strong {
  font-weight: 700;
}
.article__text-highlight {
  color: #6b8a1e;
}
.article__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}
.article__cta-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  color: #2d47eb;
  text-decoration: underline;
  text-align: center;
  transition: color 0.2s ease;
}
@media (min-width: 769px) {
  .article__cta-link {
    font-size: 36px;
  }
}
.article__cta-link:hover {
  color: #1d31ae;
}

/* Testimonial Slider */
.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
  width: 100%;
}
.testimonial-slider__arrow {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.3s ease;
}
.testimonial-slider__arrow:hover {
  opacity: 0.7;
}
.testimonial-slider__arrow img {
  width: 100%;
  height: 100%;
}
.testimonial-slider__arrow--right img {
  transform: scaleX(-1);
}
.testimonial-slider__track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.testimonial-slider__content {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.testimonial-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}
.testimonial-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 12px;
  margin-top: 16px;
}
.testimonial-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonial-slider__dot:hover {
  background-color: var(--color-gray);
}
.testimonial-slider__dot--active {
  background-color: var(--color-primary);
}

.testimonial {
  background-color: var(--color-green-bg);
  border: 1px solid var(--color-green-border);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .testimonial {
    flex-direction: row;
    padding: 24px;
  }
}
.testimonial__person {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  max-width: 140px;
  width: 140px;
}
@media (max-width: 768px) {
  .testimonial__person {
    max-width: 100%;
    width: 100%;
  }
}
.testimonial__photo {
  width: 140px;
  height: 140px;
  max-width: 280px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--color-gray-light);
  border-radius: 2px;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .testimonial__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.testimonial__name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-black);
}
.testimonial__text-wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--color-primary);
}
.testimonial__text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-gray-dark);
}

/* Aside/Sidebar */
.aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .aside {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
  }
}
.aside__search {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
  border-radius: 48px;
  padding: 8px 12px;
  cursor: pointer;
}
@media (min-width: 769px) {
  .aside__search {
    display: flex;
  }
}
.aside__search-input {
  flex: 1;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  background: none;
  border: none;
  outline: none;
}
.aside__search-input::-moz-placeholder {
  color: var(--color-gray);
}
.aside__search-input::placeholder {
  color: var(--color-gray);
}
.aside__search-button {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.aside__search-button img {
  width: 100%;
  height: 100%;
}
.aside__section {
  background-color: var(--color-white);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside__section--opinions {
  background-color: var(--color-white);
}
.aside__section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}
.aside__section-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
}
.aside__section-divider {
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-lighter);
}
.aside__articles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside__article-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  overflow: hidden;
}
.aside__article-image {
  width: 116px;
  height: 96px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.aside__article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside__article-title {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-black);
}
.aside__article-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-gray-light);
}
.aside__article-icon {
  width: 16px;
  height: 16px;
}
.aside {
  /* Banner */
}
.aside__banner {
  position: relative;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.aside__banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.aside__banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
  z-index: 1;
}
.aside__banner-discount {
  background-color: var(--color-secondary);
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  padding: 4px 8px;
  align-self: flex-start;
}
.aside__banner-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.4);
}
.aside__banner-title--highlight {
  color: yellow;
}
.aside__banner-button-wrapper {
  padding: 16px;
}
.aside__banner-button {
  width: 100%;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-white);
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--color-white);
  padding: 16px 24px;
  cursor: pointer;
  box-shadow: inset 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.aside__banner-button:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.aside {
  /* Opinions */
}
.aside__opinions-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 8px 0;
}
.aside__opinions-heading {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-black);
}
.aside__opinions-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
}
.aside__opinions-list {
  display: none;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  .aside__opinions-list {
    display: flex;
  }
}
.aside__opinions-list-mobile {
  width: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .aside__opinions-list-mobile {
    display: none;
  }
}
.aside__opinions-list-mobile > .aside__opinion-card {
  display: flex;
}
.aside__opinions-list-mobile.is-initialized > .aside__opinion-card {
  display: none;
}
.aside__opinions-list-mobile.is-initialized > .aside__opinion-card.is-active {
  display: flex;
}
.aside__opinions-list-mobile-controls {
  position: absolute;
  left: -8px;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.aside__opinions-list-mobile-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.aside__opinions-list-mobile-arrow img {
  width: 100%;
  height: 100%;
}
.aside__opinions-list-mobile-arrow--right img {
  transform: scaleX(-1);
}
.aside__opinions-list-mobile-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 12px;
  margin-top: 16px;
}
.aside__opinions-list-mobile-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background-color 0.3s ease;
}
.aside__opinions-list-mobile-dot:hover {
  background-color: var(--color-gray);
}
.aside__opinions-list-mobile-dot.is-active {
  background-color: var(--color-primary);
}
.aside__opinion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
}
.aside__opinion-photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.aside__opinion-content {
  background-color: #faf0cf;
  border-radius: 2px;
  padding: 96px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.aside__opinion-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: #967c26;
}
.aside__opinion-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
  text-align: left;
}
.aside__opinion-author {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}
.aside {
  /* Partners */
}
.aside__partners-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside__partner-logo {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.aside {
  /* Banner Greece */
}
.aside__banner-greece {
  display: none;
  position: relative;
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  align-items: flex-end;
}
@media (min-width: 769px) {
  .aside__banner-greece {
    display: flex;
  }
}
.aside__banner-greece-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.aside__banner-greece-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 8px 16px 24px 16px;
}
.aside__banner-greece-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-black);
  text-align: center;
}
.aside__banner-greece-button {
  background-color: var(--color-black);
  border-radius: 2px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-white);
  padding: 8px 32px;
  width: 190px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.aside__banner-greece-button:hover {
  transform: scale(1.05);
}

/* Comments Section */
.comments {
  width: 100%;
  padding: 24px 0;
}
@media (min-width: 769px) {
  .comments {
    padding: 32px 0;
  }
}
.comments__container {
  max-width: 816px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .comments__container {
    padding: 0 24px;
    gap: 16px;
  }
}
.comments__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.comments__heading-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.comments__heading-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .comments__heading-text {
    font-size: 28px;
  }
}
.comments__divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-lighter);
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  .comments__list {
    gap: 24px;
  }
}
.comments__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.comments__cta-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  color: #2d47eb;
  text-decoration: underline;
  text-align: center;
  transition: color 0.3s ease;
}
@media (min-width: 769px) {
  .comments__cta-link {
    font-size: 36px;
  }
}
.comments__cta-link:hover {
  color: #1d31ae;
}
.comments__disclaimer {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray-medium);
}

/* Comment */
.comment {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 4px 0;
}
@media (min-width: 769px) {
  .comment {
    gap: 16px;
    padding: 8px 0;
  }
}
.comment__avatar {
  width: 56px;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.comment__header {
  display: flex;
  align-items: center;
  width: 100%;
}
.comment__meta {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.comment__author {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #3b5998;
}
.comment__date {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  color: #3b5998;
  text-align: right;
}
@media (min-width: 769px) {
  .comment__date {
    font-size: 12px;
  }
}
.comment__text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-medium);
  padding: 4px 0;
}
@media (min-width: 769px) {
  .comment__text {
    font-size: 16px;
  }
}
.comment__photo {
  width: 200px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin: 8px 0;
}
.comment__reply {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: #3b5998;
  border-radius: 2px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  padding: 4px 8px;
  cursor: pointer;
  border: none;
  align-self: flex-end;
  transition: all 0.3s ease;
}
.comment__reply:hover {
  background-color: #2d4373;
}

/* Footer */
.footer {
  background-color: var(--color-black);
  width: 100%;
  padding: 32px 0;
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-gray-lighter);
}
@media (min-width: 769px) {
  .footer__copyright {
    padding: 0 24px;
  }
}
.footer__copyright p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}
.footer__links a {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-white);
  text-decoration: none;
  padding: 4px 0;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 16px;
}
.footer__text b {
  font-weight: 700;
}

/* Summary Page */
.summary {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .summary {
    padding: 24px;
  }
}
.summary__container {
  width: 100%;
  max-width: 696px;
}
.summary__card {
  background-color: #f8faee;
  border: 1px solid #e5ebc5;
  border-radius: 8px;
  overflow: hidden;
}
.summary__header {
  background-color: #e5ebc5;
  padding: 16px 24px 8px;
  text-align: center;
}
.summary__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-black);
  margin: 0;
}
@media (min-width: 769px) {
  .summary__title {
    font-size: 24px;
  }
}
.summary__title-accent {
  color: #de6011;
}
.summary__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.summary__status-wrapper {
  display: flex;
  justify-content: center;
}
.summary__status {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-lighter);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 769px) {
  .summary__status {
    font-size: 16px;
  }
}
.summary__status-label {
  color: var(--color-black);
}
.summary__status-value {
  color: #6b8a1e;
}
.summary__reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.summary__reservation-label {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .summary__reservation-label {
    font-size: 24px;
  }
}
.summary__reservation-number {
  width: 36px;
  height: 36px;
  background-color: #6b8a1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
}
@media (min-width: 769px) {
  .summary__reservation-number {
    font-size: 22px;
  }
}
.summary #phone-number {
  display: none;
}
.summary__product {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.summary__product-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}
@media (min-width: 769px) {
  .summary__product-image-wrapper {
    width: 240px;
    height: 240px;
  }
}
.summary__product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.summary__product-badge {
  position: absolute;
  top: 10px;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ff7722 0%, #e36211 50%, #c84d00 100%);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-white);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.24);
}
@media (min-width: 769px) {
  .summary__product-badge {
    width: 100px;
    height: 100px;
    font-size: 28px;
  }
}
.summary__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.summary__info p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-black);
  margin: 0;
}
@media (min-width: 769px) {
  .summary__info p {
    font-size: 18px;
    text-align: center;
  }
}
.summary__date-highlight {
  color: #de6011;
}
.summary__warning {
  background-color: #e5ebc5;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .summary__warning {
    max-width: 540px;
    margin: 0 auto;
  }
}
.summary__warning-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .summary__warning-icon {
    width: 40px;
    height: 40px;
  }
}
.summary__warning-text {
  flex: 1;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-black);
  margin: 0;
}
@media (min-width: 769px) {
  .summary__warning-text {
    font-size: 18px;
  }
}
.summary__cta-heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-black);
  text-align: center;
  margin: 0;
}
@media (min-width: 769px) {
  .summary__cta-heading {
    font-size: 22px;
  }
}
.summary__cta-accent {
  color: #de6011;
}
.summary__action {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 769px) {
  .summary__action {
    padding: 24px;
  }
}
.summary__button {
  background-color: #de6011;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-white);
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  text-align: center;
}
@media (min-width: 769px) {
  .summary__button {
    font-size: 36px;
    padding: 16px 32px;
  }
}
.summary__button:hover {
  background-color: #6b8a1e;
}
.summary__button-icon {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 34px;
  height: 34px;
}
.summary__contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.summary__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
}
@media (min-width: 769px) {
  .summary__hours {
    font-size: 16px;
  }
}
.summary__hours-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .summary__hours-icon {
    width: 24px;
    height: 24px;
  }
}
.summary__contact-note {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  text-align: center;
  margin: 0;
}
@media (min-width: 769px) {
  .summary__contact-note {
    font-size: 16px;
  }
}
.summary__attention {
  background-color: #e5ebc5;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.summary__attention-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .summary__attention-icon {
    width: 32px;
    height: 32px;
  }
}
.summary__attention-text {
  flex: 1;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-black);
  margin: 0;
}
@media (min-width: 769px) {
  .summary__attention-text {
    font-size: 16px;
  }
}
.summary__attention-text strong {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */