/* ================= ROOT COLORS ================= */
:root {
  --brand-primary: #FFD700;
  --brand-primary-hover: #e6c200;
  --text-heading: #FFD700;
    --brand-yellow: #f2c300;
  --brand-yellow-dark: #e0b200;
}

/* ================= GLOBAL ================= */
body {
  margin: 0;
font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #e5e5e5;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;

}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
isolation: isolate;
}
.slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */

  padding: 60px 80px;
  box-sizing: border-box;

  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;

  pointer-events: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slide {
  pointer-events: none;   /* prevents blocking arrows */
}

.slide.active {
  pointer-events: auto;   /* only active slide clickable */
}
/* Gradient backgrounds like screenshot */
.bg-1 { background: linear-gradient(90deg,#f3f3f3,#dfe9e4,#f3e7cc); }
.bg-2 { background: linear-gradient(90deg,#f5f5f5,#e6f0f0,#f8ead1); }
.bg-3 { background: linear-gradient(90deg,#f7f7f7,#e8f3ea,#f6e6d4); }

.slide-content {
  max-width: 1300px;
  width: 100%;

  display: flex;
  align-items: center;   /* ensures image & text align middle */
  justify-content: center;
  gap: 80px;
}

.slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
}

.slide-text {
  flex: 1;

}

.slide-text .category {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.slide-text h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--brand-yellow);
  margin: 0 0 20px;
  line-height: 1.1;
}

.slide-text .desc {
  font-size: 20px;
  color: #444;
  margin-bottom: 30px;
  max-width: 550px;
}

.shop-btn {
  display: inline-block;
  background: var(--brand-yellow);
  color: #000;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}

.shop-btn:hover {
  background: var(--brand-yellow-dark);
}


/* ================= ARROWS ================= */
/* ================= ARROWS FIXED VISIBILITY ================= */


/* ================= DOTS ================= */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--brand-yellow);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .slide-text h1 {
    font-size: 36px;
  }

  .slide-text .desc {
    font-size: 16px;
  }
}
/* Hero slider responsive */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    padding: 20px 20px;
    text-align: center;
  }

  .slide-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .slide-text .desc {
    font-size: 14px;
    max-width: 100%;
  }

  .slide-image img {
    max-height: 300px;
    width: auto;
  }

  /* Make arrows smaller for mobile */
  .hero-slider button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .dots {
    bottom: 15px;
    gap: 6px;
  }
}
/* ================= HERO SLIDER MOBILE FIX ================= */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;  /* stack image & text */
    padding: 20px 15px;      /* reduce padding */
    gap: 30px;               /* reduce space between image & text */
    text-align: center;
  }

  .slide-text h1 {
    font-size: 24px;         /* smaller heading for mobile */
    line-height: 1.2;        /* tighter line height */
  }

  .slide-text .desc {
    font-size: 14px;         /* smaller description */
    max-width: 100%;
  }

  .slide-image img {
    max-height: 250px;       /* smaller image for mobile */
    width: auto;
  }

  /* Arrows smaller for mobile */
  .hero-slider button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  /* Dots closer to bottom */
  .dots {
    bottom: 15px;
    gap: 5px;
  }
}
/* ================= PRODUCT CARDS ================= */
.product-card {
  min-width: 240px;
  background: #141414;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #111;
}

.product-info { padding: 14px; }

.product-title {
  font-size: 16px;
  color: #fff;
}

.shop-btn,
.view-btn {
  display: block;
  text-align: center;
  background: var(--brand-primary);
  color: #000;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= RECOMMENDED ================= */
.recommended-section { padding: 70px 0; }

.section-title {
  font-size: 26px;
  color: var(--text-heading);
  margin-bottom: 25px;
}

.recommend-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.recommend-scroll::-webkit-scrollbar { display: none; }

/* ================= CATEGORY SECTION ================= */
.shop-category-section { padding: 60px 0; }

.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.category-card {
  min-width: 240px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
/* Add to your existing CSS */

/* Category section with arrows */
.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cat-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-yellow);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.cat-arrow:hover {
  opacity: 1;
  background: var(--brand-yellow-dark);
}

.cat-arrow.left {
  left: -15px;
}

.cat-arrow.right {
  right: -15px;
}

.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 100%;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

/* Category card styling */
.category-card {
  min-width: 240px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.category-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cat-arrow {
    display: none; /* Hide arrows on mobile, users can scroll naturally */
  }
  
  .category-scroll {
    padding: 10px 5px;
  }
}
/*=======================feature section====*/
.features-section {
  background: #0f0f0f;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-heading {
  font-size: 36px;
  font-weight: 600;
  color: #f5c518; /* Gold */
  margin-bottom: 20px;
}

.features-subheading {
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 15px;
  color: #bdbdbd;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

.feature-icon {
  font-size: 48px;
  color: #f5c518; /* Gold */
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= PRODUCT PAGE ================= */
.product-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
/* Product cards responsive */
@media (max-width: 768px) {
  .product-card img {
    height: 180px;
    object-fit: cover;
  }

  .product-title {
    font-size: 14px;
  }

  .shop-btn,
  .view-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* ================= CATEGORY PRODUCT GRID RESPONSIVE ================= */

/* Desktop - 4 per row (already set) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Laptop */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* Make cards fill properly */
.product-card {
  width: 100%;
}
.product-gallery {
  background: #111;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-info-area { padding-top: 10px; }

.product-title-main {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--brand-primary);
}

.product-desc-short {
  color: #bbb;
  margin-bottom: 15px;
}

.rating { color: gold; }

.price-main {
  font-size: 28px;
  color: var(--brand-primary);
  font-weight: bold;
}

/* quantity + cart */
.buy-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-box {
  display: flex;
  border: 1px solid #333;
  border-radius: 8px;
}

.qty-box input {
  width: 55px;
  text-align: center;
  border: none;
  background: #111;
  color: white;
}

.qty-box button {
  background: #222;
  border: none;
  padding: 10px 14px;
  color: white;
  cursor: pointer;
}

.add-cart-btn {
  background: var(--brand-primary);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
}

.stock-info { margin-top: 15px; }
.in-stock { color: #3ad13a; }

/* ================= DESCRIPTION & REVIEWS ================= */
.premium-section { margin-top: 70px; }

.premium-box {
  background: #111;
  padding: 30px;
  border-radius: 14px;
}

.review-card {
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.review-stars { color: gold; }

/* ================= REVIEW FORM ================= */
.review-form {
  background: #141414;
  padding: 20px;
  border-radius: 12px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0b0b0b;
  color: #fff;
}

/* star selector */
.stars {
  display: flex;
  flex-direction: row-reverse;
}

.stars input { display: none; }

.stars label {
  font-size: 26px;
  color: #444;
  cursor: pointer;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
  color: gold;
}

.review-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--brand-primary);
  font-weight: bold;
}

/* ================= RELATED PRODUCTS ================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 products in one line */
  gap: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .product-page {
    grid-template-columns: 1fr;
  }

  .buy-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #0b0b0b;
  padding: 70px 0 30px;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h3 {
  color: var(--brand-primary);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
}

.footer-right {
  text-align: right;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

.footer-col p a {
  color: var(--brand-primary);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-primary);
  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--brand-primary);
  color: #000;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
