* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f5f5f5;
  --secondary-color: #333;
  --accent-color: #666;
  --border-color: #e0e0e0;
  --text-light: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #efebe8;
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Added promotional banner styling */
.promo-banner {
  background-color: #efebe8;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 101;
}

.promo-content {
  text-align: center;
  flex: 0 1 auto;
}

.promo-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.promo-nav-btn {
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-nav-btn:hover {
  color: var(--accent-color);
}

/* header and navbar */
.header {
  top: 0;
  z-index: 100;
  background-color: #efebe8;
  width: 100%;

  padding: 0 1rem;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  border-radius: 7px;
  background-color: white;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Logo */
.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-icon {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-icon:hover {
  color: var(--accent-color);
}

/* Search container styles */
.search-container {
  display: none;
  background: white;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  /* Search container positioned relative to header */
  width: 100%;
}

.search-container.active {
  display: flex;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.search-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.search-input::placeholder {
  color: #999;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.search-close:hover {
  color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.4rem;
  margin-left: 1rem;
  z-index: 101;
}

.hamburger span {
  width: 1.5rem;
  height: 0.2rem;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

/* Mobile nav  */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 1rem;
  gap: 0;
  position: fixed;
  top: 108px;
  right: 0;
  left: 0;
  z-index: 99;
  border-bottom: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: flex;
  max-height: 400px;
}

.mobile-nav-link {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background-color: #f9f9f9;
}

/*   hero section  */
.hero-section {
  padding: 1rem;
  background-color: #efebe8;
  min-height: 500px;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.carousel-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Hide/show images based on screen size */
.slide-image-desktop {
  display: block;
}

.slide-image-mobile {
  display: none;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  z-index: 2;
}

.slide-content {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  max-width: 550px;
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.shop-btn {
  background-color: white;
  color: var(--secondary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shop-btn i {
  font-size: 0.6rem;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: white;
  width: 1.5rem;
  border-radius: 0.25rem;
}

/* Good Morning Section */
.good-morning-section {
  background-color: #efebe8;
  padding: 3rem 0rem;
}

.good-morning-container {
  max-width: 1400px;
  margin: 0 auto;
}

.good-morning-header {
  text-align: center;
  margin-bottom: 3rem;
}

.good-morning-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.good-morning-subtitle {
  font-size: 0.95rem;
  color: var(--accent-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  z-index: 3;
  text-align: center;
}

/* New Arrivals Section */
.new-arrivals-section {
  background-color: #efebe8;
  padding: 3rem 1rem;
}

.new-arrivals-container {
  max-width: 1400px;
  margin: 0 auto;
}

.new-arrivals-header {
  text-align: center;
  margin-bottom: 3rem;
}

.new-arrivals-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.new-arrivals-subtitle {
  font-size: 0.95rem;
  color: var(--accent-color);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.arrivals-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
  padding: 0 3rem;
}

.arrivals-carousel-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.arrivals-carousel-container::-webkit-scrollbar {
  display: none;
}

/* Product image wrapper with proper overflow control */
.arrival-product {
  flex: 0 0 calc(20% - 1.2rem);
  min-width: 200px;
  background-color: #fafafa;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.arrival-product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  border-radius: 0.3rem;
  margin-bottom: 0.75rem;
  background-color: #f5f5f5;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2rem;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

/* Product button same as Best Selling */
.product-btn {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.product-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Navigation Buttons */
.arrivals-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.arrivals-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.arrivals-prev {
  left: 0;
}

.arrivals-next {
  right: 0;
}

/* Hot Products Section */
.hot-products-section {
  background-color: #efebe8;
  padding: 3rem 1rem;
}

.hot-products-container {
  max-width: 1400px;
  margin: 0 auto;
}

.hot-products-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hot-products-image {
  flex: 0 1 45%;
  min-width: 0;
}

.hot-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
}

.hot-products-text {
  flex: 0 1 45%;
  text-align: center;
}

.hot-products-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.hot-products-description {
  font-size: 0.95rem;
  color: var(--accent-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hot-products-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.hot-products-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*  best selling products section*/
.best-selling-section {
  background-color: #efebe8;
  padding: 3rem 1rem;
}

.best-selling-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
}

.best-selling-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.best-selling-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.best-selling-subtitle {
  font-size: 0.9rem;
  color: var(--accent-color);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.best-selling-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.best-selling-product {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 0.4rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.best-selling-product:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.best-selling-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
}

.best-selling-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.best-selling-product:hover .best-selling-image {
  transform: scale(1.05);
}

.best-selling-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-selling-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.best-selling-btn {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 0.65rem 1.2rem;
  border-radius: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.best-selling-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/*customer reviews */
.customer-reviews-section {
  background-color: #efebe8;
  padding: 3rem 1rem 1rem;
}

.customer-reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.reviews-subtitle {
  font-size: 0.95rem;
  color: var(--accent-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.reviews-slider-wrapper {
  position: relative;
  margin-top: 2.5rem;
  padding: 2rem 5rem;
  min-height: 360px;
}

.reviews-slider {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 330px;
}

/* Wider review cards */
.review-card {
  position: absolute;
  width: 420px;
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.review-card.prev,
.review-card.next {
  opacity: 0.6;
  transform: scale(0.85);
  z-index: 1;
}

.review-card.prev {
  transform: translateX(-250px) scale(0.85);
}

.review-card.next {
  transform: translateX(250px) scale(0.85);
}

.review-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

.review-card:not(.active):not(.prev):not(.next) {
  opacity: 0;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.review-stars i {
  color: #ffc107;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.author-location {
  font-size: 0.8rem;
  text-align: center;
  color: var(--accent-color);
  margin: 0;
}

/* Review buttons on side cards */
.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.reviews-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.reviews-prev {
  left: 1rem;
}

.reviews-next {
  right: 1rem;
}

/* newsletter */
.newsletter-section {
  background-color: #ebe8e3;
  padding: 3rem 1rem;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-wrapper {
  background-color: white;
  padding: 2.5rem 3rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.newsletter-text {
  flex: 0 1 45%;
  min-width: 280px;
}

.newsletter-form-wrapper {
  flex: 0 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: left;
}

.newsletter-subtitle {
  font-size: 0.95rem;
  color: var(--accent-color);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--secondary-color);
  min-width: 150px;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.newsletter-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-privacy {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-align: left;
  margin: 0;
}

.newsletter-privacy a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.newsletter-privacy a:hover {
  text-decoration: underline;
}

/* footer*/
.footer {
  background-color: #ffffff;
  color: var(--secondary-color);
  padding: 3rem 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1400px;
  padding: 1rem 3rem 1rem 1rem;
  margin: 0 auto;
}

/* Footer layout with left and right sections */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 30%;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--accent-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Right columns with Quick Links and Policies */
.footer-right {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-column {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.footer-column-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--accent-color);
  margin: 0;
}

.payment-methods {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  width: 38px;
  height: 24px;
  opacity: 0.8;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
}

.payment-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 1366px) {
  .navbar {
    max-width: 1316px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-left,
  .nav-right {
    gap: 1.5rem;
  }

  .hot-products-content {
    gap: 2rem;
  }

  .arrivals-carousel-wrapper {
    padding: 0 2.5rem;
  }

  .best-selling-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-content {
    gap: 3rem;
  }

  .newsletter-wrapper {
    gap: 2rem;
    padding: 2rem 2.5rem;
  }

  .reviews-slider-wrapper {
    padding: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop, show mobile images */
  .slide-image-desktop {
    display: none;
  }

  .slide-image-mobile {
    display: block;
  }

  .navbar {
    padding: 1rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-link {
    display: none;
  }

  .logo-container {
    position: static;
    transform: none;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    gap: 1rem;
  }

  .search-container {
    padding: 0.75rem 1rem;
  }

  .carousel-slider {
    height: 350px;
  }

  .slide-content {
    left: 1.5rem;
    max-width: 400px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-description {
    font-size: 0.85rem;
  }

  .carousel-nav {
    bottom: 1rem;
    right: 1rem;
  }

  .carousel-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .good-morning-section {
    padding: 2rem 1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .new-arrivals-section {
    padding: 2rem 1rem;
  }

  .arrivals-carousel-wrapper {
    padding: 0 2rem;
  }

  .arrival-product {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .arrivals-nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .hot-products-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hot-products-text {
    text-align: center;
  }

  .hot-products-image {
    max-width: 100%;
  }

  .best-selling-section {
    padding: 2rem 1rem;
  }

  .best-selling-container {
    padding: 1.5rem 1rem;
  }

  /* 2 products on mobile tablet */
  .best-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .best-selling-product {
    padding: 0.75rem;
  }

  .reviews-slider-wrapper {
    padding: 1.5rem 2rem;
    min-height: 300px;
  }

  .reviews-slider {
    height: 280px;
  }

  .review-card {
    width: 340px;
    padding: 1.5rem;
  }

  .review-card.prev {
    transform: translateX(-180px) scale(0.8);
  }

  .review-card.next {
    transform: translateX(180px) scale(0.8);
  }

  .reviews-nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }

  .newsletter-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .newsletter-text {
    flex: 1;
    min-width: auto;
  }

  .newsletter-form-wrapper {
    flex: 1;
    min-width: auto;
  }

  .newsletter-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .newsletter-form {
    flex-wrap: wrap;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-right {
    gap: 2rem;
    width: 100%;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }

  .nav-icon {
    font-size: 0.9rem;
  }

  .hamburger {
    gap: 0.3rem;
    margin-left: 0.5rem;
  }

  .hamburger span {
    width: 1.2rem;
    height: 0.18rem;
  }

  .search-container {
    padding: 0.5rem 1rem;
  }

  .search-input {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  .carousel-slider {
    height: 250px;
  }

  .slide-content {
    left: 1rem;
    max-width: 300px;
  }

  .slide-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .slide-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .shop-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .good-morning-section {
    padding: 1.5rem 0.75rem;
  }

  .good-morning-title {
    font-size: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .new-arrivals-section {
    padding: 1.5rem 0.75rem;
  }

  .new-arrivals-title {
    font-size: 1.5rem;
  }

  .arrivals-carousel-wrapper {
    padding: 0 1.5rem;
  }

  .arrival-product {
    flex: 0 0 calc(100% - 0.75rem);
    min-width: 150px;
  }

  .best-selling-section {
    padding: 1.5rem 0.75rem;
  }

  .best-selling-container {
    padding: 1rem 0.75rem;
  }

  /*  products small mobile */
  .best-selling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .best-selling-title {
    font-size: 1.4rem;
  }

  .reviews-slider-wrapper {
    padding: 1rem 1.5rem;
    min-height: 280px;
  }

  .reviews-slider {
    height: 240px;
  }

  .review-card {
    width: 300px;
    padding: 1.2rem;
  }

  .review-card.prev {
    transform: translateX(-150px) scale(0.75);
  }

  .review-card.next {
    transform: translateX(150px) scale(0.75);
  }

  .review-text {
    font-size: 0.8rem;
    min-height: 3.5rem;
    margin-bottom: 1rem;
  }

  .reviews-nav-btn {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.7rem;
  }

  .newsletter-section {
    padding: 1.5rem 0.5rem;
  }

  .newsletter-wrapper {
    padding: 1.2rem 1rem;
    gap: 1rem;
  }

  .newsletter-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .newsletter-subtitle {
    font-size: 0.8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
  }

  .footer {
    padding: 1.5rem 0.75rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
  }

  .footer-logo-img {
    width: 35px;
    height: 35px;
  }

  .footer-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .footer-column-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-right {
    gap: 1.5rem;
  }

  .payment-icon {
    width: 26px;
    height: 26px;
  }
}
