/* HOME TEMPLATE */

.home-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  overflow-x: hidden;
  max-width: 100vw;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .home-main {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* Hero */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
}
.home-hero-inner {
  max-width: 1402px;
  margin: 0 auto;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 480px;
  position: relative;
  z-index: 2;
  gap: 40px;
}
.home-hero-content {
  flex: 1;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-hero-block {
  background: rgba(0,0,0,0.56);
  color: #fff;
  font-size: 26px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  font-weight: 400;
  padding: 24px 24px;
  min-height: 81px;
  display: inline-flex;
  align-items: center;
  line-height: 1.15;
  width: fit-content;
}
.home-hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffdb16;
  color: #3a3a3a;
  font-size: 15px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.home-hero-btn:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-1px);
}

/* Category cards grid in hero */
.home-hero-cats {
  display: grid;
  grid-template-columns: repeat(3, 188px);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.home-cat-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 12px;
  padding: 14px 14px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 4px 4px 19px rgba(0,0,0,0.15);
  height: 106px;
  width: 188px;
}
.home-cat-card.cat-blue {
  background: radial-gradient(ellipse at center, #b3e7ff 0%, #87d3f8 25%, #5cc0f1 50%, #30ace4 75%, #1aa3e7 87.5%, #0499e3 100%);
}
.home-cat-card.cat-yellow {
  background: radial-gradient(ellipse at center, #fdf6d1 0%, #faec9c 25%, #f7e168 50%, #f5db4e 62.5%, #f3d634 75%, #f1d01a 87.5%, #f0cd0d 93.75%, #f0cb00 100%);
}
.home-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 6px 24px rgba(0,0,0,0.25);
}
.home-cat-label {
  position: relative;
  z-index: 2;
  font-size: 27px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.4;
}
.home-cat-card.cat-blue .home-cat-label {
  color: #fff;
}
.home-cat-card.cat-yellow .home-cat-label {
  color: #3a3a3a;
}
.home-cat-card.cat-roro .home-cat-label {
  color: #ffdb16;
}
.home-cat-card img {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 65px;
  object-fit: contain;
  z-index: 1;
}

/* Sections */
.home-section {
  padding: 20px 0;
}
.home-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}
.home-section-subtitle {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 24px;
}
.home-section-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Cards grid */
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.home-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .2s;
}
.home-card:hover {
  transform: translateY(-3px);
}
.home-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.home-card h3 {
  font-size: 17px;
  font-weight: 600;
  padding: 14px 16px 6px;
  color: #1a1a1a;
}
.home-card p {
  font-size: 14px;
  color: #666;
  padding: 0 16px 14px;
  line-height: 1.5;
}
.home-card-btn {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 8px 20px;
  background: #ffdb16;
  color: #1a1a1a;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.home-card-btn:hover {
  background: #3a3a3a;
  color: #fff;
}

/* Form section */
.home-form-section {
  background: #f9f9f9;
  border-radius: 10px;
}
.home-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.home-form input,
.home-form select {
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
}
.home-form input:focus,
.home-form select:focus {
  border-color: #ffdb16;
}
.home-form-btn {
  grid-column: 1 / -1;
  height: 50px;
  background: #ffdb16;
  color: #1a1a1a;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.home-form-btn:hover {
  background: #3a3a3a;
  color: #fff;
}

/* CTA */
.home-cta {
  text-align: center;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px 20px;
}
.home-cta p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}
.home-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ffdb16;
  color: #1a1a1a;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.home-cta-btn:hover {
  background: #3a3a3a;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .home-hero-inner {
    flex-direction: column;
    min-height: auto;
    padding: 30px 20px;
    gap: 24px;
  }
  .home-hero-cats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .home-cat-card {
    width: 100%;
    height: auto;
    min-height: 90px;
  }
  .home-hero-block {
    font-size: 18px;
    padding: 14px 18px;
  }
  .home-form {
    grid-template-columns: 1fr;
  }
}


/* Smart Picker */
.smart-picker {
  width: 100%;
  padding: 50px 0 60px;
}
.smart-picker-inner {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
}
.smart-picker-title {
  font-size: 34px;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.smart-picker-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.smart-picker-tab {
  width: 327px;
  height: 66px;
  border: none;
  background: #fff;
  font-size: 22px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  letter-spacing: 1px;
  color: #3a3a3a;
  cursor: pointer;
  transition: all .2s;
  box-shadow: inset 0 0 12px 1px rgba(0,0,0,0.1);
  border-radius: 5px;
}
.smart-picker-tab:hover {
  background: #fffbe6;
}
.smart-picker-tab.active {
  background: #ffdb16;
  color: #fff;
  box-shadow: none;
}
.smart-picker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.smart-picker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  padding: 0;
  text-decoration: none;
  color: #3a3a3a;
  transition: transform .2s, box-shadow .2s;
  height: 190px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.08);
}
.smart-picker-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.smart-picker-card-img {
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-picker-card-img img {
  max-width: 155px;
  max-height: 104px;
  object-fit: contain;
}
.smart-picker-card-label {
  font-size: 23px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  text-align: center;
  color: #3a3a3a;
  padding: 8px 10px 16px;
}
.smart-picker-card--budget {
  justify-content: center;
  min-height: 80px;
}
.smart-picker-card--budget .smart-picker-card-label {
  font-size: 18px;
  font-weight: 600;
}

/* Brand cards */
.smart-picker-grid--brands {
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}
.smart-picker-card--brand {
  width: 100%;
  max-width: 200px;
  height: 177px;
  padding: 20px 10px 14px;
}
.smart-picker-card-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.smart-picker-card-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.smart-picker-card-logo-placeholder {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  color: #4d4d4d;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
}
.smart-picker-card--brand .smart-picker-card-label {
  font-size: 21px;
  font-weight: 600;
  color: #4d4d4d;
  font-family: "Gilroy", "Gotham Pro", "Abel", "Open Sans", sans-serif;
}

/* Budget range block */
.smart-picker-budget {
  background: #fff;
  border-radius: 5px;
  box-shadow: 4.5px 4.5px 23px 0 rgba(0,0,0,0.12);
  padding: 36px 40px 32px;
}
.smart-picker-budget-title {
  font-size: 22px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.smart-picker-budget-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 36px;
}
.smart-picker-budget-label {
  font-size: 16px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  height: 36px;
}
.smart-picker-budget-input {
  width: 80px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0 8px;
  font-size: 14px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  outline: none;
  background: #fff;
}
.smart-picker-budget-input:focus {
  border-color: #ffdb16;
}
.smart-picker-range-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 120px;
  position: relative;
}
.smart-picker-next-btn {
  flex-shrink: 0;
  padding: 0 40px;
  height: 50px;
  background: #ffdb16;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.smart-picker-next-btn:hover {
  background: #3a3a3a;
  color: #fff;
}
.smart-picker-dual-range {
  position: relative;
  height: 21px;
  margin-top: 7px;
}
.smart-picker-range-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 21px;
  background: #e8e8e8;
  border-radius: 10px;
}
.smart-picker-range-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 21px;
  background: #ffdb16;
  border-radius: 10px;
  pointer-events: none;
}
.smart-picker-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 21px;
  background: transparent;
  pointer-events: none;
  margin: 0;
  outline: none;
  z-index: 2;
}
.smart-picker-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  pointer-events: all;
  border: none;
  position: relative;
  z-index: 3;
}
.smart-picker-range::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  pointer-events: all;
  border: none;
}
.smart-picker-range-labels {
  position: relative;
  height: 22px;
  font-size: 14px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin-top: 6px;
}
.smart-picker-range-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: left 0.05s ease;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .smart-picker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .smart-picker-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .smart-picker-tab {
    width: 100%;
    max-width: 327px;
    border-radius: 5px;
  }
  .smart-picker-tab:first-child,
  .smart-picker-tab:last-child {
    border-radius: 5px;
  }
  .smart-picker-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .smart-picker-title {
    font-size: 24px;
  }
  .smart-picker-card {
    height: 160px;
  }
  .smart-picker-card-label {
    font-size: 18px;
  }
}


/* Home Catalog Section */
.home-catalog {
  width: 100%;
}
.home-catalog-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 50px 50px;
}
.home-catalog-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 288px);
  gap: 19px;
  justify-content: center;
}
.hc-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 24px;
  text-align: center;
}
.hc-card-img-wrap {
  width: 227px;
  height: 172px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.hc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s;
}
.hc-card-img.active {
  opacity: 1;
}
.hc-card-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background .2s;
}
.hc-dot.active {
  background: #ffdb16;
}
.hc-card-name {
  font-size: 15px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin-bottom: 6px;
}
.hc-card-price {
  font-size: 24px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin-bottom: 14px;
}
.hc-card-btn-want {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  padding: 0 28px;
  border-radius: 9px;
  font-size: 20px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  margin-bottom: 14px;
  white-space: nowrap;
  background: #3a3a3a;
  color: #fff;
}
.hc-card-btn-want:hover {
  background: #ffdb16;
  color: #3a3a3a;
  transform: translateY(-1px);
}
.hc-card-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}
.hc-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hc-spec-icon {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 2px;
}
.hc-spec-val {
  font-size: 14px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
}
.hc-spec-label {
  font-size: 11px;
  color: #000;
}
.hc-card-btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 254px;
  height: 52px;
  background: #fff;
  border-radius: 11px;
  box-shadow: inset 0 0 8px 1px rgba(0,0,0,0.1);
  font-size: 21px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.hc-card-btn-detail:hover {
  background: #f9f9f9;
  transform: translateY(-1px);
}
.home-catalog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.home-catalog-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  padding: 0 40px;
  background: #3a3a3a;
  color: #fff;
  border-radius: 9px;
  font-size: 20px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.home-catalog-more-btn:hover {
  background: #555;
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .home-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-catalog-grid {
    grid-template-columns: 1fr;
  }
  .home-catalog-inner {
    padding: 24px 16px 32px;
  }
  .hc-card-btn-detail {
    width: 100%;
    max-width: 254px;
  }
}


/* Why ECOFACTOR Section */
.home-why {
  width: 100%;
}
.home-why-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 50px 60px 60px;
}
.home-why-header {
  margin-bottom: 36px;
}
.home-why-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home-why-subtitle {
  font-size: 20px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  max-width: 627px;
  line-height: 1.5;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 352px);
  gap: 24px;
  justify-content: center;
  max-width: 1200px;
}
.home-why-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  min-height: 263px;
  width: 352px;
  transition: transform .2s;
}
.home-why-card:hover {
  transform: translateY(-3px);
}
/* Yellow triangle — right side, grey default, yellow on hover */
.home-why-card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 130px 130px 0;
  border-color: transparent #e8e8e8 transparent transparent;
  transition: border-color .3s;
}
.home-why-card:hover .home-why-card-deco {
  border-color: transparent #ffdb16 transparent transparent;
}
.home-why-card-title {
  font-size: 20px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
/* Yellow line under title */
.home-why-card-line {
  width: 172px;
  height: 3px;
  background: #ffdb16;
  margin: 12px 0 16px;
  border-radius: 2px;
}
.home-why-card-text {
  font-size: 15px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-why-card {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .home-why-grid {
    grid-template-columns: 1fr;
  }
  .home-why-inner {
    padding: 30px 20px 40px;
  }
  .home-why-title {
    font-size: 22px;
  }
  .home-why-subtitle {
    font-size: 16px;
  }
}


/* Benefits Section */
.home-benefits {
  width: 100%;
}
.home-benefits-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 50px 44px;
}
.home-benefits-title {
  font-size: 30px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 538px);
  gap: 20px;
  justify-content: center;
}
.home-benefit-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 114px;
}
.home-benefit-num {
  font-size: 55px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #c4c4c4;
  line-height: 1;
  flex-shrink: 0;
}
.home-benefit-text {
  font-size: 17px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .home-benefits-grid {
    grid-template-columns: 1fr;
  }
  .home-benefits-inner {
    padding: 28px 20px 32px;
  }
  .home-benefits-title {
    font-size: 22px;
  }
}


/* Video Section */
.home-video {
  width: 100%;
}
.home-video-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 25px;
}
.home-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1122px;
  margin: 0 auto;
  padding-bottom: 54.3%;
  height: 0;
  border-radius: 5px;
  overflow: hidden;
}
.home-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}


/* Trust Section */
.home-trust {
  width: 100%;
}
.home-trust-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 100px;
  text-align: center;
}
.home-trust-title {
  font-size: 30px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-trust-text {
  font-size: 17px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  max-width: 1234px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-trust-inner {
    padding: 28px 20px;
  }
  .home-trust-title {
    font-size: 22px;
  }
  .home-trust-text {
    font-size: 15px;
  }
}


/* Delivery Section */
.home-delivery {
  width: 100%;
}
.home-delivery-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 50px 50px;
}
.home-delivery-title {
  font-size: 30px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.home-delivery-banner {
  width: 100%;
  max-width: 719px;
  margin: 0 auto 30px;
  border-radius: 5px;
  overflow: hidden;
}
.home-delivery-banner img {
  width: 100%;
  max-width: 719px;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}
.home-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 24px;
  justify-content: center;
}
.home-delivery-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 28px 24px;
  min-height: 188px;
  width: 380px;
  display: flex;
  flex-direction: column;
}
.home-delivery-card-title {
  font-size: 27px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin-bottom: 12px;
}
.home-delivery-card-line {
  width: 100%;
  height: 2px;
  background: #ffdb16;
  margin-bottom: 14px;
}
.home-delivery-card-text {
  font-size: 17px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .home-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-delivery-card {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .home-delivery-grid {
    grid-template-columns: 1fr;
  }
  .home-delivery-inner {
    padding: 28px 20px 32px;
  }
  .home-delivery-title {
    font-size: 22px;
  }
  .home-delivery-banner img {
    height: 125px;
    width: 100%;
  }
}


/* Auctions Section */
.home-auctions {
  width: 100%;
}
.home-auctions-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 50px 50px;
}
.home-auctions-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.home-auctions-subtitle {
  font-size: 25px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 30px;
}
.home-auctions-grid {
  display: grid;
  grid-template-columns: repeat(3, 375px);
  gap: 24px;
  justify-content: center;
}
.home-auctions-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 24px 28px;
  min-height: 324px;
  width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home-auctions-card-logo {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.home-auctions-card-logo img {
  max-height: 84px;
  max-width: 180px;
  object-fit: contain;
}
.home-auctions-card-logo--empty {
  height: 84px;
}
.home-auctions-card-name {
  font-size: 27px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-auctions-card-line {
  width: 92px;
  height: 3px;
  background: #ffdb16;
  margin-bottom: 16px;
  border-radius: 2px;
}
.home-auctions-card-text {
  font-size: 19px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.1;
  max-width: 317px;
}

@media (max-width: 1200px) {
  .home-auctions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-auctions-card {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .home-auctions-grid {
    grid-template-columns: 1fr;
  }
  .home-auctions-inner {
    padding: 28px 20px 32px;
  }
  .home-auctions-title {
    font-size: 22px;
  }
  .home-auctions-subtitle {
    font-size: 18px;
  }
}


/* Team Section */
.home-team {
  width: 100%;
}
.home-team-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 70px 50px;
}
.home-team-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.home-team-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.home-team-card {
  width: 242px;
  min-height: 345px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-team-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 28px 24px;
  text-align: center;
}
.home-team-card-photo {
  width: 187px;
  height: 197px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
}
.home-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-team-card-name {
  font-size: 28px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.home-team-card-line {
  width: 148px;
  height: 3px;
  background: #ffdb16;
  margin-bottom: 10px;
  border-radius: 2px;
}
.home-team-card-role {
  font-size: 20px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
}

@media (max-width: 1100px) {
  .home-team-grid {
    gap: 16px;
    flex-wrap: wrap;
  }
  .home-team-card {
    width: 100%;
    max-width: 242px;
    min-height: 310px;
  }
}
@media (max-width: 640px) {
  .home-team-grid {
    flex-direction: column;
    align-items: center;
  }
  .home-team-inner {
    padding: 28px 20px 32px;
  }
  .home-team-title {
    font-size: 22px;
  }
}

/* SOCIALS / TELEGRAM+VIBER SECTION — Figma exact */
.home-socials {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
.home-socials-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: visible;
  position: relative;
}
.home-socials-phone {
  flex-shrink: 0;
  width: 310px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.home-socials-phone img {
  width: 251px;
  height: 500px;
  object-fit: contain;
  display: block;
  position: absolute;
}
.home-socials-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px 40px 0;
  gap: 0;
}
.home-socials-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 40px;
}
.home-socials-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 18px;
}
.home-socials-check {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  margin-top: 2px;
}
.home-socials-item p {
  font-size: 25px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  line-height: 1.3;
  margin: 0;
  max-width: 652px;
}
.home-socials-btns {
  display: flex;
  gap: 77px;
  margin-top: 34px;
  padding-left: 55px;
}
.home-socials-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 52px;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
  background: #ffdb16;
  color: #3a3a3a;
  border: none;
}
.home-socials-btn:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .home-socials {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .home-socials-inner {
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
    align-items: center;
  }
  .home-socials-phone {
    width: 100%;
    justify-content: center;
    height: 200px;
    overflow: hidden;
  }
  .home-socials-phone img {
    width: 180px;
    height: auto;
  }
  .home-socials-content {
    padding: 0 20px 36px;
    align-items: center;
  }
  .home-socials-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .home-socials-item {
    gap: 12px;
  }
  .home-socials-item p {
    font-size: 18px;
  }
  .home-socials-check {
    width: 26px;
    height: 26px;
  }
  .home-socials-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    margin-top: 24px;
  }
  .home-socials-btn {
    width: 200px;
    font-size: 20px;
  }
}

/* CONTEST / GIVEAWAY SECTION — Figma exact */
.home-contest {
  width: 100%;
}
.home-contest-inner {
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-contest-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-contest-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-contest-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.home-contest-content {
  position: relative;
  z-index: 2;
  max-width: 1101px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.home-contest-title {
  font-size: 39px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.home-contest-subtitle {
  font-size: 31px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.3;
}
.home-contest-text {
  font-size: 26px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 30px;
  max-width: 1101px;
}
.home-contest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 292px;
  height: 50px;
  padding: 0 40px;
  background: #ffdb16;
  color: #3a3a3a;
  border: none;
  border-radius: 6px;
  font-size: 23px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
}
.home-contest-btn:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .home-contest-inner {
    min-height: 360px;
  }
  .home-contest-content {
    padding: 40px 20px;
  }
  .home-contest-title {
    font-size: 26px;
  }
  .home-contest-subtitle {
    font-size: 20px;
  }
  .home-contest-text {
    font-size: 18px;
  }
  .home-contest-btn {
    min-width: 220px;
    height: 44px;
    font-size: 18px;
  }
}

/* BRANDS LIST SECTION — Figma exact */
.home-brands {
  width: 100%;
}
.home-brands-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 60px 50px;
}
.home-brands-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-align: center;
  margin: 0 0 10px;
}
.home-brands-subtitle {
  font-size: 22px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  text-align: center;
  margin: 0 0 30px;
}
.home-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}
.home-brands-col {
  display: flex;
  flex-direction: column;
}
.home-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  color: #3a3a3a;
  transition: background .15s;
}
.home-brand-row:hover {
  background: #fffbe6;
}
.home-brand-row:last-child {
  border-bottom: none;
}
.home-brand-logo {
  width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-brand-logo img {
  max-width: 40px;
  max-height: 36px;
  object-fit: contain;
}
.home-brand-name {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
}
.home-brand-arrow {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-brand-arrow svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1024px) {
  .home-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-brands-grid {
    grid-template-columns: 1fr;
  }
  .home-brands-inner {
    padding: 28px 20px 36px;
  }
  .home-brands-title {
    font-size: 22px;
  }
  .home-brands-subtitle {
    font-size: 16px;
  }
}

/* VEHICLE SELECTOR FORM — Figma exact */
.vehicle-selector {
  width: 100%;
}
.vs-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 42px 50px 50px;
  text-align: center;
  font-family: 'Gotham Pro', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
.vs-title {
  font-size: 36px;
  font-weight: 500;
  color: #3a3a3a;
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.vs-subtitle {
  font-size: 25px;
  font-weight: 300;
  color: #3a3a3a;
  margin: 0 0 30px;
  line-height: 1.3;
}
.vs-form {
  max-width: 610px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vs-row {
  display: flex;
  gap: 18px;
}
.vs-field {
  flex: 1;
  position: relative;
}
/* Text & phone inputs */
.vs-field--input input,
.vs-field--phone input {
  width: 100%;
  height: 39px;
  border: 1.2px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 14px;
  font-size: 18px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #3a3a3a;
  background: #f1f1f1;
  outline: none;
  transition: border-color .2s, background .2s;
}
.vs-field--input input::placeholder,
.vs-field--phone input::placeholder {
  color: #6c6c6c;
}
.vs-field--active input {
  border-color: #3a3a3a;
  background: #fff;
}
.vs-field--input input:focus,
.vs-field--phone input:focus {
  border-color: #3a3a3a;
  background: #fff;
}
/* Phone with flag */
.vs-field--phone { position: relative; }
.vs-phone-flag {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}
.vs-phone-flag svg:first-child { border-radius: 2px; }
.vs-phone-arrow { width: 8px; height: 5px; }
.vs-field--phone input { padding-left: 46px; }
/* Select fields */
.vs-field--select { position: relative; }
.vs-field--select select {
  width: 100%;
  height: 39px;
  border: 1.2px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 32px 0 14px;
  font-size: 18px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #3a3a3a;
  background: #f1f1f1;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}
.vs-field--select select:focus { border-color: #3a3a3a; }
.vs-field--select select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.vs-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
/* Range fields */
.vs-field--range { flex: 1; position: relative; }
.vs-range-label {
  display: block;
  width: 100%;
  height: 39px;
  line-height: 39px;
  border: 1.2px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 14px;
  font-size: 18px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #3a3a3a;
  background: #f1f1f1;
  margin-bottom: 15px;
  text-align: left;
}
.vs-range-wrap {
  position: relative;
  height: 16px;
  margin: 0 4px;
}
.vs-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 14px;
  transform: translateY(-50%);
  background: #e8e8e8;
  border-radius: 7px;
  pointer-events: none;
}
.vs-range-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  background: #ffdb16;
  border-radius: 7px;
  pointer-events: none;
}
.vs-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
  z-index: 2;
}
.vs-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.22);
  cursor: pointer;
  pointer-events: all;
  border: none;
  position: relative;
  z-index: 3;
}
.vs-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.22);
  cursor: pointer;
  pointer-events: all;
  border: none;
}
.vs-range-values {
  display: none;
}
/* Required star */
.vs-req {
  color: #dc2626;
  font-style: normal;
  font-weight: 600;
  margin-left: 2px;
}
/* Validation error */
.vs-field--err input,
.vs-field--err .vs-dd-trigger {
  border-color: #dc2626 !important;
}
.vs-field--err .vs-range-label {
  border-color: #dc2626 !important;
}
.vs-field-error {
  font-size: 11px;
  color: #dc2626;
  margin-top: 3px;
  font-style: normal;
  font-weight: 400;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
}
/* Custom dropdown for vehicle-selector */
.vs-dd {
  position: relative;
  width: 100%;
}
.vs-dd-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 39px;
  border: 1.2px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 12px 0 14px;
  font-size: 18px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #3a3a3a;
  background: #f1f1f1;
  cursor: pointer;
  transition: border-color .2s;
  user-select: none;
}
.vs-dd-trigger:hover { border-color: #bbb; }
.vs-dd-trigger.open { border-color: #3a3a3a; background: #fff; }
.vs-dd-trigger.has-value { background: #f1f1f1; }
.vs-dd-trigger.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.vs-dd-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.vs-dd-label.placeholder { color: #6c6c6c; }
.vs-dd-arrow {
  flex-shrink: 0;
  transition: transform .2s;
}
.vs-dd-trigger.open .vs-dd-arrow { transform: rotate(180deg); }
.vs-dd-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  z-index: 100;
  display: none;
  animation: vsddIn .15s ease;
}
@keyframes vsddIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.vs-dd-menu.open { display: block; }
.vs-dd-search {
  width: 100%;
  height: 34px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 12px;
  font-size: 14px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  color: #3a3a3a;
  outline: none;
  background: transparent;
}
.vs-dd-search::placeholder { color: #aaa; font-style: italic; }
.vs-dd-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.12) transparent;
}
.vs-dd-list::-webkit-scrollbar { width: 4px; }
.vs-dd-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }
.vs-dd-opt {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
  font-weight: 300;
  color: #3a3a3a;
  cursor: pointer;
  transition: background .1s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vs-dd-opt:hover { background: #f5f5f5; }
.vs-dd-opt.active { background: #fff8d6; color: #3a3a3a; font-weight: 500; }
.vs-dd-opt.hidden { display: none; }
/* Submit button — rounded rect, yellow, white text */
.vs-submit {
  width: 100%;
  height: 62px;
  background: #ffdb16;
  border: none;
  border-radius: 10px;
  font-size: 28px;
  font-family: 'Abel', sans-serif;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s, transform .1s;
  letter-spacing: 0.3px;
  line-height: 1;
}
.vs-submit:hover {
  background: #3a3a3a;
  transform: translateY(-1px);
}
.vs-submit:active { transform: translateY(0); }
/* Success state */
.vs-success {
  padding: 40px 20px;
  text-align: center;
}
.vs-success-icon { font-size: 52px; margin-bottom: 16px; }
.vs-success-text {
  font-size: 22px;
  font-weight: 300;
  color: #3a3a3a;
  font-family: 'Gotham Pro', 'Open Sans', sans-serif;
}
/* Responsive */
@media (max-width: 768px) {
  .vs-inner { padding: 30px 20px 36px; }
  .vs-title { font-size: 24px; }
  .vs-subtitle { font-size: 16px; margin-bottom: 20px; }
  .vs-form { max-width: 100%; }
  .vs-row { flex-direction: column; gap: 10px; }
  .vs-submit { height: 50px; font-size: 22px; }
}
@media (max-width: 480px) {
  .vs-inner { padding: 24px 16px 30px; }
  .vs-title { font-size: 20px; }
  .vs-subtitle { font-size: 14px; }
  .vs-submit { height: 46px; font-size: 20px; }
}

/* Contact Form Section (bottom) */
.home-contact-form {
  width: 100%;
}
.home-contact-form-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 25px 0 rgba(0,0,0,0.12);
  padding: 40px 60px 44px;
}
.home-contact-form-title {
  font-size: 30px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin: 0 0 8px;
}
.home-contact-form-subtitle {
  font-size: 24px;
  font-weight: 400;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  margin: 0 0 28px;
}
.home-contact-form-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.home-cf-field {
  flex: 1;
  position: relative;
}
.home-cf-field input {
  width: 100%;
  height: 43px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0 14px;
  font-size: 16px;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  color: #3a3a3a;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}
.home-cf-field input:focus {
  border-color: #ffdb16;
}
.home-cf-field--phone {
  position: relative;
}
.home-cf-flag {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}
.home-cf-arrow {
  margin-top: 1px;
}
.home-cf-field--phone input {
  padding-left: 48px;
}
.home-cf-btn {
  flex-shrink: 0;
  width: 325px;
  height: 43px;
  background: #ffdb16;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 19px;
  font-weight: 500;
  font-family: "Gotham Pro", "Abel", "Open Sans", sans-serif;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.home-cf-btn:hover {
  background: #3a3a3a;
  color: #fff;
}
@media (max-width: 900px) {
  .home-contact-form-row {
    flex-direction: column;
    gap: 12px;
  }
  .home-cf-btn {
    width: 100%;
  }
  .home-contact-form-inner {
    padding: 28px 20px 32px;
  }
  .home-contact-form-title {
    font-size: 22px;
  }
  .home-contact-form-subtitle {
    font-size: 18px;
  }
}

/* Mobile catalog carousel */
@media (max-width: 640px) {
  .home-catalog-inner {
    overflow: hidden;
  }
  .home-catalog-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .home-catalog-grid::-webkit-scrollbar { display: none; }
  .home-catalog-grid .hc-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    min-width: 0;
  }
}


/* Phone Country Selector Dropdown (vs-dd style) */
.phone-dd {
  position: relative;
}
.phone-dd-menu {
  position: fixed;
  max-height: 240px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  z-index: 10000;
  display: none;
  animation: vsddIn .15s ease;
  width: 300px;
}
.phone-dd-menu.open { display: block; }
.phone-dd-flag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 16px;
}
.phone-dd-flag svg { border-radius: 2px; display: block; }
.phone-dd-flag-current {
  display: inline-flex;
  align-items: center;
}
.phone-dd-flag-current svg { border-radius: 2px; display: block; }
.phone-dd-name { flex: 1; }
.phone-dd-dial { color: #888; font-size: 13px; flex-shrink: 0; margin-left: auto; }
.phone-dd-menu .vs-dd-opt {
  gap: 10px;
}
.phone-dd-menu .vs-dd-list {
  max-height: 250px;
}
