:root {
  --green: #9CFF1E;
  --dark: #151515;
  --gray: #888888;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white);
}

/* HEADER */
.header {
  position: relative;
  z-index: 10;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 105px;
  background: linear-gradient(#0b0b0b, #111);
}

.header-menu {
    display: flex;
    gap: 140px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-indicator {
  width: 8px;
  height: 6px;
  background: #CCCCCC; /* неактивный */
  clip-path: polygon(
    25% 0%,
    100% 0%,
    75% 100%,
    0% 100%
  );
  transition: background .2s ease;
}

.nav-item.active .nav-indicator {
  background: var(--green);
}

.nav-item.active {
  color: var(--green);
}

.nav-item:hover .nav-indicator {
  background: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.search {
  width: 300px;
  height: 44px;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0 14px 0 26px;

  border: none;
  outline: none;

  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  color: var(--dark);
  background-color: #fff;

  clip-path: polygon(
    2% 0%,
    100% 0%,
    98% 100%,
    0% 100%
  );

  /* ИКОНКА ВПИСАНА В СКОС */
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23000' d='M9.43164 1.76082C8.38607 1.76082 7.39779 1.95417 6.4668 2.34086C5.55013 2.72756 4.74805 3.25236 4.06055 3.91527C3.37305 4.57818 2.82878 5.35158 2.42773 6.23546C2.02669 7.13314 1.82617 8.08608 1.82617 9.09425C1.82617 10.1024 2.02669 11.0485 2.42773 11.9323C2.82878 12.83 3.37305 13.6103 4.06055 14.2732C4.74805 14.9361 5.55013 15.4609 6.4668 15.8476C7.39779 16.2205 8.38607 16.407 9.43164 16.407C10.4772 16.407 11.4583 16.2205 12.375 15.8476C13.306 15.4609 14.1152 14.9361 14.8027 14.2732C15.4902 13.6103 16.0345 12.83 16.4355 11.9323C16.8223 11.0485 17.0156 10.1024 17.0156 9.09425C17.0156 8.08608 16.8223 7.13314 16.4355 6.23546C16.0345 5.35158 15.4902 4.57818 14.8027 3.91527C14.1152 3.25236 13.306 2.72756 12.375 2.34086C11.4583 1.95417 10.4772 1.76082 9.43164 1.76082ZM0.257813 9.09425C0.257813 7.86511 0.501302 6.71883 0.988282 5.65541C1.46094 4.57818 2.11263 3.63906 2.94336 2.83805C3.77409 2.03703 4.74805 1.40865 5.86523 0.952899C6.9681 0.483339 8.1569 0.248558 9.43164 0.248558C10.6921 0.248558 11.8809 0.483339 12.998 0.952899C14.1152 1.40865 15.0856 2.03703 15.9092 2.83805C16.7327 3.63906 17.388 4.57818 17.875 5.65541C18.362 6.71883 18.6055 7.86511 18.6055 9.09425C18.6055 10.2405 18.3906 11.3212 17.9609 12.3363C17.5313 13.3514 16.9512 14.2525 16.2207 15.0397L20.9902 19.6179C21.1335 19.7698 21.2051 19.9494 21.2051 20.1565C21.2051 20.3637 21.1335 20.5432 20.9902 20.6952C20.8327 20.8471 20.6465 20.923 20.4316 20.923C20.2168 20.923 20.0306 20.8471 19.873 20.6952L15.0605 16.0548C14.2871 16.6487 13.4206 17.1113 12.4609 17.4428C11.5013 17.7742 10.4915 17.9399 9.43164 17.9399C8.1569 17.9399 6.9681 17.7052 5.86523 17.2356C4.74805 16.766 3.77409 16.1342 2.94336 15.3401C2.11263 14.546 1.46094 13.6103 0.988281 12.5331C0.501302 11.4559 0.257813 10.3096 0.257813 9.09425Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-size: 22px 21px;

  background-position: right 24px center;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.cart {
  position: relative;
  display: inline-block;
}

.cart-dot {
  position: absolute;
  top: 14px;
  right: -6px;
  width: 14px;
  height: 15px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
}

.auth {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
  color: var(--white);
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 5px;
}

.header-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 14px 105px;
  background: var(--green);
  color: #000;
  font-size: 14px;

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}

.header-info svg {
    height: 22px;
}

.info-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vertical-line {
    width: 1px;
    height: 22px;
    background-color: var(--dark);
}


/* DROPDOWN */
.shop-dropdown {
  position: absolute;
  top: 165px;
  left: 0;
  width: 100%;

  display: none;
  grid-template-columns: 0.8fr 0.8fr 0.5fr 1fr;
  gap: 80px;
  padding: 60px 375px;

  background: rgba(85,151,2,.43);
  backdrop-filter: blur(10px);
  color: #fff;
}

.shop-dropdown.active {
  display: grid;
}

.dropdown-col .title-section,
.dropdown-cart .title-section{
  justify-content: start;
  font-size: 12px;
  line-height: 24px;
  padding-bottom: 11px;
  border-bottom: 5px solid var(--white);

  margin-bottom: 10px;
}

.dropdown-col a {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0;
  margin: 0;

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 40px;
  color: var(--white);
  text-decoration: none;

  border-bottom: 1px solid var(--white);
}

.dropdown-col a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);

  clip-path: polygon(
    25% 0%,
    100% 0%,
    75% 100%,
    0% 100%
  );

  flex-shrink: 0;
}

.dropdown-col a:hover {
  color: var(--green);
}

.dropdown-col a:hover::before {
  background: #fff;
}

.dropdown-cart {
  display: flex;
  flex-direction: column;
}

.dropdown-cart .cart-item {
  display: flex;
  gap: 26px;
  margin-bottom: 12px;
}

.dropdown-cart .cart-item:last-child {
  margin-bottom: 0;
}

.dropdown-cart .cart-thumb {
  position: relative;
  width: 148px;
  flex-shrink: 0;
}

.dropdown-cart .cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dropdown-cart .badge {
  position: absolute;
  top: 8px;
  left: 8px;

  background-color: #000;
  color: var(--white);
  font-family: "Plus Jakarta Sans";
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;

  padding: 3px 5px;
  border-radius: 2px;
}

.dropdown-cart .cart-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.dropdown-cart .cart-category {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
}

.dropdown-cart .cart-title {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  margin: 4px 0 22px;
}

.dropdown-cart .cart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
}

.dropdown-cart .cart-price {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.dropdown-cart .qty {
  display: flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 8px 5px;
}

.dropdown-cart .qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;

  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  line-height: 8px;
}

.dropdown-cart .qty span {
  width: 32px;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 12px;
}

.dropdown-cart .checkout-btn {
  width: 100%;
  margin-top: 20px;

  padding: 10px 0;
  border-radius: 3px;
  background: #000;
  color: #fff;

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;

  border: none;
  cursor: pointer;

  clip-path: polygon(
    3% 0%,
    100% 0%,
    97% 100%,
    0% 100%
  );
}

.burger {
  display: none;
  width: 39px;
  height: 37px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu-wrap, .mobile-cart-wrap {
  display: none;
}

@media  (min-width: 1024px) and (max-width: 1200px) {
  .mobile-menu-wrap {
    display: none;
  }

  .header-top {
    padding: 32px 50px;
  }

  .header-info {
    padding: 14px 50px;
    gap: 60px;
  }

  .burger {
    display: flex;
  }

  header .nav {
    display: none;
  }

  .search {
    width: 220px;
    height: 40px;
  }

  .search input {
    padding: 0 12px 0 22px;
    background-size: 18px 18px;
    background-position: right 18px center;
  }

  .header-actions {
    gap: 28px;
  }

  .shop-dropdown {
    z-index: 9999;
    position: fixed;
    top: 120px;
    width: 100%;
    overflow-y: auto;

    gap: 40px;
    padding: 30px 50px 128px;
  }

  .shop-dropdown.active {
    display: flex;
    justify-content: space-between;
  }

  .dropdown-col {
    flex: 1;
  }

  .empty {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 27px 20px;
  }

  .header-info {
    padding: 14px 20px;
    gap: 16px;
  }

   .burger {
    display: flex;
  }

  .info-text {
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 8px;
    white-space: nowrap;
  }

  header .nav {
    display: none;
  }

  header .search {
    display: none;
  }

  .header-actions {
    gap: 20px;
  }

  .header-actions .auth {
    display: none;
  }

  .mobile-menu-wrap {
    position: fixed;
    top: 186px;
    left: 0;
    width: 100%;
    height: calc(100vh - 186px);
    background: rgba(74, 131, 2, 0.43);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    overflow-y: auto;
}

  .mobile-nav-wrap.active {
    display: block;
    padding: 20px;
  }

  .mobile-nav {
    margin-top: 40px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .mobile-nav .search {
    width: 100%;
  }

  .mobile-nav .menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .mobile-nav .nav-item {
    font-size: 22px;
    line-height: 42px;
  }

  .mobile-shop-btn {
    background-color: transparent;
    border: 0;
  }

  .mobile-nav .nav-item:hover .nav-indicator {
    background: #000;
  }

  .mobile-nav .auth {
    font-size: 16px;
    line-height: 29px;
  }

  .mobile-menu, .mobile-shop {
    padding: 30px 20px;
  }
  .mobile-menu,
  .mobile-shop {
    display: none;
  }

  .mobile-menu.active,
  .mobile-shop.active{
    display: block;
  }


  /* desktop dropdown */
  .shop-dropdown {
    display: none !important;
  }

  .mobile-cart-wrap {
    position: fixed;
    top: 186px;          /* высота хедера */
    left: 0;
    width: 100%;
    height: calc(100vh - 186px);

    background: rgba(76, 135, 0, 0.43);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 300;

    display: none;
    overflow-y: auto;
  }

  .mobile-cart-wrap.active {
      display: block;
  }

  .mobile-cart {
      margin: 0 auto;
      padding: 20px 20px 150px;
      color: var(--white);
  }

  .mobile-top {
    display: flex;
    justify-content: end;
  }

  .mobile-shop .mobile-top {
    justify-content: space-between;
  }

  .mobile-close, .mobile-back {
    background: none;
    border: none;
    font-family: 'Inter';
    font-size: 18px;
    line-height: 42px;
    color: var(--white);
  }

  .mobile-shop .dropdown-col {
    margin-top: 40px;
  }

  .mobile-shop .title-section {
    color: var(--white);
  }

  .mobile-shop .dropdown-col a::before {
    width: 8px;
    height: 8px;
    background: var(--white)
  }
}


/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/main-image.png');
  background-repeat: no-repeat;       /* без повторений */
  background-position: center top;    /* по центру горизонтально, сверху вертикально */
  background-size: 100% auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.subtitle {
  color: var(--green);
  margin-bottom: 20px;

  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 51px;
  font-style: italic;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 64px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 14px 57px;
  clip-path: polygon(
    6% 0%,
    100% 0%,
    94% 100%,
    0% 100%
  );

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn.green {
  background: var(--green);
}

.btn.white {
  background: #fff;
  color: #000;
}

@media (max-width: 1200px) {
  .hero {
    height: auto;
  }
  .hero-bg {
    background: url('/images/main-image-planshet.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-content {
    padding: 160px 50px 400px;
  }
}

@media (max-width: 767px) {
  .hidden {
    display: none;
  }

  .hero {
    height: auto;
  }
  .hero-bg {
    background: url('/images/main-mobile.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-content {
    padding: 64px 20px 260px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 140%;
    color: var(--white);
    margin-bottom: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 32px;
  }
}


/* goal */
.goal {
    padding: 66px 105px;
    text-align: center;
}

.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

h2 {
    font-family: "Inter";
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    line-height: 36px;
}

.description {
    font-family: "Plus Jakarta Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--gray);
    width: 85%;
    margin: 0 auto;
}

.goal-choice {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.goal-target {
    flex: 1 1 220px;        /* сжимается + базовая ширина */
    min-width: 160px;       /* защита от слишком малого размера */
    box-sizing: border-box;
}

.goal-target img {
  width: 100%;
}

.goal-subtitle {
    font-family: "Inter";
    font-weight: 700;
    font-style: italic;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 28px;
    margin-bottom: 8px;
}

.goal-slogan {
    font-family: "Plus Jakarta Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--gray);
}

@media (max-width: 1200px) {
  .goal {
      padding: 50px 50px 100px;
  }

  .description {
      width: 100%;
  }

  .goal-choice {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      row-gap: 50px;
  }

  .goal-choice > * {
    flex: 0 0 calc(50% - 30px); /* каждый элемент занимает половину строки минус половина gap */
    box-sizing: border-box;     /* чтобы padding/gap не ломали ширину */
  }
}

@media (max-width: 767px) {
  .goal {
      padding: 40px 20px;
  }

  .title-section {
    margin-bottom: 18px;
  }

  .goal-choice {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      gap: 48px;
  }
}


/*product*/
.products-section {
  padding: 60px 300px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.products-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filters {
  display: flex;
  gap: 12px;
}

.filter {
  padding: 3px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--gray);
  transition: all 0.2s;
}

.filter.active {
  background-color: var(--green);
  color: white;
  border-color: var(--green);

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--dark);
  clip-path: polygon(
    6% 0%,
    100% 0%,
    94% 100%,
    0% 100%
  );
}

.arrows {
  display: flex;
  gap: 2px;
}

.arrow {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 3px;
  clip-path: polygon(
    14% 0%,
    100% 0%,
    86% 100%,
    0% 100%
  );
  background-color: #F5F5F5;
  cursor: pointer;

  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.arrow:hover {
  background-color: #f0f0f0;
}

.products-grid-wrapper {
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3);
  gap: 10px;
  row-gap: 30px;
  transition: transform 0.3s ease;
}

.product {
  background-color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  height: auto;
}

.product-image {
  position: relative;
  width: 100%;
  line-height: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 3px;
}

.badge {
  padding: 3px 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  border-radius: 2px;
  color: var(--white);
  background-color: var(--dark);

  clip-path: polygon(
    12% 0%,
    100% 0%,
    88% 100%,
    0% 100%
  );
}

.product-info {
  padding: 20px 30px;
  background-color: #F5F5F5;
  margin: 0;
}

.product-name {
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
}

.product-type {
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: var(--gray);
}

.product-code {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--dark);
}

.product-price {
  margin-top: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--gray);
}

.new-price {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--dark);
}

.discount-percent {
  background-color: var(--green);
  padding: 2px 10px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;

  clip-path: polygon(
    12% 0%,
    100% 0%,
    88% 100%,
    0% 100%
  );
}

@media (max-width: 1200px) {
  .products-section {
    padding: 0 50px;
  }

  .products-header {
    margin-bottom: 90px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3);
    gap: 10px;
    row-gap: 30px;
    transition: transform 0.3s ease;
  }

  .product-info {
    padding: 10px 20px;
  }

  .product-brand, .product-type {
    font-size: 10px;
  }

  .product-code, .old-price {
    font-size: 12px;
  }

  .new-price {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 0 20px;
  }

  .products-header {
    margin-bottom: 80px;
    flex-direction: column;
    gap: 18px;
  }

  .filters {
    gap: 0;
    justify-content: space-between;
  }

  .products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .product-info {
    padding: 14px 30px;
  }

  .product-brand, .product-type {
    font-size: 12px;
  }

  .product-code, .old-price {
    font-size: 14px;
  }

  .new-price {
    font-size: 16px;
  }

  .filter {
    padding: 3px 10px;
  }
}


/* promo */
.promo {
  position: relative;
  padding: 140px 300px 60px;
  background: #fff;
}

.promo-bg {
  position: absolute;
  left: 0;
  bottom: 60px;
  z-index: 0;
}

.promo-layout {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 10px;

  margin: 0 auto;
}

.promo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-col--left {
  width: 40%;
}

.promo-col--center, .promo-col--right {
  width: 30%;
}

.promo-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.promo-item--big, .promo-item--tall {
  height: 690px;
}

.promo-item--half {
  height: 340px;
}

.promo-item--big .promo-content {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: flex-end;
  text-align: right;
}

.promo-item--half .promo-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.promo-item-two .promo-content {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: right;
}

.promo-col--right .promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  padding: 65px 40px;
}

.promo-content {
  position: relative;
  height: 100%;
  padding: 40px;
  color: var(--white);
}

.promo-item--big .promo-content .promo-tag {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--white);
}

.promo-tag {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--green);
}

.promo-item--big .promo-content h3 {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 70px;
  line-height: 60px;
  margin-bottom: 12px;
  color: var(--green);
}

.promo-item--big .promo-content span {
  font-size: 40px;
  color: var(--white);
}

.promo-item--half .promo-content h3 {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 12px;
  color: var(--white);
}

.promo-col--right .promo-content h3 {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 12px;
  color: var(--white);
}

.promo-content .btn {
  padding: 5px 24px;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .promo {
    padding: 70px 50px 50px;
  }

  .promo-bg {
    display: none;
  }

  .promo-col--left {
    width: 931px;
  }

  .promo-col--center {
    width: 370px;
  }

  .promo-col--right {
    display: none;
  }

  .promo-item--big, .promo-item--tall {
    height: 537px;
  }

  .promo-item--half {
    height: 263px;
  }
}

@media (max-width: 767px) {
  .promo {
    padding: 40px 20px;
  }

  .promo-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .promo-content {
    width: 100%;
  }

  .promo-col--left, .promo-col--center {
    width: auto;
  }

  .promo-col--right {
    display: none;
  }

  .promo-item--big, .promo-item--tall, .promo-item--half {
    height: auto;
  }

  .promo-item--big .promo-content {
    padding: 165px 40px 40px;
  }

  .promo-item--big .promo-content .promo-tag {
    font-size: 10px;
  }

  .promo-item--big .promo-content h3 {
    font-size: 46px;
    line-height: 40px;
  }

  .promo-item--big .promo-content span {
    font-size: 25px;
    line-height: 39px;
  }
}



/*our-selection*/
.our-selection {
  padding: 60px 300px 100px;
}

.selection-goals {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.goal-item {
  background-color: #EFEFEF;
  width: 315px;
  padding-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.goal-item .target-subtitle {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}

.goal-item .goal-slogan {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--green);
  width: fit-content;
  margin: 0 auto;
}

.goal-item img {
  display: block;
  margin: 0 auto;
  margin-top: auto;
}

@media (max-width: 1200px) {
  .our-selection {
    padding: 0 50px;
  }

  .selection-goals {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .selection-goals > * {
    flex: 0 0 calc(50% - 5px);
    box-sizing: border-box;
  }

  .goal-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .our-selection {
    padding: 0 20px;
  }

  .selection-goals {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}


/* brand */
.brand {
  position: relative;
  padding: 60px 300px 200px 250px;
  background: #fff;
}

.brand-inner {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand-composition {
  position: relative;
  height: 460px;
}

.brand-media {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(80%, -50%);

  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: #9CFF1E;

  outline: 1px solid #fff;
  outline-offset: 11px;
}

.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #000;
}

/* GREEN LABEL — НАЕЗЖАЕТ */
.brand-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 630px;
  padding: 0 56px 48px;

  background: #9CFF1E;

  clip-path: polygon(
    6% 0%,
    100% 0%,
    94% 100%,
    0% 100%
  );

  z-index: 3; /* ВАЖНО — выше картинки */
}

.brand .promo-bg {
  left: auto;
  right: 0;
  bottom: 300px;
  z-index: 0;
  transform: scaleX(-1);
}

.brand-label .label {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  line-height: 64px;
  color: var(--dark);
  margin-bottom: 28px;
}

.brand-label .label span {
  color: var(--white);
}

.brand-label .description {
  font-size: 18px;
  line-height: 28px;
  color: #464646;
  width: 100%;
}

.brand-numbers {
  display: flex;
  gap: 105px;
  margin: 0 auto;
  padding-left: 48px;
}

.numbers-item .numbers-title {
  font-family: "Inter";
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  line-height: 64px;
  color: var(--green);
}

.numbers-item .numbers-description {
  font-family: "Inter";
  font-weight: 600;
  font-style: italic;
  font-size: 12px;
  line-height: 30px;
  color: var(--black);
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .brand {
    padding: 100px 50px 100px 0;
    overflow: hidden;
  }

  .brand-composition {
    position: relative;
    height: 350px;
  }

  .play-btn {
    display: none;
  }

  .brand-label {
    top: 80%;
    padding: 0 60px 60px;
  }

  .brand-numbers {
    margin-top: 120px;
  }

  .brand .promo-bg {
    display: block;
    left: auto;
    right: -92px;
    bottom: 0;
    z-index: 0;
    transform: scaleX(-1);
    height: 386px;
  }
}

@media (max-width: 767px) {
  .brand {
    padding: 50px 0;
    overflow: hidden;
  }

  .brand-inner {
    padding: 0;
  }

  .brand-composition {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .brand-media {
    position: relative;
    width: calc(100% - 32px);
    margin-left: auto;
  }

  .brand-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .play-btn {
    display: none;
  }

  .brand-label {
    position: relative;
    top: auto;
    left: 0;
    transform: none;

    width: 100%;
    margin-top: -40px; /* наезд на фото */

    padding: 32px 100px 40px 24px;

    clip-path: polygon(
      0 0,
      100% 0,
      80% 100%,
      0% 100%
    );
  }

  .brand-numbers {
    margin: 20px 24px 0;
    padding: 30px 0;
    border-top: 1px solid #E7E7E7;
    justify-content: space-between;
  }

  .brand .promo-bg {
    display: none;
  }
}



/*review*/
.review {
  position: relative;
}

.review .promo-bg {
  bottom: 100%;
  height: 452px;
}

.review-inner {
  background-color: var(--green);
  color: var(--black);
  padding: 60px 300px;
}

.review .title-section {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.reviews {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.review-item {
  flex: 1;
  padding: 0 70px 0 15px;
  border-right: 1px solid #E7E7E7;

  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-item:last-child {
  border-right: 0;
}

.review-item:nth-child(2) {
  padding: 0 70px;
}

.review-item:nth-child(3) {
  padding: 0 15px 0 70px;
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-object {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.review-name {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}

.review-name span {
  font-weight: 400;
  color: var(--gray);
}

.review-text {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: #464646;
}

@media (max-width: 1200px) {
  .review .promo-bg {
    bottom: 100%;
    height: 452px;
  }

  .review-inner {
    background-color: var(--green);
    color: var(--black);
    padding: 60px 50px;
  }

  .reviews {
    margin-top: 60px;
  }

  .review-item {
    flex: 1;
    padding: 0 70px 0 15px;
    border-right: 1px solid #E7E7E7;

    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .review-item:nth-child(3) {
    display: none;
  }
}

@media (max-width: 767px) {
  .review .promo-bg {
    display: none;
  }

  .review-inner {
    background-color: var(--green);
    color: var(--black);
    padding: 60px 20px;
  }

  .reviews {
    flex-direction: column;
  }

  .review-item {
    flex: 1;
    padding: 0;
    border-right: none;
  }

  .review-item:nth-child(2) {
    display: none;
  }
}


/*partheers*/
.partheers {
  position: relative;
  padding: 100px 300px 200px;
}

.partheers-header {
  display: flex;
  justify-content: space-between;
}

.partheers-header .title-section {
  justify-content: start;
  white-space: nowrap;
}

.partheers-header .description {
  text-align: right;
  width: 689px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

.partheers-content {
  margin-top: 60px;
  row-gap: 40px;
}

.partheers-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
  }

.partheers-column img {
  max-width: none;   /* ❗ не сжимаем */
  width: 100%;
  display: block;
}

.partheers-column img:nth-child(1) {
  width: 309px;
}
.partheers-column img:nth-child(2) {
  width: 248px;
}

.partheers-column img:nth-child(3) {
  width: 197px;
}

.partheers-column img:nth-child(4) {
  width: 268px;
}

.partheers-column:nth-child(2) img:nth-child(1) {
  width: 150px;
}
.partheers-column:nth-child(2) img:nth-child(2) {
  width: 167px;
}

.partheers-column:nth-child(2) img:nth-child(3) {
  width: 277px;
}

.partheers-column:nth-child(2) img:nth-child(4) {
  width: 212px;
}

.partheers .promo-bg {
  left: auto;
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
  height: 386px;
}

.hidden-mobile {
  display: none;
}

@media (max-width: 1200px)  {
  .partheers {
    position: relative;
    padding: 100px 50px 300px;
    overflow: hidden;
  }

  .partheers-header {
    display: flex;
    justify-content: space-between;
  }

  .partheers-header .title-section {
    gap: 30px;
  }

  .hidden-mobile {
    display: block;
  }

  .partheers-header .description {
    text-align: right;
    width: 535px;
    margin: 0;
  }

  .partheers-content {
    margin-top: 48px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    row-gap: 40px; /* расстояние между строками */
  }

  .partheers-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
  }

  .partheers-column img:nth-child(1) {
    width: 212px;
  }
  .partheers-column img:nth-child(2) {
    width: 170px;
  }

  .partheers-column img:nth-child(3) {
    width: 135px;
  }

  .partheers-column img:nth-child(4) {
    width: 184px;
  }

  .partheers-column:nth-child(2) img:nth-child(1) {
    width: 103px;
  }
  .partheers-column:nth-child(2) img:nth-child(2) {
    width: 114px;
  }

  .partheers-column:nth-child(2) img:nth-child(3) {
    width: 190px;
  }

  .partheers-column:nth-child(2) img:nth-child(4) {
    width: 146px;
  }

  .partheers .promo-bg {
    display: block;
    left: auto;
    right: -15px;
    bottom: -130px;
  }
}

@media (max-width: 768px)  {
  .partheers {
    padding: 50px 20px;
  }

  .partheers-header {
    flex-direction: column;
    gap: 20px;
  }

  .partheers-header .title-section {
    justify-content: space-between;
  }

  .partheers-header .description {
    width: 100%;
    text-align: left;
  }

  .partheers-content {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
  }

  .partheers-column {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .partheers-column img {
    flex: 0 0 50%;          /* строго 2 в строке */
    max-width: 50%;

    height: 40px;           /* одинаковая высота */
    object-fit: contain;    /* без искажений */

    display: block;
  }

.partheers .promo-bg {
  display: none;
}
}


/*footer*/
.footer {
  background: radial-gradient(circle at top, #1b1b1b, #0b0b0b);
  color: #bdbdbd;
  font-family: Inter, sans-serif;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
}

/* Newsletter */
.footer-newsletter {
  padding: 60px 300px;
  text-align: center;
}

.footer-newsletter .title-section h2 {
  color: #fff;
}

.footer-newsletter .title-section {
  margin-bottom: 10px;
}

.footer-newsletter .description {
  width: 100%;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  margin-top: 26px;

  background: none;
  border-radius: 0;
  overflow: visible;
}

.newsletter-form input {
  width: 480px;
  padding: 14px 25px;
  border: none;
  outline: none;
  border-radius: 3px;

  clip-path: polygon(
    3% 0%,
    100% 0%,
    97% 100%,
    0% 100%
  );

  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 12px;
}

.newsletter-form button {
  background: var(--green);
  border: none;
  padding: 9px 28px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;

  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 2px;

  clip-path: polygon(
    11% 0%,
    100% 0%,
    89% 100%,
    0% 100%
  );
}

/* Main */
.footer-main {
  margin: 0 auto;
  padding: 60px 300px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo img {
  width: 270px;
}

.footer-column h4 {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 11px;
}

.footer-column .footer-menu {
  margin-top: 0;
}

.footer-column li {
  position: relative;
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  color: var(--gray);
}

.footer-column .footer-menu li {
  font-weight: 400;
  line-height: 40px;
  padding-left: 16px;
  border-bottom: 1px solid var(--gray);
}

.footer-column .footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: 7px;
  height: 6px;

  background: rgba(255,255,255,0.4);
  transform: translateY(-50%);

  clip-path: polygon(
    25% 0%,
    100% 0%,
    75% 100%,
    0% 100%
  );
}


/* Bottom */
.footer-bottom {
  margin: 0 auto;
  padding: 30px 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.footer-bottom span {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: var(--gray);
  display: block;
  margin-bottom: 16px;
}

.footer-help strong {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
}

.footer-socials {
  border-left: 1px solid rgba(255,255,255,.10);
  border-right: 1px solid rgba(255,255,255,.10);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 5px;
}

/* Copy */
.footer-copy {
  padding: 40px 300px;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.footer-copy span {
  padding: 0 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: var(--green);
}

@media (max-width: 1200px) {
  .footer-newsletter {
    padding: 100px auto 40px;
  }

  .newsletter-form input {
    width: 490px;
  }

  .footer-main {
    padding: 60px 50px;
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-logo {
    display: none;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 11px;
  }

  .footer-column .footer-menu {
    margin-top: 0;
  }

  .footer-bottom {
    padding: 40px 50px;
  }
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 30px 20px 60px;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
      clip-path: polygon(
      3% 0%,
      100% 0%,
      97% 100%,
      0% 100%
    )
  }

  .footer-main {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer-copy {
    padding: 30px 20px;
  }
}

/* Footer link fix */
.footer-column a, .footer-column li a {
  color: var(--gray);
  text-decoration: none;
}
.footer-column a:visited { color: var(--gray); }
.footer-column a:hover { color: var(--green); }

/* Info bar hover zoom effect */
a.info-text {
  transition: transform .2s ease;
  cursor: pointer;
}
a.info-text:hover {
  transform: scale(1.08);
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroBgZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-bg {
  animation: heroBgZoom 1.8s ease-out forwards;
}

.hero-content .subtitle {
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.3s forwards;
}

.hero-content h1 {
  opacity: 0;
  animation: heroScaleIn 0.8s ease-out 0.6s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 1.0s forwards;
}

.hero-buttons .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
}

/* Remove underline from all btn links */
a.btn { text-decoration: none; }

/* Ken Burns - continuous slow zoom in/out loop */
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-bg {
  animation: kenBurns 12s ease-in-out infinite;
}

/* Goal section hover zoom */
.goal-img-wrap {
  overflow: hidden;
}

.goal-img-wrap img {
  width: 100%;
  transition: transform 0.4s ease;
}

.goal-target:hover .goal-img-wrap img {
  transform: scale(1.08);
}

.goal-target {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.goal-target:hover {
  transform: translateY(-4px);
}

.goal-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.goal-target:hover .goal-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Product card hover */
.product {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-image {
  overflow: hidden;
}
.product-image img {
  transition: transform 0.4s ease;
}
.product:hover .product-image img {
  transform: scale(1.05);
}

/* Wishlist heart icon on product hover */
.product-image {
  position: relative;
}
.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  color: #fff;
  font-size: 14px;
}
.product:hover .product-wishlist {
  opacity: 1;
}
.product-wishlist:hover {
  background: #9CFF1E;
  color: #151515;
}

/* Add to Cart green parallelogram */
.product .btn-add-cart {
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  background: #9CFF1E;
  color: #151515;
  border: none;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  transition: background 0.3s ease;
}
.product .btn-add-cart:hover {
  background: #b5ff5e;
}

/* Promo hover */
.promo-item {
  transition: transform 0.3s ease;
}
.promo-item:hover {
  transform: scale(1.02);
}

/* Selection cards hover */
.goal-item {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.goal-item:hover {
  transform: translateY(-4px);
}
.goal-item img {
  transition: transform 0.4s ease;
}
.goal-item:hover img {
  transform: scale(1.05);
}

/* Play button pulse */
.play-btn {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(156, 255, 30, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(156, 255, 30, 0); }
}

/* Partner logos hover */
.partheers-column img {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(30%);
}
.partheers-column img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Scroll animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fix promo Shop Now link color */
.promo-content .btn.white {
  color: #000 !important;
  text-decoration: none;
}
.promo-content a.btn {
  text-decoration: none;
}

/* Promo buttons: hover turns green */
.promo-content .btn.white {
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.promo-content .btn.white:hover {
  background: #9CFF1E !important;
  color: #151515 !important;
  transform: scale(1.05);
}

/* Homepage product cards equal height */
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  row-gap: 30px;
}
.products-section .product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.products-section .product-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.products-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.4s ease;
}
.products-section .product:hover .product-image img {
  transform: scale(1.05);
}
.products-section .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  background: #f5f5f5;
}
.products-section .product-price {
  margin-top: auto;
  padding-top: 8px;
}
.products-section .btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  background: #9CFF1E;
  color: #151515;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  transition: transform 0.2s;
}
.products-section .btn-add-cart:hover {
  transform: scale(1.03);
}

/* Newsletter form styling */
.newsletter-form input::placeholder {
  color: #888;
}

/* Footer newsletter - ensure description is gray */
.footer-newsletter .description {
  color: var(--gray);
}

/* Smooth page transition */
body {
  animation: pageLoad 0.4s ease-out;
}
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1200px) {
  .products-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-section .product-image {
    height: 160px;
  }
}

/* Products wrapper horizontal scroll */
.products-grid-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-grid-wrapper::-webkit-scrollbar { display: none; }

/* Hero Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenBurns 12s ease-in-out infinite;
}
.hero-slide.active {
  opacity: 1;
}

/* Green shapes overlay */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-shapes .shape-left {
  position: absolute;
  left: -5%;
  top: -10%;
  height: 120%;
  opacity: 0.95;
}
.hero-shapes .shape-right {
  position: absolute;
  right: -5%;
  bottom: -10%;
  height: 120%;
  transform: scaleX(-1);
  opacity: 0.95;
}

/* Override old hero-bg */
.hero-bg {
  display: none;
}

/* Hero CSS Shapes (pure CSS, crisp at any resolution) */
.hero-shapes, .hero-shapes img { display: none; }

.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-shape-left {
  left: -8%;
  top: -15%;
  width: 22%;
  height: 130%;
  background: #9CFF1E;
  transform: rotate(-15deg);
  transform-origin: top left;
}
.hero-shape-right {
  right: -8%;
  bottom: -15%;
  width: 22%;
  height: 130%;
  background: #9CFF1E;
  transform: rotate(-15deg);
  transform-origin: bottom right;
}

/* Slide text transitions */
.hero-slide-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hero-slide-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.hero-dot.active {
  background: #9CFF1E;
  border-color: #fff;
  transform: scale(1.2);
}
.hero-dot:hover {
  background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .hero-shape-left { width: 30%; left: -12%; }
  .hero-shape-right { width: 30%; right: -12%; }
}

/* Fix hero shapes - left tilts right (\), right tilts left (/) like original */
.hero-shape-left {
  left: -3% !important;
  top: -20% !important;
  width: 18% !important;
  height: 140% !important;
  background: #9CFF1E !important;
  transform: rotate(15deg) !important;
}
.hero-shape-right {
  right: -3% !important;
  bottom: -20% !important;
  width: 18% !important;
  height: 140% !important;
  background: #9CFF1E !important;
  transform: rotate(15deg) !important;
}

/* Fix shapes - left tilts LEFT, right tilts RIGHT (mirrored) */
.hero-shape-left {
  transform: rotate(-15deg) !important;
}
.hero-shape-right {
  transform: rotate(15deg) !important;
}

/* Brand numbers - 4 items in a row */
.brand-numbers {
  display: flex !important;
  gap: 60px !important;
  flex-wrap: wrap;
}
.numbers-item {
  text-align: center;
}
.play-btn { display: none !important; }

/* Brand label description - match Shop by Goal text size */
.brand-label .description {
  font-size: 14px !important;
  line-height: 24px !important;
}

/* Reviews carousel scrollbar hide */
#reviewsCarousel::-webkit-scrollbar { display: none; }
#reviewsCarousel { -ms-overflow-style: none; scrollbar-width: none; }
.reviews { flex-wrap: nowrap !important; }

/* Reviews - show 3 visible, scroll for rest */
.review-item {
  min-width: calc(25% - 20px) !important;
  flex: 0 0 calc(25% - 20px) !important;
}
@media (max-width: 1200px) {
  .review-item { min-width: calc(50% - 15px) !important; flex: 0 0 calc(50% - 15px) !important; }
}
@media (max-width: 768px) {
  .review-item { min-width: 85% !important; flex: 0 0 85% !important; }
}

/* Fix reviews - exactly 4 visible with gap */
.reviews {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
}
.review-item {
  min-width: 25% !important;
  flex: 0 0 25% !important;
  scroll-snap-align: start;
  padding: 0 15px 0 15px !important;
  border-right: 1px solid rgba(0,0,0,0.08) !important;
}
.review-item:last-child { border-right: none !important; }
.review-text {
  font-size: 14px !important;
  line-height: 22px !important;
}
@media (max-width: 1200px) {
  .review-item { min-width: 50% !important; flex: 0 0 50% !important; }
}
@media (max-width: 768px) {
  .review-item { min-width: 90% !important; flex: 0 0 90% !important; }
}
