* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'manrope', sans-serif;
}

html {
      scroll-behavior: smooth;
      overflow-x: hidden;
}

a {
      text-decoration: none;
}

body {
      font-family: 'manrope', sans-serif;
      -ms-overflow-style: none;
      padding-top: 80px;
}

body::-webkit-scrollbar {
      display: none;
}

body::selection {
      background-color: #5f5e5e;
      color: #faf7f6;
}


.hero-section {
      width: 100%;
      background-color: #F6F5F3;
      position: relative;
      overflow: hidden;
}

.hero-section__container {
      width: 100%;
      max-width: 1540px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 42% 58%;
      min-height: 600px;
      align-items: center;
}

.hero-section__content {
      padding: 80px 4% 80px 6%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;
}

.hero-section__eyebrow {
      font-family: 'manrope', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      color: #666666;
      text-transform: uppercase;
      margin-bottom: 20px;
}

.hero-section__headline {
      font-family: 'manrope', sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: #111111;
      margin-bottom: 24px;
      text-transform: uppercase;
}

.hero-section__subtext {
      font-family: 'manrope', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: #555555;
      max-width: 480px;
      margin-bottom: 36px;
}

.hero-section__cta-group {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
}

.hero-section__btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 34px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
}

.hero-section__btn--primary {
      background-color: #111111;
      color: #FFFFFF;
      border: 1px solid #111111;
}

.hero-section__btn--primary:hover {
      background-color: #2F3331;
      border-color: #2F3331;
      color: #FFFFFF;
}

.hero-section__btn--primary i {
      transition: transform 0.3s ease;
}

.hero-section__btn--primary:hover i {
      transform: translateX(6px);
}

.hero-section__btn--secondary {
      background-color: transparent;
      color: #111111;
      border: 1px solid #111111;
}

.hero-section__btn--secondary:hover {
      background-color: #111111;
      color: #FFFFFF;
}

.hero-section__btn--secondary i {
      transition: transform 0.3s ease;
}

.hero-section__btn--secondary:hover i {
      transform: translateX(4px);
}

.hero-section__visual {
      width: 100%;
      height: 100%;
      min-height: 600px;
      position: relative;
}

.hero-section__img-frame {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
}

.hero-section__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section__img-frame:hover .hero-section__img {
      transform: scale(1.02);
}


.moodk-edit {
      width: 100%;
      background-color: #FFFFFF;
      padding: 90px 48px 100px;
}

.moodk-edit__container {
      max-width: 1440px;
      margin: 0 auto;
}

.moodk-edit__header {
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #EAEAEA;
}


.moodk-edit__heading {
      font-family: 'manrope', sans-serif;
      font-size: clamp(1.8rem, 3.2vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.01em;
      color: #111111;
      text-transform: uppercase;
}

.moodk-edit__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
}

.moodk-edit__card {
      position: relative;
      display: block;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      text-decoration: none;
      background-color: #F4F3F0;
      border: 1px solid #EAEAEA;
}

.moodk-edit__img-wrap {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
}

.moodk-edit__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.moodk-edit__card:hover .moodk-edit__img {
      transform: scale(1.03);
}

.moodk-edit__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
                  rgba(0, 0, 0, 0.65) 0%,
                  rgba(0, 0, 0, 0.15) 55%,
                  rgba(0, 0, 0, 0.05) 100%);
      transition: opacity 0.4s ease;
      z-index: 1;
}

.moodk-edit__content {
      position: absolute;
      inset: 0;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 2;
      color: #FFFFFF;
}



.moodk-edit__title {
      font-family: 'manrope', sans-serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: 1px;
      color: #FFFFFF;
      text-transform: uppercase;
      margin-top: auto;
      margin-bottom: 8px;
}

.moodk-edit__cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'manrope', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #FFFFFF;
      transition: transform 0.3s ease;
}

.moodk-edit__cta i {
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.moodk-edit__card:hover .moodk-edit__cta i {
      transform: translateX(6px);
}



.explore {
      padding: 80px 0;
      background: #ffffff;
}

.explore__header {
      text-align: center;
      margin-bottom: 48px;
      padding: 0 40px;
}

.explore__title {
      font-family: 'Manrope', sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: #2F3331;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
}

.explore__subtitle {
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #777;
      letter-spacing: 1px;
      margin-bottom: 32px;
}

.explore__filters {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
}

.explore__filter {
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 10px 26px;
      border: 1px solid #e0dedd;
      border-radius: 40px;
      background: transparent;
      color: #5c605d;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore__filter:hover {
      border-color: #2F3331;
      color: #2F3331;
}

.explore__filter.active {
      background: #2F3331;
      border-color: #2F3331;
      color: #faf7f6;
      box-shadow: 0 4px 14px rgba(47, 51, 49, 0.2);
}

.explore__carousel {
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 24px;
}

.explore__viewport {
      flex: 1;
      overflow: hidden;
      margin: 0 16px;
}

.explore__track {
      display: flex;
      gap: 24px;
      will-change: transform;
}

.explore__card {
      flex: 0 0 calc((100% - 72px) / 4);
      min-width: calc((100% - 72px) / 4);
      width: calc((100% - 72px) / 4);
      background: #ffffff;
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
      box-sizing: border-box;
}

.explore__card:hover {
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
      border-color: #e0dedd;
}

.explore__card-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #f7f6f4;
}

.explore__card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 3;
      background-color: #111111;
      color: #ffffff;
      font-size: 10px;
      font-weight: 800;
      font-family: 'Manrope', sans-serif;
      padding: 4px 8px;
      border-radius: 4px;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.explore__card-wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #ffffff;
      border: none;
      outline: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #777;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease, color 0.2s ease;
}

.explore__card-wishlist:hover {
      transform: scale(1.1);
      color: #e74c3c;
}

.explore__card-wishlist:hover i {
      color: #e74c3c;
}

.explore__card-wishlist.active,
.explore__card-wishlist.active i,
.explore__card-wishlist i.fa-solid {
      color: #e74c3c !important;
}

.explore__card-img {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: #f7f6f4;
}

.explore__img-front,
.explore__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 1;
      z-index: 1;
}


.explore__card-body {
      padding: 16px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
      justify-content: space-between;
}

.explore__card-category {
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #999;
}

.explore__card-name {
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #2F3331;
      line-height: 1.35;
      margin-bottom: 4px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 40px;
}

.explore__card-pricing {
      display: flex;
      align-items: baseline;
      gap: 8px;
}

.explore__card-price {
      font-family: 'Manrope', sans-serif;
      font-size: 16px;
      font-weight: 800;
      color: #111111;
}

.explore__card-oldprice {
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #b5b5b5;
      text-decoration: line-through;
}

.explore__card-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 2px;
}

.explore__card-stars {
      color: #f39c12;
      display: flex;
      gap: 2px;
      font-size: 11px;
}

.explore__card-rating-val {
      font-family: 'Manrope', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #2F3331;
      margin-left: 2px;
}

.explore__card-reviews {
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      color: #999;
}

.explore__card-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #2F3331;
      text-decoration: none;
      margin-top: 10px;
      transition: gap 0.3s ease;
}

.explore__card-cta i {
      font-size: 10px;
      transition: transform 0.3s ease;
}

.explore__card:hover .explore__card-cta {
      gap: 12px;
}

.explore__card:hover .explore__card-cta i {
      transform: translateX(4px);
}

.explore__arrow {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e0dedd;
      border-radius: 50%;
      background: #fff;
      color: #5c605d;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 2;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.explore__arrow:hover {
      background: #2F3331;
      border-color: #2F3331;
      color: #faf7f6;
      transform: scale(1.05);
}

/* brands auto scrolling  */
.brands-ticker {
      width: 100%;
      background-color: #000000;
      color: #FFFFFF;
      overflow: hidden;
      user-select: none;
      padding: 18px 0;
      display: flex;
      align-items: center;
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-ticker__track {
      display: flex;
      width: max-content;
      white-space: nowrap;
      animation: brandsMarquee 28s linear infinite;
      will-change: transform;
}

.brands-ticker:hover .brands-ticker__track {
      animation-play-state: paused;
}

.brands-ticker__group {
      display: flex;
      align-items: center;
      gap: 36px;
      padding-right: 36px;
      flex-shrink: 0;
}

.brands-ticker__item {
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: #FFFFFF;
      transition: opacity 0.3s ease;
      cursor: default;
}

.brands-ticker__item:hover {
      opacity: 0.7;
}

.brands-ticker__dot {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      display: inline-block;
      line-height: 1;
}

@keyframes brandsMarquee {
      0% {
            transform: translateX(0);
      }
      100% {
            transform: translateX(-50%);
      }
}

/* Responsive Styles */
@media (max-width: 768px) {
      .brands-ticker {
            padding: 14px 0;
      }
      .brands-ticker__group {
            gap: 22px;
            padding-right: 22px;
      }
      .brands-ticker__item {
            font-size: 13px;
            letter-spacing: 2.5px;
      }
      .brands-ticker__dot {
            font-size: 8px;
      }
}






