* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 15px 30px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
    text-transform: uppercase;
}
.nav-items {
    display: flex;
    align-items: center;
}
.nav-items img {
    width: 30px;
    margin-right: 15px;
    cursor: pointer;
}
.nav-items a {
    text-decoration: none;
    color: white;
    margin-left: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}
.nav-items a:hover {
    background-color: #f39c12;
}
.banner {
  width: 100%;
  height: 80vh;
  background: url('./images/product-img/new-arrival/3-copyright.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  transition: background-image 1s ease-in-out;
}

.banner-content {
  max-width: 700px;

  padding: 40px;
  border-radius: 10px;
  color: #fff;
}

.banner h4 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #f4a261;
}

.banner h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-btn-group {
  margin-top: 20px;
}

.banner-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  transition: all 0.3s ease;
}

.banner-btn-primary {
  background: #f4a261;
  color: #fff;
  border: 2px solid #f4a261;
}

.banner-btn-primary:hover {
  background: transparent;
  color: #f4a261;
}

.banner-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.banner-btn-secondary:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .banner h1 {
      font-size: 32px;
  }
  .banner-btn {
      padding: 10px 20px;
      font-size: 14px;
  }
}

.arrivals-section {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 5%;
}

.arrival-item {
  width: 30%;
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.arrival-item:hover {
  transform: scale(1.05);
}

.arrival-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .arrivals-section {
      flex-direction: column;
      align-items: center;
  }

  .arrival-item {
      width: 90%;
      height: 250px;
  }
}


.headline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline-shop {
  font-size: 18px;
  color: #ff6b6b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}

.headline-new-arrivals {
  font-size: 48px; /* Bigger and Bolder */
  color: #2d3436;
  font-weight: 900; /* Extra bold */
  text-transform: uppercase;
  letter-spacing: 3px;
}

.products-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 5%;
}

.product-box {
  width: 22%;
  text-align: center;
  position: relative;
}

.product-item {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.product-item:hover {
  transform: scale(1.10);
}

.product-item .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  gap: 20px;
  font-size: 30px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.product-item:hover .overlay {
  opacity: 1;
}

.product-item .overlay i {
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px; /* Reduced padding for smaller icons */
  font-size: 20px; /* Reduced font size */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.product-item .overlay i:hover {
  background-color: #f4a261;
}

.product-details {
  margin-top: 10px;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
}

.product-price {
  font-size: 16px;
  color: #f4a261;
  margin-top: 5px;
}

.product-rating {
  color: gold;
  font-size: 16px;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .products-section {
      flex-direction: column;
      align-items: center;
  }

  .product-box {
      width: 90%;
  }
}

/* all products page */

.shop-header {
  text-align: center;
  padding: 40px 20px 0 0;
  color: #222;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}

.scroll-down {
  width: 40px;
  height: 40px;
  border: 2px solid #222;
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.shop-container {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  gap: 20px;
}
.products {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-card {
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  position: relative;
}
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 400px;
  transition: transform 0.3s;
}
.product-image:hover img {
  transform: scale(1.1);
}
.product-image .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  display: flex;
  gap: 20px;
  font-size: 20px;
  color: #fff;
  transition: opacity 0.3s ease;
}
.product-image:hover .overlay {
  opacity: 1;
}
.product-image .overlay i {
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.product-image .overlay i:hover {
  background-color: #f4a261;
}
.sidebar {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.sidebar input, .sidebar select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  padding: 8px;
  cursor: pointer;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 5px;
  transition: background 0.3s;
}
.sidebar ul li:hover {
  background: #ddd;
}
.sidebar hr {
  margin: 10px 0;
  border: none;
  height: 1px;
  background: #ddd;
}
.price-range {
  font-size: 16px;
  color: #555;
  font-weight: bold;
}
.filter-btn {
  background: #007bff;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.filter-btn:hover {
  background: #0056b3;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pagination button {
  margin: 5px;
  padding: 10px;
  cursor: pointer;
}

/* brand section design code */
.brand-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  /* background: #fff; */
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  /* border-radius: 10px; */
  text-align: center;
}
.brand-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
}
.brand-logos img {
  max-width: 150px;
  height: auto;
  margin: 5px;
  transition: transform 0.3s ease-in-out;
}
.brand-logos img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .brand-logos {
      justify-content: center;
  }
  .brand-logos img {
      max-width: 120px;
  }
}

/* blog section design  */
.blog-headline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-headline-shop {
  font-size: 18px;
  color: #ff6b6b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 5px;
  font-weight: 600;
}

.blog-headline-new-arrivals {
  font-size: 48px; /* Bigger and Bolder */
  color: #2d3436;
  font-weight: 900; /* Extra bold */
  text-transform: uppercase;
  letter-spacing: 3px;
}
.blogHeader{
   /* background: #F0EDE9; */
   margin: 53px;
}
.blog-section {
  max-width: 1200px;
  margin: 50px 50px;
  padding: 20px;
  /* background: #F6F7F8; */
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  text-align: center;
}

.blog-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px;
  margin-bottom: 20px;
}
.blog-card {
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  height: 350px;
  background:  #F6F7F8;
  padding: 20px;
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-card h5 {
  font-size: 30px;
  unicode-bidi: isolate;
  display: block;
  color: var(--theme-color-text_dark);
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
  font-family: var(--theme-font-h5_font-family);
  font-weight: var(--theme-font-h5_font-weight);
  font-style: var(--theme-font-h5_font-style);
  text-decoration: var(--theme-font-h5_text-decoration);
  text-transform: var(--theme-font-h5_text-transform);
  letter-spacing: var(--theme-font-h5_letter-spacing);
}
.blog-card .date {
  font-size: 20px;
  color: #777;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}
.blog-card .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.blog-card:hover .image-container {
  opacity: 1;
  
}

.blog-card:hover .blog-content{
  color: white;
}
.blog-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.blog-content {
  position: relative;
  z-index: 2;
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 15px;
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .blog-container {
      flex-direction: column;
      align-items: center;
  }
  .blog-card {
      max-width: 90%;
  }
}


.profile-dropdown {
    position: relative;
    display: inline-block;
}
.profile-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.profile-btn i {
    margin-left: 5px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    color: black;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}
.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}
.dropdown-menu a:hover {
    background-color: #f1f1f1;
}
.profile-dropdown:hover .dropdown-menu {
    display: block;
}

.extra-features{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}





.new-arrival-section {
    text-align: center;
    padding: 40px 15%; /* 30% combined space on both sides */
  }

  .new-arrival-headline {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
  }

  .product-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }

  .product {
    flex: 1;
    /* background: #fff; */
    border-radius: 10px;
    padding: 15px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
  }

  .product:hover {
    transform: translateY(-5px);
  }

  .product img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .product-price {
    font-size: 16px;
    color: #777;
    margin-bottom: 8px;
  }

  .product-price .original-price {
    text-decoration: line-through;
    margin-right: 8px;
  }

  .product-price .discounted-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
  }

  .product-rating {
    color: #f1c40f;
    font-size: 18px;
  }







  
  .what-they-say-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 10%;
    background-color: #f9f9f9;
    /* background-color: black; */
  }

  .left-side {
    flex: 1;
    /* max-width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything horizontally */
    text-align: center; /* Center text */
    /* background-color: #f0f8ff; Light blue background for left side */
    padding: 40px;
    margin-right: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .right-side {
    flex: 1;
    /* max-width: 100%; */
    /* background-color: #fff0f5; Light pink background for right side */
    padding: 40px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .right-side img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .what-they-say-headline {
    font-size: 32px;
    font-weight: bold;
    /* color: white; */
    color: #333;
    margin-bottom: 20px;
  }

  .quotation-mark {
    font-size: 80px;
    color: #e74c3c;
    line-height: 0.8;
    margin-bottom: 20px;
  }

  .review-container {
    position: relative;
    height: 200px; /* Fixed height to prevent layout shift */
    width: 100%;
    overflow: hidden;
  }

  .review {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center review content */
    text-align: center; /* Center text */
  }

  .review.active {
    opacity: 1;
    transform: translateX(0);
  }

  .review.next {
    transform: translateX(100%);
  }

  .review.previous {
    transform: translateX(-100%);
  }

  .review-description {
    font-size: 18px;
    /* color: white; */
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 80%; /* Limit description width for better readability */
  }

  .reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
  }

  .reviewer-name {
    font-size: 16px;
    font-weight: 600;
    /* color: white; */
    color: #333;
  }
