@font-face {
  font-family: 'Gotham Pro';
  src: local('Gotham Pro Regular'), local('GothamPro-Regular'),
    url('../fonts/gothampro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
    url('../fonts/gothampro_medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Pro';
  src: local('Gotham Pro Bold'), local('GothamPro-Bold'),
    url('../fonts/gothampro_bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'Gotham Pro', sans-serif;

  /* Font sizes */
  --font-size-breadcrumbs: 13px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 21px;
  --font-size-4xl: 24px;
  --font-size-5xl: 26px;
  --font-size-display: 48px;

  --black: #000;
  --gray-text: #5b5c69;
  --purple: #31173c;
  --purple-2: #551a8b;
  --white: #FFFFFF;
  /* Not sure whether this is neccesary, It is indistinguishable from white */
  --gray-bg: #DDDDDD;
  --dark-gray-text: #757575;
  /* unused */
  --gray-2: #DEE2E6;
  /* хлебные крошки */
  --gray-text-light: #AAAAAA;

  --gray-bg-2: #EFEFEF;


  --transition: 0.15s ease;
}

@media (max-width: 767px) {
  :root {
    --font-size-xl: 14px;
    --font-size-3xl: 16px;
    --font-size-4xl: 20px;
    --font-size-5xl: 20px;
    --font-size-display: 36px;
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;

  font-family: var(--font-family);
  -webkit-font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--font-size-lg);
  letter-spacing: 0%;

  background-color: var(--white);
  /* color: var(--foreground-primary); */

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}
main {
  display: flex;
  flex-direction: column;
  flex: 1;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}


ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
svg,
svg path {
  transition: var(--transition);
}
input {
  background-color: transparent;
  border: 0;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
address {
  margin: 0;
}

/* global */
h1 {
  font-size: var(--font-size-display);
  font-weight: 500;
}
h2 {
  font-size: var(--font-size-2xl);
  font-weight: 500;
}

.purple-btn {
  background-color: var(--purple);
  color: var(--white);
  display: flex;
  font-size: var(--font-size-lg);
  line-height: 20px;
  font-weight: 600;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background-color var(--transition);
}

.purple-btn:hover {
  background-color: var(--purple-2);
}

.outline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid var(--purple);
  color: var(--purple);
  padding-inline: 32px;
  text-transform: uppercase;
  font-size: var(--font-size-lg);
  line-height: 125%;
  font-weight: 500;
  transition: var(--transition);
}
.outline-btn:hover,
.outline-btn:focus-visible {
  background-color: var(--purple);
  color: var(--white);
}

.outline-btn.order-return {
  padding-inline: 40px;
  width: fit-content;
}

/* common */
.container {
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
  max-width: 1700px;
}

.page-title {
  font-size: var(--font-size-display);
  font-weight: 500;
  line-height: 133%;
  color: var(--black);
  margin-bottom: 40px;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-container > div:has(.content) {
  flex: 1;
}

/* Header additional styles */
.top {
  margin-bottom: 103px;
}
@media (max-width: 767px) {
  .top {
    margin-bottom: 53px;
  }
}
@media (max-width: 576px) {
  .top {
    margin-bottom: 0;
  }
}


/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.breadcrumb-item {
  font-size: var(--font-size-breadcrumbs);
  color: #6C757D;
  padding-left: 0 !important;
}

.breadcrumb-item a {
  color: #6C757D;
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-item a:hover {
  color: #1A1A1A;
}

.breadcrumb-item::before {
  display: none;
}

.breadcrumb-item:has(+ .breadcrumb-item)::after {
  content: "";
  display: block;
  float: right;
  border-bottom: 1px solid var(--gray-text-light);
  margin: 0 8px;
  padding: 0 !important;
  height: 10px;
  width: 30px;
}

.breadcrumb-item.active {
  color: #1A1A1A;
}

/* ============================================================
   BASKET PAGE
   ============================================================ */
.basket-page {
  padding: 0 0 64px;
}

/* .basket-title {
  font-size: var(--font-size-display);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
} */

.basket-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 200px;

}


/* ----- Basket item ----- */

.basket-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 20px;
}

.basket-items-column-wrapper {
  flex: 1;
}

.basket-item-content {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  height: stretch;
  justify-content: space-between;
}

.basket-item-name {
  font-size: var(--font-size-3xl);
  font-weight: 500;
  color: var(--black);
  line-height: 24px;
}

.basket-item:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-bg);
}

.basket-item-image {
  width: 200px;
  height: 160px;
  flex-shrink: 0;
}

.basket-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basket-item-name {
  font-size: var(--font-size-3xl);
  line-height: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.basket-item-attrs {
  font-size: var(--font-size-lg);
  line-height: 20px;
  color: var(--gray-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.basket-item-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-md);
  color: #6C757D;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 10px;
  transition: color var(--transition);
}

.basket-item-remove:hover {
  color: #1A1A1A;
}

/* ----- Item right: controls + total ----- */
.basket-item-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

/* ----- Quantity control ----- */
.basket-item-controls {
  flex-shrink: 0;
}

.basket-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--gray-bg);
}

.basket-qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #6C757D;
  transition: color var(--transition);
  flex-shrink: 0;
}

.basket-qty-btn:hover {
  color: #1A1A1A;
}

.basket-qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: var(--font-size-md);
  font-family: inherit;
  color: #1A1A1A;
  border: none;
  border-left: 1px solid var(--gray-bg);
  border-right: 1px solid var(--gray-bg);
  background: transparent;
}

.basket-item-unit-price {
  font-size: var(--font-size-xl);
  text-align: center;
  color: #6C757D;
  margin: 20px 0 0;
  white-space: nowrap;
}

/* ----- Item total price ----- */

.basket-item-total {
  font-size: var(--font-size-4xl);
  font-weight: 400;
  color: #1A1A1A;
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
  margin-left: 80px;
}


/* ----- Clear cart ----- */
.basket-clear-wrap {
  padding: 16px 0 0;
}

.basket-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-md);
  color: #6C757D;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}

.basket-clear-btn:hover {
  color: #1A1A1A;
}

/* ============================================================
   BASKET SIDEBAR / TOTAL
   ============================================================ */

.basket-total-wrapper {
  padding: 0;
  width: 400px;
}

.basket-total {
  width: 400px;
  border: 1px solid #E0E0E0;
  background-color: var(--gray-bg-2);
  padding: 20px 24px;
  position: sticky;
  top: 20px;
}

.basket-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: var(--font-size-lg);
  line-height: 20px;
  font-weight: 400;
}

.basket-total-label {
  color: #5B5C69;
  flex-shrink: 0;
}
.line-separator {
  border-bottom: 1px solid #DDDDDD;
  flex: 1;
}

.basket-total-value {
  color: var(--black);
  text-align: right;
}

.basket-total-final-row {
  border-bottom: none;
  color: var(--gray-text);
  margin-top: 4px;
  align-items: center;
}

.basket-total-sum {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.1;
}

/* ============================================================
   RECOMMENDED SECTION
   ============================================================ */
.recommended-section {
  padding: 48px 0 64px;
  border-top: 1px solid var(--gray-bg);
}

.recommended-title {
  font-size: var(--font-size-5xl);
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 24px;
}

/* ----- Recommended carousel (Owl) ----- */
.recommended-section .recommended-carousel.owl-carousel {
  position: relative;
  padding-bottom: 8px;
}

.recommended-section .recommended-carousel .owl-nav {
  margin-top: 0;
}


/* ----- Product card ----- */
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-body {
  padding-left: 16px;
}

.product-card:hover {
  color: inherit;
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 400px;
  margin-bottom: 20px;
  background-color: var(--gray-bg-2);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  border-radius: 16px;
  bottom: 12px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 25px;
  line-height: 143%;
  background-color: var(--white);
  color: var(--purple);
  font-size: var(--font-size-md);
  font-weight: 500;
  pointer-events: none;
}

.product-card-name {
  font-size: var(--font-size-3xl);
  font-weight: 500;
  line-height: 114%;
  color: #1A1A1A;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.product-card:hover .product-card-name {
  color: var(--gray-text);
}

.product-card-brand {
  font-size: var(--font-size-md);
  line-height: 114%;
  color: #6C757D;
  margin-bottom: 12px;
}

.product-card-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card-price {
  font-size: var(--font-size-2xl);
  line-height: 120%;
  font-weight: 400;
  color: #1A1A1A;
}

.product-card-old-price {
  padding-top: 5px;
  font-size: var(--font-size-md);
  line-height: 114%;
  color: #5B5C69;
  text-decoration: line-through;
}

@media (max-width: 1400px) {
  .basket-row {
    gap: 60px;
  }
}


@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .basket-row {
    flex-direction: column;
    gap: 30px;
  }
  .basket-total-wrapper {
    width: 100%;
  }
  .basket-total {
    margin: auto;
  }
}

@media (max-width: 767px) {
  .basket-item-image {
    width: 120px;
    height: 120px;
  }
  .basket-total {
    width: 100%;
  }
  .basket-item-total {
    margin-left: 0;
  }
  .basket-item-right {
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0;
  }
  .basket-item:last-child {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-bg);
  }  
}


/* ============================================================
   GENERAL FORM FIELDS
   (reused across order, checkout, profile, and other pages)
   ============================================================ */

/* ----- Section block ----- */
.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  font-size: var(--font-size-5xl); /* 26px */
  font-weight: 500;
  color: inherit;
  margin-bottom: 20px;
}

/* ----- Field wrapper (label + control) ----- */
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field-label {
  font-size: var(--font-size-md); /* 14px */
  color: #8A8A8A;
  line-height: 1;
}

/* ----- Text inputs and textarea ----- */
.field-input,
.field-select,
.field-textarea,
.bx-soa-location-input-container .dropdown-block.bx-ui-sls-input-block {
  width: 100%;
  padding: 11px 14px;
  background: transparent;
  border: 1px solid var(--gray-bg);
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  line-height: 1.5;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #555;
}

/* ----- Input with leading icon ----- */
.field-icon-wrap {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8A8A8A;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.field-icon-wrap .field-input {
  padding-left: 40px;
}

/* ----- Textarea ----- */
.field-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ----- Multi-column field rows ----- */
.field-row {
  display: grid;
  gap: 16px;
  row-gap: 0;
  margin-bottom: 0;
}

.field-row .field-wrap {
  margin-bottom: 16px;
}

.field-row--2 {
  grid-template-columns: 1fr 1fr;
}

.field-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 575px) {
  .field-row--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .field-row--2,
  .field-row--3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CUSTOM RADIO BUTTON
   ============================================================ */
.radio-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
  user-select: none;
}

.radio-item:not(:last-of-type) {
  border-bottom: 1px solid var(--gray-bg);
}

/* hide native input */
.radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* custom circle */
.radio-control {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}

.radio-control::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  transform: scale(0);
  transition: transform 0.15s ease;
}

.radio-input:checked ~ .radio-control {
  border-color: var(--purple);
}

.radio-input:checked ~ .radio-control::after {
  transform: scale(1);
}

.radio-item:hover .radio-control {
  border-color: var(--purple);
}

.radio-label {
  font-size: var(--font-size-md);
  color: inherit;
  line-height: 1.4;
}

/* spread variant: left label + right aside */
.radio-item--spread {
  justify-content: space-between;
}

.radio-label-aside {
  margin-left: auto;
  text-align: right;
  font-size: var(--font-size-md);
  color: inherit;
  white-space: nowrap;
}

/* ============================================================
   CUSTOM CHECKBOX
   ============================================================ */
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

/* hide native input */
.checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* custom box */
.checkbox-control {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background-color: var(--white);
  transition: background-color var(--transition), border-color var(--transition);
}

.checkbox-control svg {
  opacity: 0;
  transition: opacity var(--transition);
}

.checkbox-input:checked ~ .checkbox-control {
  background-color: var(--purple);
  border-color: var(--purple);
}

.checkbox-input:checked ~ .checkbox-control svg {
  opacity: 1;
}

.checkbox-item:hover .checkbox-control {
  border-color: var(--purple);
}

.checkbox-label {
  font-size: var(--font-size-md);
  color: var(--gray-text);
  line-height: 129%;
}

.checkbox-label a {
  color: var(--purple-2);
  text-decoration: none;
}

.checkbox-label a:hover {
  color: var(--purple-2);
  text-decoration: underline;
}

/* ============================================================
   DISCOUNT PAGE
   ============================================================ */
.discount-page {
  padding: 60px 0 64px;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .product-card-name {
    font-size: 21px;
    line-height: 114%;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background-color: #eae8ec;
  overflow: hidden;
  background-image: url('../images/newsletter-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.newsletter-inner {
  display: flex;
  align-items: stretch;
}

.newsletter-content {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-title {
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: 500;
  line-height: 141%;
  color: var(--black);
}

.newsletter-subtitle {
  font-size: var(--font-size-xl);
  line-height: 156%;
  color: var(--gray-text);
  margin-bottom: 40px;
}

.newsletter-form-row {
  display: flex;
  margin-bottom: 24px;
  gap: 16px;
}
.newsletter-form-row .field-wrap {
  margin-bottom: 0;
  flex: 1;
}

/* .newsletter-checkbox .checkbox-label a {
  color: var(--purple);
} */

.newsletter-img-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.newsletter-decor-img {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  opacity: 0.85;
}

@media (max-width: 1200px) {
  .newsletter-section {
    background-position: center;
  }
}

@media (max-width: 767px) {
  .newsletter-content {
    padding: 32px 0 0 0;
  }
  .newsletter-title {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 16px;
  }
  .newsletter-subtitle {
    font-size: 16px;
    line-height: 150%;
  }
  
  .newsletter-section {
    height: 726px;
    background-image: url('../images/newsletter-bg-mob.jpg');
    background-position: bottom;
  }
}

@media (max-width: 576px) { 
  .newsletter-form-row {
    flex-direction: column;
  }
}

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-page {
  padding: 0 0 64px;
  flex: 1;
}

/* page title */
.order-title {
  font-size: var(--font-size-display); /* 48px */
  font-weight: 700;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .order-title {
    font-size: var(--font-size-6xl);
    margin-bottom: 20px;
  }
}

/* ----- Order consents (checkboxes inside sidebar) ----- */
.order-consents {
  padding: 20px 0 0;
  border-top: 1px solid var(--gray-bg);
  margin-top: 4px;
}

.order-consents .checkbox-label {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}

.info-page {
  min-height: 100vh;
}

.info-layout {
  display: flex;
  min-height: 100vh;
}

.info-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 200px 100px 100px calc((100vw - 1600px) / 2);
  height: 100vh;
  overflow: auto;
}
.info-content::-webkit-scrollbar {
  display: none;
}

.info-intro {
  font-size: var(--font-size-lg);
  line-height: 175%;
  color: var(--black);
  margin-bottom: 24px;
}

.info-image-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.info-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #ddd !important;
}

.accordion-button {
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
  box-shadow: none !important;
  background-color: transparent !important;
  transition: var(--transition);
}

.accordion-button:hover {
  opacity: .5;
  color: var(--black);
}

.accordion-button:not(.collapsed) {
  color: var(--black);
}

.accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url('../images/icons/chevron-down.svg') !important;
  background-position: center;
  background-size: contain;
}

.accordion-body {
  padding: 0 0 24px 0;
  font-size: var(--font-size-md);
  line-height: 175%;
  color: var(--gray-text);
}

.delivery-info-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.delivery-info-list li {
  display: flex;
  align-items: center;
  gap: 24px;
}

.delivery-info-list li span {
  font-size: var(--font-size-lg);
  line-height: 175%;
  color: var(--black);
}

.delivery-accordion-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.delivery-accordion-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: var(--purple);
}

/* ----- Responsive ----- */
@media (max-width: 1800px) {
  .info-content {
    padding-left: 50px;
  }
}

@media (max-width: 1400px) {
  .info-content {
    padding-right: 40px;
    padding-top: 150px;
    height: auto;
  }
  .page-title {
    margin-bottom: 24px;
  }
  .delivery-info-list {
    margin-top: 24px;
  }
  .delivery-accordion-wrapper {
    gap: 16px;
    margin-top: 40px;
  }
  .delivery-accordion-title {
    font-size: 22px;
  }
  .accordion-button {
    font-size: 18px;
    line-height: 133%;
  }

  .product-card-img-wrap {
    height: 320px;
  }
  .newsletter-subtitle {
    margin-bottom: 32px;
  }

}

@media (max-width: 992px) {
  .info-layout {
    flex-direction: column;
    min-height: auto;
  }
  .info-content {
    flex: 1;
    max-width: none;
    padding-right: 50px;
    padding-bottom: 40px;
  }
  .info-image-col {
    width: 100%;
    aspect-ratio: 1;
  }
}

@media (max-width: 767px) {
  .info-content {
    padding: 21px 30px 40px 30px;
  }
  .page-title {
    font-size: 28px;
    line-height: 129%;
  }
  .delivery-info-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .delivery-info-list li img {
    width: 50px;
    aspect-ratio: 1;
  }
}
