/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', Arial, sans-serif;
}

body{
  background:#000;
  color:#FFD700;
}

/* ===== HEADER ===== */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 25px;
  background:#000;
  border-bottom:1px solid #FFD700;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:22px;
  font-weight:bold;
}

.logo img{
  width:40px;
  height:40px;
  border-radius:50%;
}

nav a{
  color:#FFD700;
  margin-left:15px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

nav a:hover{
  color:white;
}

/* ===== BANNER ===== */
.single-banner{
  width:100%;
  height:220px;
  overflow:hidden;
}
.single-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== HERO ===== */
.hero{
  text-align:center;
  padding:20px;
}
.hero p{
  color:#ccc;
  font-size:14px;
}

/* ===== PRODUCTS GRID ===== */
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  padding:20px;
}

.product-card{
  background:#111;
  border:1px solid #FFD700;
  border-radius:12px;
  padding:15px;
  text-align:center;
  cursor:pointer;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-6px);
}

.product-card img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:8px;
}

.product-card h3{
  margin:10px 0;
}

.product-card p{
  color:white;
  font-size:14px;
}

.product-card button{
  background:#FFD700;
  border:none;
  padding:6px 14px;
  border-radius:15px;
  font-size:12px;
  cursor:pointer;
  font-weight:bold;
}

/* ===== MINI PRODUCTS ===== */
.product-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:15px;
  padding:20px;
}

.mini-card{
  background:#111;
  border:1px solid #FFD700;
  border-radius:12px;
  padding:10px;
  text-align:center;
}

.mini-card img{
  width:100%;
  height:100px;
  object-fit:cover;
  border-radius:8px;
}

.mini-card h4{
  font-size:13px;
}

.mini-card p{
  font-size:11px;
  color:#ccc;
}

.mini-card button{
  background:#FFD700;
  border:none;
  padding:5px 12px;
  border-radius:12px;
  font-size:11px;
  font-weight:bold;
}

/* ===== BANNERS ===== */
.banner-container{
  display:flex;
  gap:15px;
  padding:20px;
}

.banner{
  flex:1;
  position:relative;
  background:#111;
  border:1px solid #FFD700;
  border-radius:15px;
  overflow:hidden;
}

.banner img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.banner-text{
  position:absolute;
  bottom:10px;
  left:10px;
  color:white;
}

.banner-text button{
  margin-top:5px;
  padding:5px 12px;
  border:none;
  border-radius:12px;
  background:#FFD700;
  color:black;
  font-size:11px;
}

/* ===== CONTACT ===== */
.contact-main-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
  padding:20px;
}

.contact-card{
  background:#111;
  border:1px solid #FFD700;
  border-radius:12px;
  padding:12px;
  text-align:center;
  color:#FFD700;
}

.contact-card p{
  color:#ccc;
  font-size:12px;
}

/* ===== AI CHAT ===== */
.ai-chat-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  background:gold;
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
}

.ai-chat-box{
  position:fixed;
  bottom:80px;
  right:20px;
  width:250px;
  height:300px;
  background:#111;
  border:1px solid gold;
  border-radius:10px;
  display:none;
  flex-direction:column;
}

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', Arial, sans-serif;
}

body{
  background:#0f0f0f;
  color:#fff;
}

/* ===== HEADER ===== */
header{
  background:#000;
  padding:15px 20px;
}
header a{
  color:#FFD700;
  text-decoration:none;
  font-size:18px;
  font-weight:bold;
}

/* ===== PRODUCT PAGE LAYOUT ===== */
.product-page{
  display:flex;
  gap:25px;
  max-width:900px;
  margin:40px auto;
  background:#1a1a1a;
  padding:20px;
  border-radius:15px;
  box-shadow:0 0 25px rgba(255,204,0,0.4);
}

/* Left Side */
.product-images{
  flex:1;
}

/* Right Side */
.product-info{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-info h2{
  color:#FFD700;
  margin-bottom:10px;
}

.product-info h3{
  margin-bottom:10px;
}

.short-desc{
  font-size:14px;
  color:#ccc;
  margin-bottom:20px;
}

/* Add to cart */
.add-cart-btn{
  background:#FFD700;
  color:#000;
  border:none;
  padding:10px 20px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}
.add-cart-btn:hover{
  background:#fff;
}

/* ===== IMAGE SLIDER ===== */
.slider{
  position:relative;
  width:100%;
  max-width:360px;
  margin:auto;
}

.slider img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:12px;
  border:2px solid #FFD700;
}

/* Slider buttons */
.slider .prev,
.slider .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:black;
  color:#FFD700;
  border:1px solid #FFD700;
  padding:6px 10px;
  font-size:20px;
  border-radius:50%;
  cursor:pointer;
  z-index:10;
  transition:0.3s;
}

.slider .prev{ left:5px; }
.slider .next{ right:5px; }

.slider .prev:hover,
.slider .next:hover{
  background:#FFD700;
  color:black;
}

/* ===== EXTRA DETAILS ===== */
.product-extra{
  max-width:900px;
  margin:30px auto;
  background:#1a1a1a;
  padding:20px;
  border-radius:12px;
}

.product-extra h3{
  color:#FFD700;
  margin-bottom:8px;
}

.product-extra p,
.product-extra li{
  font-size:14px;
  color:#ccc;
  line-height:1.6;
}

/* ===== RELATED PRODUCTS ===== */
.more-title{
  text-align:center;
  color:#FFD700;
  margin:40px 0 20px;
  font-size:24px;
}

.more-products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
  gap:20px;
  padding:0 20px 40px;
}

.more-card{
  background:#1a1a1a;
  border-radius:12px;
  text-align:center;
  padding:15px;
  box-shadow:0 0 15px rgba(255,204,0,0.3);
  transition:0.3s;
  cursor:pointer;
}

.more-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 25px rgba(255,204,0,0.6);
}

.more-card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

.more-card h3{
  color:#FFD700;
  font-size:16px;
  margin:5px 0;
}

.more-card p{
  color:#fff;
  font-size:14px;
}

.more-card button{
  background:#FFD700;
  color:#000;
  border:none;
  padding:6px 12px;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}
.more-card button:hover{
  background:#fff;
}

/* ================= NEW ARRIVALS ================= */

.section{
  padding: 50px 40px;
  background: #000;
}

.section h2{
  text-align: center;
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card{
  background: #111;
  border: 2px solid #FFD700;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.card h4{
  margin: 12px 0 6px;
  font-size: 18px;
  color: #FFD700;
}

.card p{
  font-size: 13px;
  color: #ccc;
  line-height: 1.4;
}

.card button{
  margin-top: 10px;
  background: #FFD700;
  color: #000;
  border: none;
  padding: 9px 22px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover{
  background: #fff;
}

/* ================= CONTACT SECTION ================= */

.contact-main-box{
  background: #0d0d0d;
  border-top: 2px solid #FFD700;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.contact-card{
  background: #111;
  border: 2px solid #FFD700;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
  transition: 0.3s;
}

.contact-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.contact-card h3{
  font-size: 20px;
  margin-bottom: 12px;
  color: #FFD700;
}

.contact-card p{
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}

/* Gold Buttons */
.gold-btn{
  margin-top: 10px;
  background: #FFD700;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.gold-btn:hover{
  background: #fff;
}

/* ================= AI CHAT ================= */

.ai-chat-btn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFD700;
  color: #000;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.ai-chat-box{
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 280px;
  height: 360px;
  background: #111;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  border: 2px solid #FFD700;
  overflow: hidden;
  z-index: 9999;
}

.ai-chat-header{
  background: #FFD700;
  color: #000;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.ai-chat-body{
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 13px;
  color: #fff;
}

.ai-msg{
  background: #333;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.ai-chat-input{
  display: flex;
  border-top: 1px solid #FFD700;
}

.ai-chat-input input{
  flex: 1;
  padding: 6px;
  border: none;
  outline: none;
}

.ai-chat-input button{
  background: #FFD700;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
}


/* ===== IMAGE FIT FIX FOR ALL PRODUCT BOXES ===== */

/* Main product cards */
.product-card img{
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Mini product cards */
.mini-card img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* New Arrivals cards */
.card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Related / More products cards */
.more-card img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Smooth hover effect */
.product-card img,
.mini-card img,
.card img,
.more-card img{
  transition: transform 0.3s ease;
}

.product-card:hover img,
.mini-card:hover img,
.card:hover img,
.more-card:hover img{
  transform: scale(1.05);
}
/* ===== MAIN PRODUCTS (5 IN ONE ROW, NO OUTER BOX) ===== */
.products{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 30px;
}

/* Product card */
.product-card{
  background:#111;
  border:2px solid #FFD700;
  border-radius:18px;
  padding:18px;
  text-align:center;
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-6px);
}

.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
}

.product-card button{
  margin-top:10px;
  background:#FFD700;
  color:#000;
  border:none;
  padding:10px 16px;
  border-radius:20px;
  font-weight:bold;
  cursor:pointer;
}
.product-card button:hover{
  background:white;
}


/* ===== MINI PRODUCTS (NO OUTER BOX) ===== */
.product-box{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
  margin:30px;
  padding:0;              /* outer box remove */
  background:transparent; /* outer box remove */
  border:none;            /* outer box remove */
}

.mini-card{
  background:#111;
  border:2px solid #FFD700;
  border-radius:15px;
  padding:12px;
  text-align:center;
}

.mini-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:10px;
}


/* ===== NEW ARRIVALS (NO OUTER BOX) ===== */
.section .cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
  padding:0;              /* outer box remove */
  background:transparent; /* outer box remove */
  border:none;            /* outer box remove */
}

.section .card{
  background:#111;
  border:2px solid #FFD700;
  border-radius:10px;
  padding:12px;
  text-align:center;
}

.section .card img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:16px;
}

/* ===== ORGANIC CONNECT SECTION (BLACK + YELLOW, NO FULL BOX, NO GLOW) ===== */

.organic-connect{
  width:100%;
  padding:60px 8%;
  background:#111;
  display:flex;
  flex-direction:column;
  gap:80px;
}

/* Each row */
.organic-card{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
  gap:40px;
  border-bottom:1px solid rgba(255,215,0,0.25);
  padding-bottom:50px;
}

/* Reverse layout */
.organic-card.reverse{
  grid-template-columns: 0.9fr 1.1fr;
}

/* Text side */
.organic-text h2{
  color:#FFD700;
  font-size:30px;
  margin-bottom:12px;
  letter-spacing:1px;
}

.organic-text p{
  color:#ccc;
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

.organic-text ul{
  list-style:none;
  padding:0;
  margin:0 0 18px 0;
}

.organic-text ul li{
  color:#eee;
  font-size:14px;
  margin-bottom:6px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Button */
.organic-btn{
  background:transparent;
  color:#FFD700;
  border:2px solid #FFD700;
  padding:10px 22px;
  border-radius:30px;
  font-size:13px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.organic-btn:hover{
  background:#FFD700;
  color:#000;
}

/* Image side */
.organic-img{
  width:100%;
  height:280px;
  overflow:hidden;
  border-radius:14px;
}

.organic-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s ease;
}

.organic-card:hover .organic-img img{
  transform:scale(1.06);
}

/* Small yellow accent line */
.organic-text h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#FFD700;
  margin-top:6px;
}
body{
  margin:0;
  font-family: Arial, sans-serif;
  background:#000;
  color:#fff;
}

/* Search Bar */
.search-box{
  display:flex;
  justify-content:center;
  padding:20px;
  background:#000;
  border-bottom:2px solid #f9c400;
}

.search-box input{
  width:260px;
  padding:10px 15px;
  border:none;
  outline:none;
  border-radius:20px 0 0 20px;
  font-size:14px;
}

.search-box button{
  padding:10px 15px;
  border:none;
  background:#f9c400;
  color:#000;
  font-size:16px;
  border-radius:0 20px 20px 0;
  cursor:pointer;
  font-weight:bold;
}

/* Products */
.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:15px;
  padding:20px;
}

.product{
  background:#111;
  border:1px solid #f9c400;
  border-radius:8px;
  padding:15px;
  text-align:center;
  transition:0.2s;
}

.product:hover{
  background:#f9c400;
  color:#000;
}

.product h3{
  margin:0;
  font-size:16px;
}
/* ===== MOBILE VIEW FIX (STYLE.CSS) ===== */
@media (max-width: 768px){

  /* HEADER */
  header{
    flex-direction: column;
    padding: 10px;
  }
  nav{
    margin-top: 8px;
  }
  nav a{
    font-size: 13px;
    margin: 0 8px;
  }

  /* HERO */
  .hero p{
    font-size: 12px;
    padding: 5px;
  }

  /* PRODUCTS GRID */
  .products{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .product-card{
    padding: 10px;
  }

  .product-card img{
    height: 150px;
  }

  .product-card h3{
    font-size: 13px;
  }

  .product-card p{
    font-size: 12px;
  }

  .product-card button{
    font-size: 11px;
    padding: 6px;
    width: 100%;
  }

  /* MINI PRODUCTS */
  .product-box{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 10px;
  }

  .mini-card img{
    height: 120px;
  }

  .mini-card h4{
    font-size: 12px;
  }

  .mini-card p{
    font-size: 10px;
  }

  /* NEW ARRIVALS */
  .section .cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .section .card img{
    height: 160px;
  }

  /* BANNER */
  .banner-container{
    flex-direction: column;
  }

  .banner img{
    height: 160px;
  }

  /* CONTACT */
  .contact-main-box{
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .contact-card{
    padding: 15px;
  }
}
/* ===== ORGANIC SECTION MOBILE FULL FIX ===== */

.organic-card{
  width: 100%;
  overflow: hidden;
}

/* Desktop default */
.organic-card{
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Mobile view */
@media (max-width: 768px){

  .organic-card{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .organic-img{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .organic-img img{
    width: 100%;
    max-width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  .organic-text{
    width: 100%;
  }

  .organic-text h2{
    font-size: 22px;
    margin-bottom: 8px;
  }

  .organic-text p{
    font-size: 13px;
    line-height: 1.5;
  }

  .organic-text ul{
    padding: 0;
    margin: 12px 0;
  }

  .organic-text ul li{
    list-style: none;
    font-size: 12px;
    margin: 5px 0;
  }

  .organic-btn{
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 30px;
  }
}
