/* Banner Section */
.banner-section {
  width: 100%;
  background: #faf5f0;
  
}

.banner-section .banner-text {
  color: white;
  text-shadow: 0 2px 5px rgba(213, 67, 67, 0.5);
  padding: 200px 0;
  margin: 0 auto;
  max-width: 750px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.banner-text h6 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  background: rgba(255, 255, 240, 0.2);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

.banner-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: "Playfair Display", "Georgia", serif;
}

.banner-wrapper .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  background-color: #400c2c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 0;
  transition: all 0.3s ease-in-out;
}

.banner-wrapper .slick-prev {
  left: 20px;
}

.banner-wrapper .slick-next {
  right: 20px;
}

.banner-wrapper .slick-prev::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  display: block;
  text-align: center;
  color: white;
  line-height: 50px;
}

.banner-wrapper .slick-next::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  display: block;
  text-align: center;
  color: white;
  line-height: 50px;
}

.banner-wrapper .slick-dots {
  display: none !important;
}

.banner-wrapper .slick-arrow:hover {
  background-color: #8b1a1a;
  transform: translateY(-50%) scale(1.05);
}

/* Category Section */
.category-sec {
  width: 100%;
  padding: 70px 0;
  background-color: #f9f9f9;
}

.category-sec .row {
  display: flex;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 15px;
  scrollbar-width: none;
}

.category-sec .row::-webkit-scrollbar {
  display: none;
}

.category-sec .row .col {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.category-sec .row .col:hover {
  transform: translateY(-5px);
}

.category-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}

.category-sec .row .col:hover .category-img img {
  transform: scale(1.05);
}

.category-title {
  margin-top: 14px;
  padding: 0 8px;
}

.category-title h5 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1f1f1f;
  text-transform: uppercase;
}

/* New Arrivals Section */
.new-arrivals-sec {
  width: 100%;
  padding: 70px 0;
  background: #fff;
}

.new-arrivals-sec h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 800;
}

.new-arrivals-sec .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.new-arrivals-sec .card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.new-arrivals-sec .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-arrivals-sec .card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.new-arrivals-sec .card:hover img {
  transform: scale(1.02);
}

.new-arrivals-sec .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.new-arrivals-sec .card-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #333;
}

.new-arrivals-sec .card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.new-arrivals-sec .card-content a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #400c2c;
  letter-spacing: 1px;
}

.new-arrivals-sec .card-content a:hover {
  color: #d54343;
}

/* Best Seller Section */
.best-seller-sec {
  width: 100%;
  padding: 70px 0;
  background: #fafafa;
}

.best-seller-sec h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 800;
}

.best-seller-sec .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.best-seller-sec .category-card {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.best-seller-sec .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.best-seller-sec .category-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.best-seller-sec .category-card:hover img {
  transform: scale(1.02);
}

.best-seller-sec .category-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #b1624b;
}

/* ==================== gallery  Carousel ================== */
.gallery-sec {
  /* max-width: 1440px; */
  width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 2rem;
  padding: 50px 0;
  background: #fafafa;
}

.swiper {
  width: 100%;
  padding-bottom: 80px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(213, 67, 67, 0.3);
  transition: all 0.3s ease-in-out;
}

.swiper-slide:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 40px -15px rgba(0, 0, 0, 0.6);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 52px;
  height: 52px;
  background: rgba(20, 25, 40, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(213, 67, 67, 0.3);
  transition: all 0.25s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #d54343;
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
  cursor: pointer;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 2px rgba(213, 67, 67, 0.5);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none !important;
}

.swiper-pagination {
  bottom: 15px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
  margin: 0 6px;
  transition: all 0.2s;
}

.swiper-pagination-bullet-active {
  background: #d54343;
  width: 26px;
  border-radius: 8px;
  opacity: 1;
}

.carousel-title {
  text-align: center;
  margin-bottom: 20px;
  color: #d54343;
  font-weight: 500;
  letter-spacing: -0.2px;
  font-size: 1.9rem;
  text-shadow: 0 2px 5px rgba(213, 67, 67, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .best-seller-sec .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .banner-section .banner-text {
    padding: 140px 0;
  }

  .banner-text h1 {
    font-size: 1.8rem;
  }

  .category-sec {
    padding: 40px 0;
  }

  .category-sec .row .col {
    width: 160px;
  }

  .category-img {
    height: 160px;
  }

  .category-title h5 {
    font-size: 0.85rem;
  }

  .new-arrivals-sec .row {
    grid-template-columns: 1fr;
  }

  .new-arrivals-sec .card img {
    height: 350px;
  }

  .best-seller-sec .row {
    grid-template-columns: 1fr;
  }

  .product-wrapper .slick-prev {
    left: 0;
  }

  .product-wrapper .slick-next {
    right: 0;
  }

  .swiper-slide {
    width: 260px;
    height: 310px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 42px;
    height: 42px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px;
  }

  .carousel-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 580px) {
  .banner-wrapper .slick-next,
  .banner-wrapper .slick-prev {
    display: none !important;
  }
  .banner-section .banner-text {
    padding: 120px 0;
  }
}

@media (max-width: 480px) {
  .banner-section .banner-text {
    padding: 100px 0 100px;
  }
  .banner-wrapper .slick-next,
  .banner-wrapper .slick-prev {
    display: none !important;
  }
  .category-sec .row .col {
    width: 140px;
  }

  .category-img {
    height: 140px;
  }

  .category-sec .row {
    gap: 12px;
  }

  .banner-text h6 {
    font-size: 12px;
  }

  .banner-text h1 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.swiper-wrapper {
  align-items: center;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
}

/* ===================== testimonial-section ======================= */

.testimonial-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.tetsi-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px 36px;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.2);
}

.quote-icon {
  color: #6366f1;
  margin-bottom: 24px;
  opacity: 0.8;
}

.quote-icon svg {
  width: 44px;
  height: 44px;
}

.testimonial-text {
  font-size: 1.35rem;
  line-height: 1.55;
  color: #1e293b;
  font-weight: 450;
  margin-bottom: 32px;
  flex: 1;
  letter-spacing: -0.01em;
  quotes: none;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eef2ff;
  padding-top: 28px;
  margin-top: auto;
}

.client-avatar {
  flex-shrink: 0;
}

.client-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid #ffffff;
}

.client-details {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  letter-spacing: -0.2px;
}

.client-title {
  font-size: 0.85rem;
  color: #5b6e8c;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* responsive design */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 16px;
  }

  .tetsi-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial-card {
    padding: 32px 28px;
  }

  .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .quote-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .client-info {
    gap: 14px;
  }

  .client-name {
    font-size: 1rem;
  }
}
