@import url(https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap);
:root {
  --dlr-primary: #5c57ee;
  --dlr-primary-dark: #4a45d6;
  --dlr-text-dark: #211E64;
  --dlr-text-gray: #666;
  --dlr-border: #D9DDF8;
  --dlr-bg-light: #F3F4FF;
}

.dlr-page {
  padding: 0 0 60px 0;
  padding-bottom: 120px;
  background: #fff;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}
.dlr-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-bottom: none;
  font-family: "Barlow", sans-serif;
}
.dlr-tabs__item {
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
  border: unset;
}
.dlr-tabs__item:hover {
  color: var(--dlr-primary);
}
.dlr-tabs__item--active {
  color: var(--dlr-text-dark);
  border-bottom: 2px solid var(--dlr-primary);
}
.dlr-tabs__item--purchased::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: super;
  background: var(--dlr-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  position: absolute;
  top: -0.1em;
}

.dlr-header {
  margin-bottom: 32px;
}
.dlr-header__title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  margin-bottom: 16px;
  font-family: "Barlow", sans-serif;
}
.dlr-header__description {
  line-height: 1.7;
  color: #444;
  max-width: 800px;
}
.dlr-header__description > span:first-child {
  display: block;
  font-size: 18px !important;
  font-family: "Barlow", sans-serif;
}
.dlr-header__description > span:not(:first-child),
.dlr-header__description > p,
.dlr-header__description > div,
.dlr-header__description > br,
.dlr-header__description hr {
  display: none;
}

.dlr-section {
  margin-bottom: 32px;
  border: 1px solid var(--dlr-border);
  border-radius: 0;
  overflow: hidden;
}
.dlr-section--no-border {
  border: none;
  overflow: visible;
}
.dlr-section--no-border .dlr-cards {
  padding: 0;
  background: transparent;
}
.dlr-section__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  margin-bottom: 0;
  font-family: "Barlow", sans-serif;
  background: var(--dlr-bg-light);
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dlr-section__title--simple {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
  color: var(--dlr-text-dark);
  font-size: 18px;
}
.dlr-section__title--simple.dlr-section__title--large {
  font-size: 24px;
}
.dlr-section__title--active::after {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--dlr-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.dlr-section__summary {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 0 16px 16px;
  background: #fff;
}
.dlr-section__summary--visible {
  display: flex;
}
.dlr-section__summary-price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Barlow", sans-serif;
}
.dlr-section__summary-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 133, 133, 0.1019607843);
  border: 1px solid rgba(251, 133, 133, 0.1019607843);
  color: #F83C3C;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  transition: all 0.2s ease;
}
.dlr-section__summary-remove svg {
  width: 14px;
  height: 14px;
}
.dlr-section__summary-remove:hover {
  background: #F83C3C;
  color: #fff;
}

.dlr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px;
  background: #fff;
}
.dlr-cards--2cols {
  grid-template-columns: repeat(2, 1fr);
}
.dlr-cards--rows {
  grid-template-columns: 1fr;
}
.dlr-cards--rows .dlr-card {
  max-width: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .dlr-cards--rows .dlr-card {
    max-width: 100%;
  }
}
.dlr-cards--rows .dlr-card--thematic .dlr-card__body {
  padding: 16px 16px 24px 16px;
}
.dlr-cards--rows .dlr-card:hover {
  box-shadow: none;
  border-color: var(--dlr-border);
}

.dlr-card {
  background: #fff;
  border: 1px solid var(--dlr-border);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
}
.dlr-card:hover {
  box-shadow: 0 2px 12px rgba(92, 87, 238, 0.1);
  border-color: var(--dlr-primary);
}
.dlr-card--selectable {
  cursor: pointer;
}
.dlr-card--selectable:has(.dlr-card__input:checked) {
  border-color: var(--dlr-primary);
  box-shadow: 0 2px 12px rgba(92, 87, 238, 0.15);
}
.dlr-card--selectable:has(.dlr-card__input:checked) .dlr-card__radio-circle {
  border-color: var(--dlr-primary);
}
.dlr-card--selectable:has(.dlr-card__input:checked) .dlr-card__radio-circle::after {
  opacity: 1;
}
.dlr-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dlr-card--thematic .dlr-card__header {
  padding: 12px 16px;
  background: var(--dlr-bg-light);
}
.dlr-card--thematic .dlr-card__header--purple {
  padding: 8px 16px;
}
.dlr-card--thematic .dlr-card__title {
  color: var(--dlr-text-dark);
}
.dlr-card--thematic .dlr-card__body {
  padding: 16px 16px 8px 16px;
}
.dlr-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: none;
  font-size: 18px;
}
.dlr-card__radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--dlr-primary);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.dlr-card__radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dlr-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dlr-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  margin: 0;
  font-family: "Barlow", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.dlr-card__title--white {
  color: #fff;
}
.dlr-card__title--white.dlr-card__title--active::after {
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c57ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.dlr-card__title--active::after {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--dlr-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}
.dlr-card__title--large {
  font-size: 24px;
}
.dlr-card__body {
  padding: 0px 16px 8px;
}
.dlr-card__info {
  font-size: 16px;
  color: #000;
  margin-bottom: 6px;
}
.dlr-card__link {
  color: var(--dlr-primary);
  text-decoration: underline;
}
.dlr-card__link:hover {
  text-decoration: none;
}
.dlr-card__access {
  font-size: 16px;
  color: #000;
  margin-bottom: 4px;
}
.dlr-card__duration {
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
}
.dlr-card__expiry {
  font-size: 18px;
  color: #000;
  margin-top: 8px;
  margin-bottom: 0;
}
.dlr-card__expiry strong {
  font-weight: 600;
}
.dlr-card__footer {
  padding: 0 16px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.dlr-card__footer--between {
  justify-content: end;
  gap: 16px;
}
.dlr-card__price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Barlow", sans-serif;
}
.dlr-card__form {
  margin: 0;
}
.dlr-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--dlr-primary);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: "Barlow", sans-serif;
}
.dlr-card__button:hover {
  background: var(--dlr-primary-dark);
}
.dlr-card__button--remove {
  background: transparent;
  color: #E74C3C;
  border: 1px solid #E74C3C;
}
.dlr-card__button--remove:hover {
  background: #E74C3C;
  color: #fff;
}
.dlr-card__button svg {
  flex-shrink: 0;
}

.dlr-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dlr-products__item {
  background: #fff;
  border: 1px solid #e8e8f0;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}
.dlr-products__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.dlr-products__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.dlr-products__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dlr-products__info {
  padding: 16px;
}
.dlr-products__name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.dlr-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(245, 247, 255);
  border-radius: 0 0 24px 24px;
  padding: 10px 48px 8px 48px;
  margin-bottom: 48px;
  position: relative;
}
.dlr-hero__wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dlr-hero__content {
  max-width: 50%;
}
.dlr-hero__title {
  font-weight: 600;
  font-size: 2.5rem;
  color: rgb(33, 30, 100);
  margin-bottom: 32px;
}
.dlr-hero__subtitle {
  font-size: 23px;
  color: rgb(33, 30, 100);
  margin-bottom: 31px;
}
.dlr-hero__buttons {
  display: flex;
  gap: 16px;
}
.dlr-hero__image {
  max-width: 320px;
}
.dlr-hero__image img {
  width: 100%;
  height: auto;
}

.dlr-btn {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 0px;
  font-weight: 700 !important;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.dlr-btn.dlr-btn-primary {
  background: rgb(122, 74, 246);
  color: #fff;
  border: 1px solid rgb(122, 74, 246);
}
.dlr-btn.dlr-btn-secondary {
  background: #fff;
  color: rgb(122, 74, 246);
  border: 1px solid rgb(122, 74, 246);
}

.dlr-content {
  margin: 0 auto;
}
.dlr-content__title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgb(33, 30, 100);
}
.dlr-content__subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
  color: rgb(33, 30, 100);
}
.dlr-content__container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.dlr-content__main {
  flex: 2;
  min-width: 0;
}
.dlr-content__sidebar {
  flex: 1;
  min-width: 260px;
}

.dlr-filter {
  border: 1px solid rgb(224, 229, 255);
  background: #fff;
  min-width: 280px;
}
.dlr-filter__header {
  background: #4a4a4a;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}
.dlr-filter__icon {
  font-size: 12px;
  transition: transform 0.2s;
}
.dlr-filter.collapsed .dlr-filter__icon {
  transform: rotate(180deg);
}
.dlr-filter__body {
  padding: 16px;
  background: #fff;
}
.dlr-filter__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dlr-filter__checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  gap: 8px;
}
.dlr-filter__checkbox input[type=checkbox] {
  display: none;
}
.dlr-filter__checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}
.dlr-filter__checkbox input[type=checkbox]:checked + .dlr-filter__checkbox-custom {
  background: #5c57ee;
  border-color: #5c57ee;
}
.dlr-filter__checkbox input[type=checkbox]:checked + .dlr-filter__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.dlr-filter__checkbox-label {
  font-weight: 400;
  line-height: 1.2;
}

.dlr-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.dlr-table__header {
  background: #f4a460;
}
.dlr-table__header th {
  color: white;
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.dlr-table__body tr {
  border-bottom: 1px solid rgb(224, 229, 255);
}
.dlr-table__body tr:last-child {
  border-bottom: none;
}
.dlr-table__body td {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: rgb(33, 30, 100);
}
.dlr-table__radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dlr-table__radio input[type=radio] {
  accent-color: #5c57ee;
}

.dlr-summary {
  background: #fff;
  padding: 32px 28px 28px 28px;
  min-width: 270px;
  border: 1px solid rgb(224, 229, 255);
  position: relative;
}
.dlr-summary__title {
  font-weight: 500;
  color: rgb(33, 30, 100);
  margin-bottom: 40px;
  font-size: 19px;
}
.dlr-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dlr-summary__label {
  color: rgba(33, 30, 100, 0.5);
  font-size: 16px;
  font-weight: 400;
}
.dlr-summary__value {
  color: rgb(33, 30, 100);
  font-size: 16px;
  font-weight: 400;
}
.dlr-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px dashed rgb(224, 229, 255);
}
.dlr-summary__total-label {
  color: rgb(33, 30, 100);
  font-size: 19px;
  font-weight: 500;
}
.dlr-summary__total-value {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dlr-summary__currency {
  color: rgb(33, 30, 100);
  font-size: 16px;
  font-weight: 400;
  margin-right: 2px;
}
.dlr-summary__amount {
  color: #5c57ee;
  font-size: 23px;
  font-weight: 600;
}

.dlr-calendar {
  margin-top: 24px;
}
.dlr-calendar__title {
  font-size: 14px;
  color: rgba(33, 30, 100, 0.7);
  margin-bottom: 8px;
}
.dlr-calendar__price {
  font-size: 24px;
  font-weight: 600;
  color: #5c57ee;
  margin-bottom: 16px;
}
.dlr-calendar__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgb(224, 229, 255);
  cursor: pointer;
  font-size: 14px;
  color: rgb(33, 30, 100);
}
.dlr-calendar__button:hover {
  border-color: #5c57ee;
}
.dlr-calendar__button svg {
  width: 16px;
  height: 16px;
}

.dlr-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.dlr-resources__card {
  background: #fff;
  border: 1px solid rgb(224, 229, 255);
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.dlr-resources__card:hover {
  box-shadow: 0 4px 12px rgba(33, 30, 100, 0.1);
  border-color: #5c57ee;
}
.dlr-resources__image {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}
.dlr-resources__title {
  font-size: 15px;
  font-weight: 500;
  color: rgb(33, 30, 100);
  line-height: 1.4;
}
.dlr-resources__meta {
  font-size: 13px;
  color: rgba(33, 30, 100, 0.6);
  margin-top: 8px;
}

.dlr-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 30, 100, 0.18);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dlr-modal__content {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(33, 30, 100, 0.12);
  padding: 64px 69px 82px 60px;
  min-width: 480px;
  max-width: 98vw;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}
.dlr-modal__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(33, 30, 100, 0.6);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.dlr-modal__close:hover {
  color: rgb(92, 87, 238);
}
.dlr-modal__title {
  font-size: 27px;
  font-weight: 600;
  color: rgb(33, 30, 100);
  margin-bottom: 55px;
}

.dlr-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F3F4FF;
  border-top: 1px solid #D9DDF8;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.dlr-cart-bar--visible {
  transform: translateY(0);
}
.dlr-cart-bar__content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.dlr-cart-bar__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dlr-cart-bar__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Barlow", sans-serif;
}
.dlr-cart-bar__items {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.dlr-cart-bar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dlr-cart-bar__total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.dlr-cart-bar__total-label {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.dlr-cart-bar__total-price {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: "Barlow", sans-serif;
}
.dlr-cart-bar__btn {
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Barlow", sans-serif;
}
.dlr-cart-bar__btn--date {
  background: #F79E4E;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none !important;
}
.dlr-cart-bar__btn--date:hover {
  background: #e5961c;
}
.dlr-cart-bar__btn--date svg {
  flex-shrink: 0;
}
.dlr-cart-bar__btn--checkout {
  background: var(--dlr-primary);
  color: #fff;
}
.dlr-cart-bar__btn--checkout:hover {
  background: var(--dlr-primary-dark);
}
.dlr-cart-bar__btn--checkout:disabled {
  background: rgba(124, 121, 239, 0.95);
  color: #fffefe;
  cursor: not-allowed;
}

.calendar_content .day.selected {
  background: var(--dlr-primary);
  color: #fff;
  border-radius: 50%;
}

.dlr-package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.dlr-package-header__content {
  flex: 1;
  max-width: 680px;
}
.dlr-package-header__title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  margin-bottom: 12px;
  font-family: "Barlow", sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dlr-package-header__title.dlr-section__title--active::after {
  content: "";
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: var(--dlr-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  flex-shrink: 0;
}
.dlr-package-header__description {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.dlr-package-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.dlr-package-header__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--dlr-text-dark);
  font-family: "Barlow", sans-serif;
}
@media (max-width: 992px) {
  .dlr-package-header {
    flex-direction: column;
    align-items: stretch;
  }
  .dlr-package-header__content {
    max-width: 100%;
  }
  .dlr-package-header__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .dlr-package-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .dlr-package-header__price {
    text-align: center;
  }
}

.dlr-package-header + .products .container-fluid.content {
  padding-left: 0;
  padding-right: 0;
}
.dlr-package-header + .products .filter-check.mb-30 {
  margin-bottom: 16px;
}
.dlr-package-header + .products .filter_content_check .name {
  font-size: 18px;
  font-weight: 400;
}
.dlr-package-header + .products .filter_title span {
  font-size: 18px;
}

.products_result {
  position: relative;
  min-height: 300px;
}

.products_materials {
  width: 100%;
}

.dlr-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.dlr-products-grid .products_item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.loading-overlay.hidden {
  display: none;
}

#loaded {
  text-align: center;
  padding: 20px 0;
}
.dlr-product-item {
  display: block;
  aspect-ratio: 3/4;
  background: #A8D5E5;
}
.dlr-product-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dlr-product-item--placeholder {
  background: #A8D5E5;
}

@media (max-width: 1200px) {
  .dlr-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .dlr-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dlr-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .dlr-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dlr-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dlr-hero {
    flex-direction: column;
  }
  .dlr-hero__content {
    max-width: 100%;
  }
  .dlr-hero__image {
    margin-top: 24px;
    max-width: 220px;
  }
  .dlr-content__container {
    flex-direction: column;
    gap: 24px;
  }
  .dlr-resources {
    grid-template-columns: repeat(2, 1fr);
  }
  .dlr-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dlr-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .dlr-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .dlr-tabs__item {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .dlr-page {
    padding: 0 0 40px 0;
  }
  .dlr-hero {
    padding: 10px 24px 8px 24px;
  }
  .dlr-hero__title {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .dlr-hero__subtitle {
    font-size: 18px;
  }
  .dlr-hero__buttons {
    flex-direction: column;
  }
  .dlr-hero__buttons a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .dlr-filter {
    min-width: 100%;
  }
  .dlr-header {
    margin-bottom: 32px;
  }
  .dlr-header__title {
    font-size: 24px;
  }
  .dlr-header__description {
    font-size: 14px;
  }
  .dlr-header__description > span:first-child {
    font-size: inherit !important;
  }
  .dlr-section {
    margin-bottom: 32px;
  }
  .dlr-section__title {
    font-size: 18px;
  }
  .dlr-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dlr-card__footer--between {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .dlr-card__button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .dlr-cart-bar__content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px;
  }
  .dlr-cart-bar__info {
    text-align: center;
  }
  .dlr-cart-bar__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .dlr-cart-bar__total {
    width: 100%;
    align-items: center;
    margin-bottom: 8px;
  }
  .dlr-cart-bar__btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .dlr-cart-bar__content {
    padding: 12px 16px 40px;
  }
  .dlr-cart-bar__actions {
    flex-direction: column;
    width: 100%;
  }
  .dlr-cart-bar__btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .dlr-resources {
    grid-template-columns: 1fr;
  }
  .dlr-products {
    grid-template-columns: 1fr;
  }
  .dlr-modal__content {
    min-width: 0;
    padding: 26px 24px 26px 24px;
  }
  .dlr-modal__title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
  .dlr-tabs__item {
    padding: 8px 12px;
    font-size: 13px;
  }
}
