body {
  font-family: "poppins" sans-serif;
  background: fixed;
}
h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
}

.navbar {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 10;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translatex(-40px);
  }
  100% {
    opacity: 1;
    transform: translatex(0);
  }
}

.navbar  {
  animation: fadeUp 1.2s cubic-bezier(0.6,0.2,0.2,1) 0.2s both;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px;
  height: 60px;

  margin-right: 10px;
}

.brand-text {
  font-size: 18px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 25px;
}

nav ul li {
  border: 1px solid #ff7f11;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 500;
  border-radius: 20px;
  width: 70px;
  text-align: center;
  padding: 5px;
  font-size: 13px;
}

.icon-link {
  color: #f8e8d6;
  font-size: 20px;
  margin-left: 15px;
}

.nav-icons {
  font-size: 60px;
  display: flex;
  align-items: center;
}

.icon-links {
  background: #ffe9e9;
  width: 100px;
  padding: 7px;
  border-radius: 20px;
}
/* Cloudflare icon styles */

/* Space between icons */
.nav-icons a {
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  position: relative;

  height: 80vh;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2rem;
  border-radius: 20px;
}

.hero-content {
  max-width: 700px;
  padding: 0 20px;
  color: #282828;
  justify-content: center;
  text-align: center;
  justify-items: center;
  height: 100%;

  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.bgimg img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: absolute;
}
/* Add to your style.css */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1  {
  animation: fadeUp 1.2s cubic-bezier(0.6,0.2,0.2,1) 0.2s both;
}
.hero-content h1 {
  color: #571b00;
  font-size: 4.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 500;
  width: 1000px;
  font-family: "Poppins", sans-serif;
  font-style: normal;

  letter-spacing: 1px;
  justify-content: center;

  text-align: center;
  justify-content: center;
  transform: translateX();
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p  {
  animation: fadeUp 1.2s cubic-bezier(0.6,0.2,0.2,1) 0.2s both;
}
.hero-content p {
  color: #4a4a4a;

  font-size: 1rem;
  width: 700px;
  margin-bottom: 30px;

  line-height: 1.5;
}

.btn-primary {
  background: #ffffff;
  color: #4a4a4a;
  padding: 12px 25px;

  border: 1px solid #d35400;
  border-radius: 25px;
  text-decoration: none;

  text-align: center;
  justify-content: center;
  align-items: center;
  justify-content: center;

  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #ffaa71;
  color: rgb(0, 0, 0);
  transition: background 0.1s, color 0.4s;
  border: none;

  transform: translateY(-2px);
  cursor: pointer;
}

.scroll-down-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid #ff7f11;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255, 166, 0, 0.1);
  color: #4a4a4a;
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(-45deg) translateX(0);
  }
  50% {
    transform: rotate(45deg) translateY(10px);
  }
}
.scroll-down-btn span {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #4a4a4a;
  margin-top: 16px;
  animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
  background: rgba(255, 166, 0, 0.1);
}

@media (max-width: 768px) {
  .brand-text {
    display: none;
  }
  nav ul {
    display: none;
  }
  .navbar {
    justify-content: space-between;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px; /* reduced padding to save space */
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box; /* makes sure padding doesn't add to width */
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* prevent logo from shrinking weirdly */

  border-radius: 20px;
}

.logo img {
  height: 50px;
}

.brand-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap; /* keep text in one line */
}

nav {
  flex: 1; /* let nav take remaining space */
  overflow: hidden; /* prevent text from causing overflow */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* wrap if needed */
}

nav ul li a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
}

.nav-icons {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-icons a img {
  height: 60px;
  margin-left: 15px;
}

/* Mobile view fix */
@media (max-width: 900px) {
  nav ul {
    display: none; /* hide menu links */
  }
  .brand-text {
    display: none; /* hide text to save space */
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
  font-family: "Lato", sans-serif;
}

.logo {
  height: 40px;
  margin-right: 2rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #7b3f00;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f77b00;
}

.icons a {
  margin-left: 15px;
  font-size: 13px;
  color: #6b3e26;

  text-decoration: none;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-title span {
  text-decoration: underline;
  text-decoration-color: #ff7f11;
  text-decoration-thickness: 4px;
}

.collection-slider {
  background: rgba(250, 236, 223, 0.9);
  border-radius: 20px;
  padding: 4rem;
  margin: 2rem;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.hotselling {
  background: rgba(250, 236, 223, 1);
  border-radius: 10px;
}
.scroll-wrapper {
  overflow-x: hidden;
  width: 100%;
  white-space: nowrap;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
  width: calc(300px * 12);
}

.card {
  background: #fff8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 auto;
  width: 300px;
  display: inline-block;
  text-decoration: none;
  color: #4a4a4a;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  display: block;
  height: 250px;
  object-fit: contain;
}

.card-footer {
  background: rgba(250, 236, 223, 0.8);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer h3 {
  font-size: 1rem;
  font-weight: 500;
}

.card-footer span {
  font-size: 0.9rem;
}

.card-footer h3 span {
  font-size: 0.8rem;
  margin-left: 6px;
  vertical-align: top;
}

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

.product-section {
  font-family: "Poppins", sans-serif;
  padding: 0.5rem 2rem 2rem 2rem;
  background: rgba(250, 236, 223, 0.8);
  max-width: 1400px;
  margin: auto;
  border-radius: 20px;
}

.product-category-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 0;
  background-color: #fdfbf8;
}

.product-category-card {
  font-family: "Poppins", sans-serif;
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-category-card p {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  color: #333;
  margin-bottom: 4px;
}

.product-category-card a{
  text-decoration: none;
}

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

.badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #0047ff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.product2-sold-out,
.product2-add-cart {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.product2-add-cart {
  margin-top: 5px;
  background: #d35400;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 40%;
  text-align: center;
}

.product2-title {
  word-wrap: break-word;
}

.product2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 2rem;
  font-family: "Poppins", sans-serif;
}

.product2-card {
  position: relative;
  background: #fff8f0;
  color: #4a4a4a;
  border-radius: 15px;
  height: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product2-card img {
  width: 100%;
  max-height: 210px;
  border-bottom: 1px solid #f0f0f0;
  object-fit: contain;
}

.product2-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0062ff;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.product2-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product2-rating i {
  color: gold;
}

.product2-sold-out,
.product2-add-cart {
  position: absolute;
  bottom: 200x;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.product2-sold-out {
  background: #f5f5f5;
  color: #333;
}

.product2-add-cart {
  background: #f77b00;
  color: #fff;
}

.product2-info {
  padding: 15px;
}

.product2-brand {
  font-size: 0.8rem;
  color: #ff7f11;
  margin-bottom: 7px;
}

.product2-title {
  margin: 5px 0;
  font-size: 1rem;
}

.product2-price {
  color: #7b3f00;
  font-weight: bold;
  font-size: 1.1rem;
}

.product2-old-price {
  text-decoration: line-through;
  color: #e67e22;
  font-size: 0.9rem;
  margin-left: 8px;
}

@media (max-width: 600px) {
  .product2-grid {
    grid-template-columns: repeat(auto-fit, minmax(1fr));
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.hote-title {
  color: #7b3f00;
  text-decoration: underline;
  text-decoration-color: #ff7f11;
  text-decoration-thickness: 4px;
  font-size: 2rem;
  margin: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.best-title {
  color: #7b3f00;
  text-decoration: underline;
  text-decoration-color: #ff7f11;
  text-decoration-thickness: 4px;
  font-size: 2rem;
  margin: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.shop-title {
  color: #7b3f00;
  text-decoration: underline;
  text-decoration-color: #ff7f11;
  text-decoration-thickness: 4px;
  font-size: 2rem;
  margin: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 3rem;
}

.shop-collection {
  background: rgba(250, 236, 223, 0.8);
  margin: 0;
  max-width: 1200px;
  padding: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
  margin-top: 0;
}

.collection-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff7e6;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.collection-card.large {
  grid-row: span 2;
}

.collection-card img {
  width: 100%;
  object-fit: contain;
}

.collection-info h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 8px;
}

.collection-info p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

@media (max-width: 368px) {
  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card.large {
    grid-row: auto;
  }
}

.carousel-section {
  background: rgba(250, 236, 223, 0.8);

  font-family: "Poppins", sans-serif;
  justify-content: center;
  align-items: center;
  align-content: center;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-section h2 {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
}

.product-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  text-align: center;
  padding: 10px;
}

.product-info .price {
  font-weight: bold;
  font-size: 18px;
  color: #5d0000;
}

.product-info .old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #fb9454;
  margin-left: 10px;
}

.product-info .name {
  margin: 5px 0 10px;
  font-size: 14px;
}

.shop-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #a85dfc;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #b4b4b4;
  color: black;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.nav-btn.left {
  left: 20px;
}

.nav-btn.right {
  right: 20px;
}

.new-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #7b3f00;
  text-decoration: underline;
  text-decoration-color: #ff7f11;
}

.tabs {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.tab {
  background: #ffffff;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 20px;
 
}

.tab.active {
  background: #f67700;
  color: #fff;
}
.hotselling {
  padding: 4rem;
  padding-top: 10px;
  font-family: "poppins", sans-serif;
}

/* ...existing code... */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  flex-direction: row;
  align-items: flex-start;
  /* Remove column direction for default */
}

.tabs .tab {
  min-width: 180px;
  font-size: 1rem;
  text-align: ceter;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
}

.tabs .tab.active,
.tabs .tab:hover {
  background: #f48038;
  color: #fff;
  border: none;
}

/* When not enough horizontal space, tabs will wrap to next line (grow downward) */
@media (max-width: 700px) {
  .tabs {
    flex-direction: row;
    gap: 8px;
  }
  .tabs .tab {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}
/* ...existing code... */
.product-carousel {
  margin-top:1rem ;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  background: rgba(250, 236, 223, 0.8);
  padding: 3rem;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0047ff;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}

.price {
  margin: 10px 0;
  font-weight: bold;
}

.price del {
  color: #888;
  margin-right: 5px;
}

.cart-btn {
  background: #ad0000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}
.category-card a{
  text-decoration: none;
}

.category-card {
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  color: #333;
}

.category-card img {
  max-width: 80px;
  margin-bottom: 10px;
}

.category-card.yellow {
  background: #fff7e6;
}

.category-card.pink {
  background: #ffe6e6;
}

.category-card.orange {
  background: #fff0e6;
}

.discount-banner {
  background: #ff6a00;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.discount-banner button {
  background: #fff;
  color: #3d3d3d;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Hero Section Styling */

.best-sellers {
  max-width: auto;
  margin: 1rem;
  padding: 10px 20px;
}

.best-sellers .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-sellers h2 {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.nav-buttons button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 1rem;
  justify-content: center;
}

.product-card {
  position: relative;
  text-align: left;
  max-width: 200px;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  background: #f9f7f4;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-weight: 500;
}

.label.bundle {
  background: #8c6239;
}

.label.bestseller {
  background: #808080;
}

.label.new {
  background: #0047ff;
}

.product-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  margin: 12px 0 6px;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.price {
  font-size: 1rem;
}

.price .current {
  font-weight: 600;
  margin-right: 10px;
}

.price .old {
  text-decoration: line-through;
  color: #9e9e9e;
  margin-right: 10px;
}

.price .pieces {
  color: #777;
}

.shop-collection {
  margin-top: 1rem;
  padding: 40px;
  background: rgba(250, 236, 223, 0.8);

  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.collection-grid {
  background: #ffffff;
  border-radius: 11px;
  padding-top: 0px;
}

.collections-section {
  background: #fff0e6;
  margin-top: 2rem;
  padding: 40px;
  background: #fff0e6;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
}
.collections-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
.collections-header .text {
  max-width: 50%;
  font-size: 14px;
  color: #555;
}
.collections-header h2 {
  font-size: 80px;
  margin: 0;
}
.shop-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background: #ff6a00;
  padding: 6px;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 100;
  font-size: 12px;
}
.collections-carousel {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.collections-carousel p {
  color: #000000;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 100;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
}
.carousel-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 15px;
  min-width: 200px;
  text-align: center;
}
.carousel-item img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}
.carousel-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.carousel-btn.left {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .collections-header h2 {
    font-size: 50px;
  }
  .collections-header .text {
    max-width: 100%;
  }
  .carousel-item img {
    height: 200px;
  }
  .carousel-container {
  }
}

/* Testimonials Section */
:root {
  --primary: #6b3e26; /* Brown */
  --accent: #ff6a00; /* Orange */
}

.testimonial-section {
  background: rgba(250, 236, 223, 0.8);

  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  background: #fff;
  padding: 50px 0;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.testimonial-card {
  background: #fdf6f2;
  border-radius: 16px;
  padding: 30px 20px 20px 80px;
  margin-right: 40px;
  width: 400px;
  position: relative;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 20px;
  top: 30px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.quote {
  font-size: 50px;
  color: #ddd;
  position: absolute;
  top: 0;
  right: 20px;
}

.text p {
  margin-bottom: 10px;
  color: #333;
}

.author {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 30px 50px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 15px 5px;
}

.product-card p {
  font-size: 14px;
  color: gray;
  margin: 0 15px 10px;
}

.product-card .price {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 15px 20px;
}

.container {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 20px;
  align-items: stretch;
  font-family: "Lato", sans-serif;
  margin-bottom: 2rem;
}

/* Left side small cards */

.small-card {
  background-color: orange;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 180px;
  gap: 10px;
}

.small-card.black {
  background-color: #222;
  color: white;
}

.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.small-card span {
  display: block;
}

.arrow {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 10px;
}

.gap {
  height: 20px;
}

/* Right side big slider */
.slider {
  background: rgba(250, 236, 223, 0.8);

  color: white;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 419px;
}

.slider img {
  width: 100%;
  height: 100%;

  margin-bottom: 20px;
}

.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

.slider-text {
  font-size: 20px;
  text-align: center;
  color: #333;
  font-size: 3rem;
  font-family: "lato", sans-serif;
  font-weight: 600;
}
.slider-text span {
  color: #ffffff;
}

.dots {
  position: absolute;
  bottom: 15px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

.hot-title {
  text-align: start;
  font-size: 2.4rem;
  font-family: "poppins" sans-serif;
  margin: 2rem;

  color: #2d2d2d;
}

.footer {
  background-color: #fff8f0;
  padding: 60px 40px 30px;
  color: #eee;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand .logo {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact p a {
  text-decoration: none;
  color: #7b3f00;
  font-size: 14px;
  margin: 10px 0;
}

.footer-contact i {
  margin-right: 8px;
  color: #f28500;
}

.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #7b3f00;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f28500;
}

.footer-social {
  flex: 1 1 150px;
}

.footer-social h4 {
  margin-bottom: 15px;
  color: #7b3f00;
}

.social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #2d2d2d;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f28500;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #3f3f3f;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-family: "Poppins", sans-serif;
}

/* media queer stytle */

/* ...existing code... */

/* Responsive Navbar for Mobile */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 12px;

  z-index: 50;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #70431d;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 16px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    gap: 8px;
    padding: 16px 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }
  .navbar.open .nav-links {
    display: flex;
  }
}

/* ...existing code... */

/* hide explicit long nav on small screens by default */

/* hamburger toggle (hidden on desktop) */

/* ...existing code... */

/* Responsive Hero Section */
.hero {
  position: relative;
  background: #f5e9d9;
  height: 80vh;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2rem;
  border-radius: 20px;

  padding: 0 20px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 241, 235, 0.8);
  border-radius: 20px;
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;

  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 20px;
}
.hero-content {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  color: #282828;
  justify-content: center;
  text-align: center;
  background: none;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  margin: 0 auto;
  z-index: 3;
}

.hero-content h1 {
  color: #571b00;
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.hero-content p {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  width: 100%;
  max-width: 600px;
}

@media (max-width: 900px) {
  .hero {
    margin: 1rem;
    padding: 24px 8px;
    min-height: 60vh;
    height: auto;
    text-align: center;
  }
  .hero-content {
    max-width: 98vw;
    padding: 0 8px;
    border-radius: 14px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .hero {
    margin: 0.5rem;
    padding: 12px 4px;
    border-radius: 10px;
  }
  .hero-content {
    max-width: 100vw;
    padding: 0 2px;
    border-radius: 10px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .hero-content p {
    font-size: 0.7rem;
    margin-bottom: 12px;
    max-width: 350px;
  }
  .btn-primary {
    margin-top: 50px;
    padding: 5px 5px;
    font-size: 11px;
  }
  .scroll-down-btn {
    font-size: 10px;
  }
}

/* ...existing code... */

/* ...existing code... */

/* Responsive Product Section & Carousel for Mobile */

/* Mobile styles */
@media (max-width: 900px) {
  .product-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
  }
  .tabs {
    gap: 8px;
    flex-wrap: wrap;
  }
  .tab {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .hotselling {
    padding: 0;
  }
  .product-section {
    padding: 18px 0;
  }
  .product-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product2-card {
    padding: 12px 6px;
    border-radius: 10px;
    max-height: 360px;
  }
  .product2-card img {
    width: 170px;
    height: 130px;
  }
  .product2-title {
    font-size: 0.95rem;
  }
  .product2-price {
    font-size: 1rem;
  }
  .product2-add-cart {
    padding: 8px 12px;
    font-size: 0.95rem;
    width: 50%;
  }
}

/* ...existing code... */
