/* ============================================
   Buffalo Burger - CSS Stylesheet
   ============================================ */

/* CSS Reset & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Color Palette */
:root {
  --color-bg-dark: #121212;
  --color-bg-card: #1a1a1a;
  --color-text: #ffffff;
  --color-accent: #ff9f00;
  --color-accent-hover: #e68a00;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.header {
  background-color: linear-gradient(135deg, #0d0d0d 50%, #ff5c00 50%);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 159, 0, 0.1);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  flex-shrink: 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.logo:hover .logo__text {
  color: var(--color-accent-hover);
}

.header__nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

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

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 0, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0d0d0d 50%, #ff5c00 50%);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__title::first-letter {
  color: var(--color-accent);
}

.hero__description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 500px;
}

.hero__cta {
  align-self: flex-start;
}

.button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.button--primary {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 15px rgba(255, 159, 0, 0.3);
}

.button--primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 159, 0, 0.4);
}

.button--primary:active {
  transform: translateY(-1px);
}

.hero__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

}

.hero__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(255, 159, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu {
  background-color: #ff5c00;
  padding: 5rem 2rem;
}

.menu__container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu__title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.menu__title::first-letter {
  color: var(--color-accent);
}

.menu__subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ============================================
   BURGER CARD STYLES
   ============================================ */

.burger-card {
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 159, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.burger-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(255, 159, 0, 0.2);
}

.burger-card__image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.burger-card:hover .burger-card__image {
  transform: scale(1.1);
}

.burger-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.burger-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.burger-card__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1;
  line-height: 1.6;
}

.burger-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    gap: 2rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .nav__list {
    gap: 1.5rem;
  }

  .header__container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .menu__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .nav__list {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .menu__title {
    font-size: 2rem;
  }

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

  .hero__container {
    padding: 2rem 1rem;
  }
}

/* ============================================
    OFFERS SECTION
    ============================================ */

.offers {
  background-color: #ff5c00;
  padding: 5rem 2rem;
  min-height: 100vh;
}

.offers__container {
  max-width: 1200px;
  margin: 0 auto;
}

.offers__title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.offers__title::first-letter {
  color: var(--color-accent);
}

.offers__subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ============================================
    OFFER CARD STYLES
    ============================================ */

.offer-card {
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 159, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 35px rgba(255, 159, 0, 0.25);
}

.offer-card__image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.offer-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-card__image {
  transform: scale(1.1);
}

.offer-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(255, 159, 0, 0.3);
}

.offer-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.offer-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.offer-card__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex-grow: 1;
}

.offer-card__pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.offer-card__original-price {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.offer-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
}

.offer-card__button {
  width: 100%;
  margin-top: auto;
}

/* ============================================
    BRANCHES HERO SECTION
    ============================================ */

.branches-hero {
  background: linear-gradient(135deg, #0d0d0d 50%, #ff5c00 50%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.branches-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.branches-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.branches-hero__title::first-letter {
  color: var(--color-accent);
}

.branches-hero__description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* ============================================
    BRANCHES SECTION
    ============================================ */

.branches {
  background-color: var(--color-bg-dark);
  padding: 5rem 2rem;
  min-height: 100vh;
}

.branches__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

/* ============================================
    BRANCH CARD STYLES
    ============================================ */

.branch-card {
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 159, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.branch-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(255, 159, 0, 0.2);
}

.branch-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 159, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.branch-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
}

.branch-card__status {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.branch-card__status.online {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.4);
}

.branch-card__status.closed {
  background-color: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.4);
}

.branch-card__body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.branch-card__info-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.branch-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.branch-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.branch-card__link {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.branch-card__link:hover {
  color: var(--color-accent-hover);
}

.branch-card__button {
  width: 100%;
  margin-top: auto;
}

/* ============================================
    CALL TO ACTION SECTION
    ============================================ */

.cta-section {
  background: linear-gradient(135deg, #ff5c00 0%, #ff9f00 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

.cta-section__title::first-letter {
  color: rgba(255, 255, 255, 0.9);
}

.cta-section__description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
    FOOTER SECTION
    ============================================ */

.footer {
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 159, 0, 0.1);
  padding: 2rem 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__content {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ============================================
    ORDER PAGE HERO SECTION
    ============================================ */

.order-hero {
  background: linear-gradient(135deg, #0d0d0d 50%, #ff5c00 50%);
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.order-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.order-hero__title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.order-hero__title::first-letter {
  color: var(--color-accent);
}

.order-hero__description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* ============================================
    ORDER SECTION
    ============================================ */

.order {
  background-color: var(--color-bg-dark);
  padding: 5rem 2rem;
  min-height: 100vh;
}

.order__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ============================================
    CHECKOUT FORM STYLES
    ============================================ */

.checkout-form {
  background-color: var(--color-bg-card);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 159, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.checkout-form__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 159, 0, 0.2);
}

.checkout-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============================================
    FORM GROUP STYLES
    ============================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: capitalize;
}

.form-group__input,
.form-group__textarea,
.form-group__select {
  padding: 0.95rem 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 159, 0, 0.2);
  border-radius: 5px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group__input:focus,
.form-group__textarea:focus,
.form-group__select:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.1);
  transform: translateY(-2px);
}

.form-group__textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
  color: var(--color-accent);
}

.form-group__select option {
  background-color: var(--color-bg-dark);
  color: var(--color-text);
}

/* Fieldset styling */
.form-group--fieldset {
  border: none;
  padding: 0;
}

.form-group__legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

/* ============================================
    RADIO GROUP STYLES
    ============================================ */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-group__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.radio-group__input {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.radio-group__label {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.radio-group__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.radio-group__item:hover .radio-group__label {
  color: var(--color-accent);
}

/* ============================================
    SUBMIT BUTTON VARIATIONS
    ============================================ */

.button--large {
  padding: 1.2rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  width: 100%;
}

.checkout-form__submit {
  margin-top: 1rem;
}

/* ============================================
    ORDER SUMMARY STYLES
    ============================================ */

.order-summary {
  background-color: var(--color-bg-card);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 159, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 100px;
}

.order-summary__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 159, 0, 0.2);
}

.order-summary__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ============================================
    ORDER ITEM STYLES
    ============================================ */

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 159, 0, 0.1);
}

.order-item:last-of-type {
  border-bottom: none;
}

.order-item__details {
  flex-grow: 1;
}

.order-item__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.order-item__description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.order-item__price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.order-item__quantity {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.order-item__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================
    ORDER SUMMARY DIVIDER
    ============================================ */

.order-summary__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 159, 0, 0.3) 50%, transparent 100%);
  margin: 1.5rem 0;
}

/* ============================================
    PRICE BREAKDOWN STYLES
    ============================================ */

.order-summary__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.price-row__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.price-row__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.price-row--total {
  padding: 1rem 0;
  border-top: 2px solid rgba(255, 159, 0, 0.2);
  border-bottom: 2px solid rgba(255, 159, 0, 0.2);
}

.price-row--total .price-row__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.price-row--total .price-row__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
}

/* ============================================
    ORDER SUMMARY NOTE
    ============================================ */

.order-summary__note {
  background-color: rgba(255, 92, 0, 0.1);
  border-left: 3px solid var(--color-accent);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1.5rem;
}

.order-summary__note-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .offers__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .branches__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .branches-hero__title {
    font-size: 2.2rem;
  }

  .cta-section__title {
    font-size: 2rem;
  }

  .order__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-summary {
    position: static;
  }

  .order-hero__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }

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

  .branch-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .branches-hero__title {
    font-size: 1.8rem;
  }

  .cta-section__title {
    font-size: 1.5rem;
  }

  .checkout-form {
    padding: 1.5rem;
  }

  .order-summary {
    padding: 1.5rem;
  }

  .form-group__input,
  .form-group__textarea,
  .form-group__select {
    padding: 0.8rem 0.75rem;
    font-size: 16px;
  }

  .checkout-form__title,
  .order-summary__title {
    font-size: 1.4rem;
  }

  .button--large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .order-hero__title {
    font-size: 1.6rem;
  }

  .order-hero__description {
    font-size: 1rem;
  }
}