@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #F9F9F9;
  font-family: "Inter", "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

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

.btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

form {
  margin: 0;
  padding: 0;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

*:focus:not(:focus-visible) {
  outline: none;
}

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

.lemon-tuesday {
  font-family: "Lemon Tuesday", "Caveat", "Brush Script MT", cursive;
  font-weight: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

#app {
  width: 100%;
}
#app main {
  width: 100%;
  margin-top: 100px;
}
#app main section,
#app main footer {
  width: 100%;
  padding: 0 0;
}

.container-fluid {
  width: 100%;
  padding: 25px 15px;
}
.container-fluid .row {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.swiper,
.swiper-container {
  overflow: auto;
}

.noselect {
  -webkit-touch-callout: none;
  /* запрет long-press меню на iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* старый Konqueror */
  -moz-user-select: none;
  /* Firefox */
  /* IE/Edge */
  user-select: none;
  /* стандартное свойство */
}

.btn-courier, .btn-form {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.1s ease-in;
}
.btn-courier:hover, .btn-form:hover {
  transform: translateY(-2px);
}
.btn-courier:hover span, .btn-form:hover span {
  background: #004085;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
  color: #ffffff;
}
.btn-courier span, .btn-form span {
  background: #4251DE;
  color: #ffffff;
  border: none;
  padding: 1.25rem 2.5rem;
  height: 60px;
  border-radius: 50px;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}
.btn-courier .arrow-circle, .btn-form .arrow-circle {
  width: 60px;
  height: 60px;
  background: #4251DE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-courier .arrow-circle i, .btn-form .arrow-circle i {
  font-size: 1rem;
  color: #ffffff;
}
.btn-courier:hover .arrow-circle, .btn-form:hover .arrow-circle {
  background: #004085;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
}

.btn-courier-popup {
  background: #4A63E7;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 140px;
}
.btn-courier-popup:hover {
  background: #3d52d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 99, 231, 0.3);
}

.btn-courier-popup-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4A63E7;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-courier-popup-circle:hover {
  background: #3d52d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 99, 231, 0.3);
}
.btn-courier-popup-circle i {
  font-size: 18px;
}

.call-me-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.call-me-popup.active {
  display: flex;
}
.call-me-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.call-me-popup__content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  max-width: 990px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.call-me-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.call-me-popup__title {
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #212121;
  line-height: 1.2;
  margin: 0;
  flex: 1;
  max-width: 380px;
}
.call-me-popup__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #bdbdbd;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 20px;
}
.call-me-popup__close:hover {
  background: #e0e0e0;
  color: #757575;
}
.call-me-popup__description {
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #424242;
  line-height: 1.5;
  margin: 0;
  max-width: 380px;
}
.call-me-popup__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.call-me-popup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.call-me-popup__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.call-me-popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.call-me-popup__input {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212121;
  transition: all 0.3s ease;
}
.call-me-popup__input::-moz-placeholder {
  color: #bdbdbd;
}
.call-me-popup__input::placeholder {
  color: #bdbdbd;
}
.call-me-popup__input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4251DE;
}
.call-me-popup__phone {
  font-family: "Courier New", monospace;
  letter-spacing: 0.5px;
}
.call-me-popup__button {
  background: #4A63E7;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.call-me-popup__button:hover {
  background: #3d52d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 99, 231, 0.3);
}
.call-me-popup__button span {
  font-weight: 600;
}
.call-me-popup__button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.call-me-popup__button:hover i {
  transform: translateX(4px);
}

.courier-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.courier-popup.active {
  display: flex;
}
.courier-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.courier-popup__content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  max-width: 990px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.courier-popup__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.courier-popup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courier-popup__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.courier-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.courier-popup__title {
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #212121;
  line-height: 1.2;
  margin: 0;
  flex: 1;
  max-width: 380px;
}
.courier-popup__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #bdbdbd;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 20px;
  right: 20px;
}
.courier-popup__close:hover {
  background: #e0e0e0;
  color: #757575;
}
.courier-popup__delivery-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.courier-popup__delivery-cost {
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  margin: 0;
}
.courier-popup__delivery-free {
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e74c3c;
  margin: 0;
}
.courier-popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.courier-popup__input {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212121;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.courier-popup__input::-moz-placeholder {
  color: #bdbdbd;
}
.courier-popup__input::placeholder {
  color: #bdbdbd;
}
.courier-popup__input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4251DE;
}
.courier-popup__select-wrapper {
  position: relative;
}
.courier-popup__select-wrapper .fas {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #bdbdbd;
  pointer-events: none;
}
.courier-popup__select {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212121;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.courier-popup__select:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #4251DE;
}
.courier-popup__quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.courier-popup__quantity-label {
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
}
.courier-popup__quantity-selector {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 4px;
  gap: 8px;
}
.courier-popup__quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #212121;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.courier-popup__quantity-btn:hover {
  background: #e0e0e0;
}
.courier-popup__quantity-value {
  font-family: "Nunito Sans", "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  min-width: 20px;
  text-align: center;
}
.courier-popup__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.courier-popup__phone {
  font-family: monospace;
}

@media (max-width: 768px) {
  .call-me-popup {
    padding: 16px;
  }
  .call-me-popup__image {
    display: none;
  }
  .call-me-popup__content {
    padding: 32px 24px;
    border-radius: 24px;
    gap: 20px;
  }
  .call-me-popup__title {
    font-size: 28px;
    line-height: 1.1;
  }
  .call-me-popup__description {
    font-size: 16px;
  }
  .call-me-popup__input {
    padding: 18px 20px;
    font-size: 16px;
  }
  .call-me-popup__button {
    padding: 18px 20px;
    font-size: 16px;
  }
  .call-me-popup__close {
    position: unset;
  }
}
@media (max-width: 768px) {
  .courier-popup {
    padding: 16px;
  }
  .courier-popup__image {
    display: none;
  }
  .courier-popup__content {
    padding: 32px 24px;
    border-radius: 24px;
    gap: 20px;
    flex-direction: column;
  }
  .courier-popup__title {
    font-size: 28px;
    line-height: 1.1;
  }
  .courier-popup__delivery-cost {
    font-size: 16px;
  }
  .courier-popup__delivery-free {
    font-size: 14px;
  }
  .courier-popup__input, .courier-popup__select {
    padding: 18px 20px;
    font-size: 16px;
  }
  .courier-popup__quantity {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .courier-popup__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .courier-popup__close {
    position: unset;
  }
}
@media (max-width: 480px) {
  .courier-popup {
    padding: 12px;
  }
  .courier-popup__content {
    padding: 24px 20px;
    border-radius: 20px;
    gap: 16px;
  }
  .courier-popup__title {
    font-size: 24px;
  }
  .courier-popup__delivery-cost {
    font-size: 15px;
  }
  .courier-popup__delivery-free {
    font-size: 13px;
  }
  .courier-popup__input, .courier-popup__select {
    padding: 16px 18px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .call-me-popup {
    padding: 12px;
  }
  .call-me-popup__content {
    padding: 24px 20px;
    border-radius: 20px;
    gap: 16px;
  }
  .call-me-popup__title {
    font-size: 24px;
  }
  .call-me-popup__description {
    font-size: 15px;
  }
  .call-me-popup__input {
    padding: 16px 18px;
    font-size: 15px;
  }
  .call-me-popup__button {
    padding: 16px 18px;
    font-size: 15px;
  }
}
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.thank-you-popup.active {
  display: flex;
}
.thank-you-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.thank-you-popup__content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.thank-you-popup__checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.thank-you-popup__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #4251DE;
  margin: 0;
}
.thank-you-popup__message {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  max-width: 320px;
}
.thank-you-popup__close {
  background: #4251DE;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.thank-you-popup__close:hover {
  background: rgb(35.2297297297, 51.2432432432, 201.7702702703);
  transform: translateY(-2px);
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #27ae60;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
  margin: 0 auto;
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #27ae60;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #ffffff;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #27ae60;
  }
}
.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  z-index: 10;
}
.preloader.active {
  display: flex;
}
.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #4251DE;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .thank-you-popup {
    padding: 16px;
  }
  .thank-you-popup__content {
    padding: 40px 24px;
    border-radius: 20px;
    gap: 20px;
  }
  .thank-you-popup__title {
    font-size: 28px;
  }
  .thank-you-popup__message {
    font-size: 16px;
  }
  .thank-you-popup__close {
    padding: 14px 28px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .thank-you-popup {
    padding: 12px;
  }
  .thank-you-popup__content {
    padding: 32px 20px;
    border-radius: 16px;
    gap: 16px;
  }
  .thank-you-popup__title {
    font-size: 24px;
  }
  .thank-you-popup__message {
    font-size: 15px;
  }
  .thank-you-popup__close {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.page-header {
  padding: 40px 0 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 40px;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4251DE;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
}
.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.page-header .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
}
.page-header .breadcrumb .breadcrumb-item a {
  color: #4251DE;
  text-decoration: none;
}
.page-header .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.page-header .breadcrumb .breadcrumb-item.active {
  color: #333333;
  font-weight: 500;
}
.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #333333;
  margin: 0 10px;
}

.page-content {
  margin-bottom: 50px;
}

.related-sections {
  padding: 40px 0;
  background: #f8f9fa;
  border-radius: 10px;
  margin-top: 40px;
}
.related-sections h3 {
  font-size: 1.5rem;
  color: #4251DE;
  margin-bottom: 30px;
  text-align: center;
}

.footwear-page .related-sections,
.bags-page .related-sections,
.clothing-page .related-sections {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.delivery-page .related-sections,
.contacts-page .related-sections,
.locations-page .related-sections {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.faq-page .related-sections,
.about-page .related-sections {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.price-list-page .related-sections {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

@media (max-width: 768px) {
  .page-header {
    padding: 30px 0 15px;
    margin-bottom: 30px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .related-sections {
    padding: 30px 0;
    margin-top: 30px;
  }
  .related-sections .row .col-md-6 {
    margin-bottom: 30px;
  }
  .related-sections .row .col-md-6:last-child {
    margin-bottom: 0;
  }
}
