/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #010101;
  color: #ffffff;
}

/* ======= Navbar General Styling ======= */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 8px 12px;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background: #f0f0f0;
  border-radius: 5px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: black;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  background-color: white;
  padding: 10px 0;
  border: 1px solid #ccc;
  z-index: 100;
  min-width: 160px;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: black;
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background-color: #f0cda4;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ================= MOBILE NAVIGATION FIX ================= */
@media (max-width: 768px) {
  .main-navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
    color: black;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 65px;
    left: 0;
    padding: 15px 20px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: #f5f5f5;
    padding-left: 15px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.show .dropdown-menu {
    display: block;
  }
}

/* ========== Hero Section Image Fix ========== */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('WHB2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .slider {
    height: 400px;
    background-position: center center;
  }
}

/* ========== (Your existing CSS continues below) ========== */
/* Info Section */
.info-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background-color: #f9f8f8;
  flex-wrap: wrap;
  text-align: center;
}

.info-box {
  max-width: 350px;
}

.info-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  user-select: none;
}

.info-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #121111;
}

/* Footer */
.footer {
  text-align: center;
  padding: 25px 10px;
  background-color: #f4eeee;
  font-size: 0.9rem;
  color: #777;
  user-select: none;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #000;
}

.heading {
  text-align: center;
  font-size: 2.5rem;
  margin: 40px 0 20px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 40px 60px;
}

.product-card {
  position: relative;
  background: #fff;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #850d09;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.title {
  margin: 15px 0 5px;
  font-size: 0.95rem;
}

.price {
  font-size: 1rem;
  font-weight: bold;
  color: #030303;
}
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #000;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  gap: 50px;
}

.image-section {
  flex: 1 1 40%;
  text-align: center;
}

.image-section img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.details-section {
  flex: 1 1 50%;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 10px;
}

.fabric {
  font-size: 1rem;
  margin-bottom: 20px;
}

.size-selector {
  margin-bottom: 20px;
}

.sizes button {
  margin-right: 10px;
  padding: 8px 14px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  cursor: pointer;
}

.sizes button:hover {
  background-color: #000;
  color: #fff;
}

.quantity-section {
  margin-bottom: 20px;
}

.quantity-section input {
  width: 60px;
  padding: 5px;
  font-size: 1rem;
}

.add-to-cart {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 30px;
}

.add-to-cart:hover {
  background-color: #444;
}

.description h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.description p {
  line-height: 1.6;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px;
}

.product {
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}

nav {
  background-color: #fff9f9;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  align-items: center;
}

.left-nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 600;
}

.left-nav a.active {
  border-bottom: 2px solid white;
}

.right-logo img {
  height: 50px;
}

.contact-container {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.contact-container h1 {
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 5px;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #333;
}

#successMessage {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.contact-info {
  margin-top: 40px;
  text-align: left;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  font-size: 16px;
}

footer {
  margin-top: 60px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.featured-categories {
  padding: 20px 20px;
  text-align: center;
  background: url('2.png') no-repeat center center/cover;
  color: #000;
  position: relative;
}

.featured-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* translucent white overlay */
  z-index: 0;
}

.featured-categories h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.product-info {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.product-info h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

#product-price {
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

select, button {
  padding: 8px 14px;
  margin-top: 10px;
  font-size: 15px;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.category-grid a {
  text-decoration: none;
  color: #000;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.category-grid h4 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
}

.category-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.shop-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
}

.product-card {
  width: 23%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
}

.product-image-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slider img.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.label {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #c46539;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index:
}
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animated-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-radius: 12px;
  z-index: 2;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}



/* Button */
.btn {
  display: inline-block;
  margin-top: 300px;
  padding: 10px 25px;
  background-color: rgb(101, 57, 6);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #dacfcf;
}
.button-container {
  display: flex;
  align-items: left;       /* Vertically center */
  justify-content: flex-start; /* Align to left */
  height: 56vh;             /* Full viewport height */
  padding-left: 20px;        /* Optional spacing from the left */
}

.video-review-section {
  background-image: url('hcb.png'); /* Your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.overlay-box {
  background-color: rgba(255, 255, 255, 0.9); /* Soft white overlay */
  max-width: 1200px;
  width: 90%;
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.text-side {
  flex: 1;
  min-width: 300px;
}

.text-side h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 15px;
}

.text-side p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.video-side {
  flex: 1;
  min-width: 300px;
}

.video-side video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 20px;
}

.checkout-container {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #333;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

.title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.product img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 700px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

.slider img {
  width: 100%;
  border-radius: 10px;
}

