* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}


.top-bar {
  background: linear-gradient(90deg, #531d16, #490a0a);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ===== QUICK CONNECT BUTTON ===== */
.quick-connect {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #e6bc06, #e6bc06);
  color: #0c0c0c;
  padding: 14px 10px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px #f8f6f6ef;
  writing-mode: vertical-rl;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 999;
}

.quick-connect i {
  transform: rotate(90deg);
}

/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* ===== POPUP FORM ===== */
.popup-form {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 18px;
  animation: popupScale 0.4s ease;
  position: relative;
}

@keyframes popupScale {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #e6bc06;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* ===== FORM INPUTS ===== */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.popup-form textarea {
  resize: none;
  height: 100px;
}

/* Submit button */
.popup-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #e6bc06, #e6bc06);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-form button:hover {
  background: linear-gradient(135deg, #e6bc06, #e6bc06);
}

/* ===== MOBILE ===== */
@media(max-width: 500px) {
  .popup-form {
    padding: 22px;
  }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: white;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #777;
}




nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.search-cart input {
  padding: 6px 10px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  height: 85vh;
  padding: 0 70px;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.1)),
              url("https://png.pngtree.com/thumb_back/fh260/background/20220424/pngtree-ayurvedic-face-mask-with-ghee-honey-and-pack-on-glossy-surface-photo-image_30106576.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 56px;
}

.hero-left p {
  font-size: 24px;
  color: #ffd27d;
  margin: 20px 0;
}

.hero-left button {
  padding: 15px 35px;
  border: none;
  background: #6b3f1d;
  color: white;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
}

/* HERO SLIDER */
.hero-right {
  width: 50%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(100%);
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.ghee-products {
  padding: 80px 8%;
  background: linear-gradient(135deg, #fff7e6, #fdfdfd);
}

.section-title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 50px;
  color: #8B5A2B;
}


/* ===== PRODUCT GRID ===== */
.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.product-card{
    text-align:center;
}

.product-img{
    border:3px dotted #ff7a18;
    padding:10px;
    border-radius:15px;
}

.product-img img{
    width:100%;
    border-radius:10px;
}

.product-card h3{
    margin:15px 0 5px;
    font-size:18px;
}

.product-card .qty{
    font-size:14px;
    margin-bottom:5px;
}

.price{
    font-size:15px;
    margin-bottom:10px;
}

.price del{
    color:#999;
    margin-left:5px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:10px;
}

.buttons button{
    padding:8px 14px;
    border:none;
    cursor:pointer;
    font-size:14px;
    border-radius:5px;
    background:#ff7a18;
    color:#fff;
    transition:0.3s;
}

.buttons button:hover{
    background:#e36400;
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
    .ghee-header h1{
        font-size:28px;
    }
}

/* ===== SHREESHAA GHEE PROMO ===== */
.ghee-promo {
  padding: 40px 20px;
  background: #fffaf2;
}

.promo-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* LEFT SLIDER */
.promo-slider {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.1));
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px;
  max-width: 500px;
}

.slide-content h2 {
  color: #f4c430;
  font-size: 26px;
  font-weight: 800;
}

.slide-content h1 {
  font-size: 38px;
  font-weight: 900;
  margin: 10px 0;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  background: #f4c430;
  color: #3b2400;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #1e5631;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

/* RIGHT SIDE */
.promo-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-card {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.side-card img {
  width: 100%;
  height: 200%;
  object-fit: cover;
}

.side-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(30,86,49,.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 15px;
  font-weight: 700;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .promo-wrapper {
    grid-template-columns: 1fr;
  }

  .promo-slider {
    height: 360px;
  }

  .slide-content {
    padding: 30px;
  }
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08) rotate(-1deg);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background:#8B5A2B;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 30px;
}

.product-card h4 {
  margin: 15px 0 5px;
  font-size: 20px;
  color: #2e2e2e;
}

.product-card p {
  font-size: 14px;
  color: #777;
}

.rating {
  margin: 8px 0;
  font-size: 14px;
  color: #f4b400;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
  color: black;
}

.product-card button {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #8B5A2B,#8B5A2B);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: linear-gradient(135deg,#8B5A2B,#8B5A2B);
}

.product-card .notify {
  background: #9e9e9e;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAIN SECTION ===== */
.why-ghee{
  padding:80px 6%;
}

.why-container{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* ===== LEFT CONTENT ===== */
.left h2{
  font-size:42px;
  color:#4a2b5f;
  margin-bottom:15px;
}

.left p{
  color:#9b6b1a;
  font-size:15px;
  line-height:1.7;
  max-width:520px;
}

.feature-list{
  margin-top:35px;
}

.feature{
  padding:14px 0;
  font-size:18px;
  color:#4a2b5f;
  font-weight:600;
  border-bottom:1px solid #d6c8b5;
}

.feature:last-child{
  border-bottom:none;
}

/* ===== CTA ===== */
.cta{
  margin-top:40px;
}

.cta p{
  font-weight:600;
  color:#4a2b5f;
}

.cta button{
  margin-top:10px;
  background:#f67d2d;
  color:#fff;
  border:none;
  padding:14px 28px;
  font-size:14px;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s;
}

.cta button:hover{
  background:#a77209;
}

/* ===== RIGHT POSTER ===== */
.poster{
  background:#8B5A2B;
  padding:40px;
  position:relative;
}

.poster h3{
  text-align:right;
  color:#1e8f63;
  font-size:20px;
  margin-bottom:20px;
}

.poster-content{
  display:flex;
  align-items:center;
  gap:20px;
}

.poster-content img{
  width:100%;
  max-width:220px;
}

.poster-footer{
  background:#490a0a;
  color:#fff;
  text-align:center;
  padding:14px;
  margin-top:30px;
  font-weight:700;
  font-size:16px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .why-container{
    grid-template-columns:1fr;
  }
  .poster{
    text-align:center;
  }
  .poster-content{
    flex-direction:column;
  }
}


 .info-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding:60px 8%;
}

.info-block{
  background:linear-gradient(135deg,#8B5A2B,#8B5A2B);
  padding:30px;
  border-radius:20px;
  color:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,0.3);
}

.info-block h2{
  margin-bottom:15px;
}

.info-block p{
  line-height:1.7;
}

.full-text{
  max-height:0;
  overflow:hidden;
  transition:0.5s ease;
  opacity:0;
}

.info-block.active .full-text{
  max-height:300px;
  opacity:1;
  margin-top:12px;
}

.toggle-btn{
  margin-top:20px;
  background:#000;
  color:#fff;
  border:none;
  padding:10px 28px;
  border-radius:30px;
  cursor:pointer;
  font-size:14px;
}


.testimonial-section{
  background:#fff;
  padding:80px 8%;
  text-align:center;
}

.testimonial-section h2{
  font-size:42px;
  color:#4b2e0f;
  margin-bottom:10px;
}

.testimonial-section .subtitle{
  max-width:700px;
  margin:0 auto 60px;
  font-size:16px;
  color:#555;
}

.testimonial-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.testimonial-card{
  background:#fffaf3;
  padding:30px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-10px);
}

.testimonial-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:20px;
  border:4px solid #f5c16c;
}

.testimonial-card p{
  font-size:15px;
  color:#333;
  line-height:1.7;
  margin-bottom:18px;
}

.testimonial-card h4{
  font-size:18px;
  color:#4b2e0f;
}


.organic-footer{
  background:#693131;
  font-family:'Segoe UI',sans-serif;
  overflow:hidden;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  padding:70px 6% 40px;
  gap:40px;
}

.footer-col{
  flex:1;
}

/* LOGO */
.logo-col h2{
  font-size:42px;
  color:#ebf0e8;
  line-height:1;
}
.logo-col h2 span{
  font-weight:700;
}
.logo-col p{
  letter-spacing:2px;
  color:hsl(100, 47%, 96%);
  font-size:14px;
}

/* SUBSCRIBE */
.subscribe-col h3{
  color:hsl(100, 29%, 92%);
  font-size:24px;
}
.subscribe-col p{
  color:lab(95.32% 2.35 0.82);
  margin:15px 0;
}

.subscribe-box{
  display:flex;
  max-width:400px;
  margin:15px 0;
}

.subscribe-box input{
  flex:1;
  padding:12px;
  border:1px solid #ccc;
  outline:none;
}

.subscribe-box button{
  padding:12px 20px;
  border:none;
  background:hsl(103, 11%, 87%);
  color:#fff;
  cursor:pointer;
}

.footer-links{
  margin:20px 0;
}

.footer-links a{
  margin-right:20px;
  text-decoration:none;
  color:hsl(99, 50%, 95%);
  font-weight:600;
}

.social-icons a{
  margin-right:15px;
  font-size:18px;
  color:hsl(101, 29%, 89%);
  text-decoration:none;
}

/* STORE BUTTONS */
.store-buttons img{
  height:45px;
  margin:15px 10px 0 0;
}

/* INFO */
.info-col p{
  font-size:14px;
  color:lch(89.01% 5.82 19.72);
  line-height:1.7;
  margin-bottom:10px;
}

/* BOTTOM ILLUSTRATION */
.footer-illustration img{
  width:100%;
  display:block;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-top{
    flex-direction:column;
    text-align:center;
  }
  .subscribe-box{
    margin:auto;
  }
}
