/* Reset & Base Setup */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: black; /* Dark background for contrast */
  font-family: 'Segoe UI', sans-serif;
  color: #111;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}



/* Refined Grid Layout */
.hero-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 16px;
  padding: 0 32px; /* More balanced side padding */
  max-width: 1400px; /* Optional: limit it from getting too wide on ultrawide screens */
  margin: 0 auto;    /* Center it nicely */
  width: 100%;
  box-sizing: border-box;
  margin-top: 50px; /* Space from the top */
  scrollbar-width: thin;
  scrollbar-color: #ccc #f7f7f7;
}



/* Categories */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f7f7f7;
  padding: 24px 16px;
  border-right: 1px solid #ccc;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px; /* Soft corners for a smoother look */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 240px; /* Limited width for category box */
  overflow: hidden; /* Prevents any overflow or stretching */
}

.category-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #555  ;
  margin-bottom: 16px; /* Space between heading and items */
  border-bottom: 2px solid #555  ; /* Thin border to separate heading */
  padding-bottom: 8px;
  letter-spacing: 1px; /* Slightly spaced out letters for a modern feel */
}

/* Individual Category Item */
.category-item {
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  background-color: #CC7700 ; /* White background for better contrast */
  color: #edeae1;
  transition: background-color 0.2s ease, transform 0.2s ease; /* Smooth transition for background and hover effect */
}

/* Hover Effect for Category Item */
.category-item:hover {
  background-color: #b35f00; /* Lighter background color on hover */
  transform: translateX(4px); /* Slight move to the right for depth */
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-top: 0px;
  margin-bottom: 20px; /* Increased spacing for better visual balance */
  color: #CC7700;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px; /* More space between subheading and buttons */
  color: #edeae1;
}

.hero-buttons {
  display: flex;
  flex-direction: column; /* Stack button and disclaimer vertically */
  align-items: start;      /* Align to the left — you can use center if you want */
  gap: 8px;
  margin-top: 24px;
}

.hero-buttons a.hero-btn {
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background-color: #CC7700;
  color: white;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.hero-buttons a.hero-btn:hover {
  background-color: #b35f00;
}


/* Editor's Pick Styling */
.editor-pick {
  background-color: #fff;
  color: #555 ;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: fit-content;
  max-width: 100%;
  overflow: hidden;
}

.editor-pick img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 16px;
}

.editor-pick h3 {
  font-size: 1.1rem;
  margin: 6px 0;  
}

.editor-pick p {
  font-size: 0.9rem;
  color: #555;
}

/* Editor's Pick Buttons */
.buy-now-btn {
  display: inline-block;
  background-color: #CC7700;
  color: white;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 12px;
  transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
  background-color: #b35f00;
}

/* === PRODUCT SECTION === */
/* === All Products Section === */
#products {
  padding: 60px 40px;
  background-color: #edeae1;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.product-section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 0.5px;
}

.product-section-title::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 60px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: stretch;
}

/* Individual Product Card */
.product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 8px 0;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.product-card a {
  text-decoration: none;
  background-color: #cc7700;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.product-card a:hover {
  background-color: #b35f00;
}

/* === Responsive === */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}




