/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 0 15px;
}

/* Navbar 
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.logo span {
  color: #D4AF37;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-login {
  background-color: #D4AF37;
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #b38f00;
}
*/
/* Banner */
.banner-slider {
  position: relative;
  background: #fff;
}
.banner-slide {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,rgb(255 255 255 / 0%),rgba(255, 251, 230, 0.9));
    z-index: 0;
}

.banner-slide h1,
.banner-slide p,
.banner-slide a {
  position: relative;
  z-index: 1;
}
.swiper-wrapper{
	height:100dvh;
}

.banner-slide h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.banner-slide p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #666;
  margin: 10px 0 20px;
}


.btn-primary {
  background-color: #D4AF37;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b38f00;
}

/* Products */
.featured-products {
  padding: 60px 0;
  background-color: #fff;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  max-width: 100%;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.product-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  display: block;
}

.product-card h3 {
  margin: 10px 0 5px;
}

.product-card p {
  color: #D4AF37;
  font-weight: 600;
}

/* About */
.about {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: auto;
  color: #666;
  font-size: 16px;
}


/* Hero */
.hero {
  background: url('imgs/banner.png') no-repeat center center/cover;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.hero-slide h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.hero-slide p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: 20px;
}

/* Categories */
.categories {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.categories h2 {
  text-align: center;
  margin-bottom: 30px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.category-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 10px;
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  word-wrap: break-word;
  transition: transform 0.3s ease;
  cursor: default;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #D4AF37;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}


.category-card p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  white-space: normal; /* Allows wrapping */
}

.btn-cart {
  margin-top: 10px;
  background-color: #D4AF37;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-cart:hover {
  background-color: #b38f00;
}

/* Why Us */
/*.why-us {
  background-color: #fff;
  padding: 60px 0;
}

.why-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.why-card {
  background: #f7f7f7;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  border-radius: 8px;
  cursor: default;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 30px;
  color: #D4AF37;
  margin-bottom: 10px;
}*/

/* Testimonials */
.testimonials {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: default;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.stars {
  color: gold;
  margin: 10px 0;
}

/* Brands Section */
.brands {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}

.brands h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* Swiper Styling */
.brand-swiper {
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.1);
}

/* Responsive */

/* Tablets and medium screens */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .navbar-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .product-grid, .why-grid, .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .banner h1, .hero-slide h1 {
    font-size: 1.5rem;
  }

  .btn-primary, .btn-login, .btn-cart {
    padding: 8px 12px;
    font-size: 14px;
  }

  .product-card {
    width: 100%;
    max-width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.logo img {
  width: 50px;     /* Adjust size as needed */
  height: auto;
  object-fit: contain;
  display: block;
}

/* Optional: make the text span style consistent */
.logo span {
  color: #D4AF37;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .logo img {
    width: 40px;
  }
}
.why-us-full {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.why-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 40px;
}

.why-grid-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 376px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.hover-line {
  position: absolute;
  top: 0;
  left: 20px;
  height: 10px;
  width: 0;
  background: #D4AF37;
  transition: width 0.4s ease-in-out;
}

.why-box:hover .hover-line {
  width: 60px;
}

.box-number {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #979797;
  font-size: 20px;
  font-weight: 500;
}

.why-box h4 {
  margin-top: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.why-box p {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 26px;
}

.why-box img {
  width: 80px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
