.main {
  padding-top: 80px;
}



.showcase__products {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase__header {
  margin-bottom: 60px;
  text-align: center;
}

.showcase__title {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -1px;
}

.showcase__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1.6;
}


.products__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.filter__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 12px 24px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter__btn:hover,
.filter__btn--active {
  border-color: var(--accent-color);
  color: var(--bg-color);
  background-color: var(--accent-color);
  transform: translateY(-2px);
}


.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 425px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

.product__card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

.product__card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.product__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product__card:hover .product__image img {
  transform: scale(1.05);
}

.product__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.product__card:hover .product__overlay {
  opacity: 1;
}

.product__quick-view {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  color: var(--accent-color);
  font-weight: 500;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product__quick-view:hover {
  color: var(--bg-color);
  background-color: var(--accent-color);
}

.product__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 15px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product__badge--new {
  color: white;
  background-color: #28a745;
}

.product__badge--sale {
  color: white;
  background-color: var(--accent-color);
}

.product__badge--trending {
  color: white;
  background-color: #ff6b35;
}

.product__badge--premium {
  color: var(--main-color);
  background-color: #ffd700;
}

.product__info {
  padding: 24px;
}

.product__name {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
}

.product__category {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-size: 14px;
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.product__rating i {
  color: #ffc107;
  font-size: 14px;
}

.rating__text {
  margin-left: 8px;
  color: var(--secondary-color);
  font-size: 13px;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price__current {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.price__original {
  color: var(--secondary-color);
  font-size: 16px;
  text-decoration: line-through;
}

.products__action {
  text-align: center;
}

.load__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 30px;
  padding: 16px 32px;
  color: var(--bg-color);
  font-weight: 500;
  font-size: 16px;
  background-color: var(--main-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.load__more-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}



.weekly__banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.banner__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.banner__animation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 2px,
      rgba(227, 28, 121, 0.05) 2px,
      rgba(227, 28, 121, 0.05) 4px);
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(50px);
  }
}

.banner__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  background: rgba(227, 28, 121, 0.2);
}

.banner__title {
  margin-bottom: 20px;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.banner__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.banner__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.feature__item i {
  color: var(--accent-color);
  font-size: 18px;
}

.banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 30px;
  padding: 18px 36px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d01967 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner__cta:hover {
  box-shadow: 0 10px 30px rgba(227, 28, 121, 0.3);
  transform: translateY(-3px);
}

.banner__visual {
  position: relative;
}

.visual__main {
  text-align: center;
}

.visual__main img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.visual__floating {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.floating__element {
  position: absolute;
  max-width: 150px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.floating__element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating__element--1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating__element--2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 2s;
}

.floating__element--3 {
  top: 60%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}



.craft__story {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.story__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story__header {
  margin-bottom: 80px;
  text-align: center;
}

.story__title {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.5px;
}

.story__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--secondary-color);
  font-size: 18px;
}

.story__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.story__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.featured__image {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.featured__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}

.featured__image:hover .image__overlay {
  opacity: 1;
}

.play__button {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border: none;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 24px;
  background-color: var(--accent-color);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.play__button:hover {
  transform: scale(1.1);
}

.overlay__text {
  color: var(--bg-color);
  font-weight: 500;
  font-size: 16px;
}

.featured__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 28px;
}

.featured__title i {
  color: var(--accent-color);
  font-size: 24px;
}

.featured__description {
  margin-bottom: 40px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

.craft__timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.timeline__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d01967 100%);
}

.timeline__content h4 {
  margin-bottom: 6px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 18px;
}

.timeline__content p {
  color: var(--secondary-color);
  font-size: 14px;
}

.materials__showcase {
  border-radius: 20px;
  padding: 60px;
  background-color: var(--secondary-bg-color);
}

.materials__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}

.materials__title i {
  color: var(--accent-color);
  font-size: 24px;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.material__card {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background-color: var(--bg-color);
  transition: transform 0.3s ease;
}

.material__card:hover {
  transform: translateY(-5px);
}

.material__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 28px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d01967 100%);
}

.material__name {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
}

.material__description {
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 1.5;
}



.styling__recommendations {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, #f0f0f0 100%);
}

.styling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.styling__header {
  margin-bottom: 80px;
  text-align: center;
}

.styling__title {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 42px;
}

.styling__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--secondary-color);
  font-size: 18px;
}

.styling__showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.style__category {
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background-color: var(--bg-color);
}

.category__header {
  margin-bottom: 50px;
  text-align: center;
}

.category__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 28px;
}

.category__title i {
  color: var(--accent-color);
  font-size: 24px;
}

.category__description {
  color: var(--secondary-color);
  font-size: 16px;
}

.outfits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.outfit__card {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.outfit__card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.outfit__image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.outfit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.outfit__card:hover .outfit__image img {
  transform: scale(1.05);
}

.outfit__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.outfit__card:hover .outfit__overlay {
  opacity: 1;
}

.outfit__details {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  color: var(--accent-color);
  font-weight: 500;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.outfit__details:hover {
  color: var(--bg-color);
  background-color: var(--accent-color);
}

.outfit__info {
  padding: 24px;
}

.outfit__name {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
}

.outfit__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.outfit__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 14px;
}

.outfit__item i {
  width: 16px;
  color: var(--accent-color);
}

.outfit__price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 24px;
}



.customer__reviews {
  padding: 100px 0;
  background-color: var(--bg-color);
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews__header {
  margin-bottom: 60px;
  text-align: center;
}

.reviews__title {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 42px;
}

.reviews__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--secondary-color);
  font-size: 18px;
}

.reviews__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat__card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  background-color: var(--secondary-bg-color);
  transition: transform 0.3s ease;
}

.stat__card:hover {
  transform: translateY(-5px);
}

.stat__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 24px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #d01967 100%);
}

.stat__number {
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 28px;
}

.stat__label {
  color: var(--secondary-color);
  font-size: 14px;
}

.reviews__showcase {
  margin-bottom: 60px;
}

.review__card--featured {
  margin-bottom: 50px;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, #f0f0f0 100%);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review__card {
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

.review__card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.review__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.reviewer__avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.review__card--featured .reviewer__avatar {
  width: 80px;
  height: 80px;
}

.reviewer__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer__info {
  flex: 1;
}

.reviewer__name {
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 18px;
}

.reviewer__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-size: 14px;
}

.reviewer__location i {
  color: var(--accent-color);
  font-size: 12px;
}

.review__rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.review__rating i {
  color: #ffc107;
  font-size: 14px;
}

.review__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-color);
  font-size: 12px;
}

.review__date i {
  color: var(--accent-color);
}

.review__text {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
}

.review__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.review__photos img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.review__card--featured .review__photos img {
  width: 100px;
  height: 100px;
}

.review__photos img:hover {
  transform: scale(1.05);
}

.review__product {
  display: flex;
  align-items: center;
}

.product__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 6px 12px;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 12px;
  background-color: rgba(227, 28, 121, 0.1);
}

.reviews__action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.reviews__more-btn,
.reviews__write-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 30px;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reviews__more-btn {
  color: var(--text-color);
  background-color: var(--secondary-bg-color);
}

.reviews__more-btn:hover {
  color: var(--bg-color);
  background-color: var(--main-color);
}

.reviews__write-btn {
  color: var(--bg-color);
  background-color: var(--accent-color);
}

.reviews__write-btn:hover {
  background-color: #d01967;
  transform: translateY(-2px);
}




@media (max-width: 1024px) {
  .showcase__title {
    font-size: 40px;
  }

  .banner__title {
    font-size: 48px;
  }

  .story__title,
  .styling__title,
  .reviews__title {
    font-size: 36px;
  }

  .banner__content {
    gap: 40px;
  }

  .story__featured {
    gap: 40px;
  }

  .materials__showcase {
    padding: 40px;
  }

  .style__category {
    padding: 40px;
  }
}


@media (max-width: 768px) {
  .main {
    padding-top: 70px;
  }

  .showcase__products,
  .weekly__banner,
  .craft__story,
  .styling__recommendations,
  .customer__reviews {
    padding: 60px 0;
  }

  .showcase__title {
    font-size: 32px;
  }

  .banner__title {
    font-size: 36px;
  }

  .story__title,
  .styling__title,
  .reviews__title {
    font-size: 28px;
  }

  .products__filters {
    gap: 12px;
  }

  .filter__btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .products__grid {
    gap: 20px;
  }

  .banner__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .banner__features {
    align-items: center;
  }

  .story__featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .materials__showcase {
    padding: 30px 20px;
  }

  .materials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .styling__showcase {
    gap: 50px;
  }

  .style__category {
    padding: 30px 20px;
  }

  .outfits__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat__card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    text-align: center;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review__card--featured {
    padding: 30px 20px;
  }

  .review__card {
    padding: 20px;
  }

  .reviews__action {
    flex-direction: column;
    align-items: center;
  }

  .reviews__more-btn,
  .reviews__write-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {

  .showcase__container,
  .banner__container,
  .story__container,
  .styling__container,
  .reviews__container {
    padding: 0 16px;
  }

  .showcase__title,
  .banner__title,
  .story__title,
  .styling__title,
  .reviews__title {
    font-size: 24px;
  }

  .products__filters {
    flex-direction: column;
    align-items: center;
  }

  .filter__btn {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }

  .floating__element {
    display: none;
  }

  .reviews__stats {
    grid-template-columns: 1fr;
  }
}