/* ///HERO SECTION STARTS HERE */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-video {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  z-index: -1;
  /* filter: brightness(0.4); */
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 8%; /* Shift content to the left side */
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}
.hero-overlay h1{
    letter-spacing: 12px;
}
.shop-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fbc02d;
  margin-bottom: 0.5rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  font-family: var(--main-font);

}




.address {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.support-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn-hero {
  background-color: #fbc02d;
  color: #3e2723;
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #3e2723;
  color: #fbc02d;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-overlay {
    left: 5%;
    max-width: 450px;
  }
  .hero-overlay h1 { font-size: 2.5rem; }
  .support-text, .address { font-size: 1rem; }
}

@media (max-width: 576px) {
  .hero-overlay {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    
  }
  .hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

  #fixed-logo1{
display: none;
}
  .hero-overlay h1 { font-size: 1.8rem; }
  .support-text, .address { font-size: 0.95rem; }
  .btn-hero { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
}

/* ///HERO SECTION ENDED HERE */













/* ///featured-products SECTION START HERE */

/* ===== Featured Products Section ===== */
.featured-products {
  padding: 80px 5%;
  background-color: #fff; /* Clear and clean */
  font-family: var(--main-font);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3e2723;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Products Container */
.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: auto;
  /* border: 2px solid black; */
}


/* Product Card */
.product-card {
  background-color: #fff;
  width: 260px;
  height: 400px;
  border: 2px solid transparent; 
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  
  transition: all 0.5s ease;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.product-card:hover {
  border-image: linear-gradient(45deg, #fbc02d, #ff5722, #4caf50);
  border-image-slice: 1;
  transform: translateY(-5px);
}

/* Product Image */
.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-grow: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Product Name (H3) */
.product-card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px 0;
  color: #3e2723;
  font-weight: 700;
  width: 100%;
  text-align: start;
  flex-grow: 1;
}

/* Product Description (P) */
.product-card p {
  width: 100%;
  text-align: start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 0;
}

/* Button */
.btn-card {
  display: block;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.7rem 1.8rem;
  background-color: #fbc12de2;
  background-color: red;
  /* color: #3e2723; */
  color: white;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  border-top-right-radius: 80%;
}

.btn-card:hover {
  background-color: #3e2723;
  color: #fbc02d;
}

/* RESPONSIVE */

/* Desktop gap */
@media (max-width: 992px) {
  .products-container {
    gap: 20px;
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .product-card {
    max-width: 45%;
    height: 380px;
  }
  
}

@media (max-width: 576px) {
  .products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* spacing between cards */
  }

  .product-card {
    width: 43%; /* Two cards per row */
    height: auto; /* Card height adjusts automatically */
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* smaller shadow for mobile */
    border-radius: 12px;
  }

  .product-image {
    width: auto;
    height: auto; /* let image determine height */
  }

  .product-image img {
    width: 10px;
    height: 10px; /* full image visible */
    object-fit: cover; /* image fills the width nicely */
    border-radius: 10px; /* optional: rounded corners */
  }

  .product-card h3 {
    font-size: 0.95rem; /* smaller title */
    margin: 8px 0 5px 0;
  }

  .product-card p {
    font-size: 0.8rem; /* smaller description */
    padding: 2px 0;
  }

  .btn-card {
    font-size: 0.8rem; /* smaller button */
    padding: 0.4rem 1rem;
    border-radius: 0%;
    border-bottom-left-radius: 9%;
    border-bottom-right-radius: 9%;

  }
}


/* ///featured-products SECTION ENDED HERE */




/* ===== MODERN ABOUT SECTION STYLES ===== */
:root {
    --primary: #FF6B35;
    --secondary: #FF9F1C;
    --accent: #00B4D8;
    --dark-bg: #0A0A0F;
    --card-bg: #14141F;
    --light-bg: #1E1E2E;
    --text-light: #FFFFFF;
    --text-gray: #A0A0B0;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF9F1C 100%);
    --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    --gradient-dark: linear-gradient(135deg, #14141F 0%, #0A0A0F 100%);
}

.modern-about {
    padding: 120px 5%;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Floating Nuts Animation */
.floating-nuts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-nut {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px currentColor);
    animation: floatNut 15s infinite ease-in-out;
}

.floating-nut.almond {
    color: #FF9F1C;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-nut.walnut {
    color: #8B4513;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-nut.cashew {
    color: #FFD700;
    bottom: 30%;
    left: 15%;
    animation-delay: 6s;
}

.floating-nut.pistachio {
    color: #90EE90;
    top: 40%;
    right: 5%;
    animation-delay: 9s;
}

@keyframes floatNut {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Main Container */
.modern-about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modern-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Text Content */
.modern-text-content {
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.label-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.label-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 600;
}

.title-main {
    font-size: 4rem;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.title-highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.modern-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-right: 20px;
}

.text-highlight {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

.text-highlight::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0.2;
    z-index: -1;
    border-radius: 3px;
}

/* Highlights */
.modern-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.highlight-card:nth-child(2)::before {
    background: var(--gradient-accent);
}

.highlight-card:nth-child(3)::before {
    background: linear-gradient(135deg, #FF9F1C 0%, #FFD700 100%);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-card:nth-child(2) .highlight-icon {
    color: var(--accent);
}

.highlight-card:nth-child(3) .highlight-icon {
    color: #FFD700;
}

.highlight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA Button */
.modern-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.modern-cta a{
text-decoration: none;
}
.modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.modern-cta:hover::before {
    left: 100%;
}

.modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.modern-cta i {
    transition: transform 0.3s ease;
}

.modern-cta:hover i {
    transform: translateX(5px);
}

/* Image Content */
.modern-image-content {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-frame {
    position: absolute;
    border: 2px solid;
    border-radius: 30px;
    z-index: 1;
}

.frame-1 {
    width: 100%;
    height: 100%;
    top: -15px;
    left: -15px;
    border-color: var(--primary);
    opacity: 0.5;
}

.frame-2 {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
    border-color: var(--accent);
    opacity: 0.3;
}

.frame-3 {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    top: 30px;
    left: 30px;
    border-color: var(--secondary);
    opacity: 0.2;
}

.quality-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1200px) {
    .modern-content-wrapper {
        gap: 60px;
    }
    
    .modern-title {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .modern-content-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .modern-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modern-title {
        font-size: 2.8rem;
    }
    
    .title-main {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .modern-about {
        padding: 80px 5%;
    }
    
   
    .image-container{
      border-radius: 0;
    }
    .modern-title {
        font-size: 2.3rem;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .modern-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.4rem;
    }
    
    .modern-description {
        font-size: 1rem;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .floating-nut {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .modern-title {
        font-size: 1.8rem;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .modern-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
}



























/* HORIZONTAL SCROLL FIXED */
.categories-scroll {
  display: inline-flex;          /* Important fix */
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  scroll-behavior: smooth;
  width: 90%;
  white-space: nowrap;
  justify-content: center;
}


.categories-scroll::-webkit-scrollbar {
  height: 8px;
}

.categories-scroll::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 10px;
}

/* CATEGORY CARD (never shrink or hide) */
.category-card {
  flex-shrink: 0;                 /* SUPER important fix */
  width: 130px;                   /* perfect small size */
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* IMAGES */
.category-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.category-card h3 {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

.categories-scroll {
  /* scroll-behavior: auto; JS handles smoothness */
}




.product-listing {
  padding: 80px 5%;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #3e2723;
  margin-bottom: 10px;
  font-family: var(--main-font);
}

.section-header p {
  font-size: 1rem;
  color: #555;
}

/* .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
} */

/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #3e2723;
white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.price {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.buy-btn {
  background-color: #fbc02d;
  border: none;
  color: #3e2723;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background-color: #3e2723;
  color: #fbc02d;
}
.product-info .weight {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

.product-info .delivery {
  font-size: 0.8rem;
  color: #3e2723;
  margin-top: 5px;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .product-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
  .buy-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .section-header h2 {
  font-size: 2rem;
  color: #3e2723;
  margin-bottom: 10px;
}
}



















/* ===== SPECIAL OFFERS SECTION (ID-BASED) ===== */
#special-offers {
  padding: 80px 5%;
  background-color: #fff3e0;
  font-family: 'Poppins', sans-serif;
}

#offers-header {
  text-align: center;
  margin-bottom: 50px;
}

#offers-header h2 {
  font-size: 2.5rem;
  color: #3e2723;
  margin-bottom: 10px;
  font-family: var(--main-font);
}

#offers-header p {
  font-size: 1rem;
  color: #555;
}

#offers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

#offers-container .offer-card {
  flex: 0 0 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  cursor: pointer;
  background: #fff;
}

#offers-container .offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#offers-container .offer-card:hover img {
  transform: scale(1.1);
}

#offers-container .offer-info {
  padding: 15px;
  text-align: center;
}

#offers-container .offer-info h3 {
  font-size: 1.1rem;
  color: #3e2723;
  margin-bottom: 5px;
}

#offers-container .offer-info .price {
  font-weight: 600;
  margin-bottom: 10px;
}

#offers-container .offer-info .old-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-left: 5px;
}

#offers-container .offer-info .buy-btn {
  background-color: #fbc02d;
  border: none;
  padding: 10px 20px;
  color: #3e2723;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#offers-container .offer-info .buy-btn:hover {
  background-color: #3e2723;
  color: #fbc02d;
}

#offers-container .offer-info .delivery {
  font-size: 0.8rem;
  color: #3e2723;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  #offers-container {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
  }

  #offers-container .offer-card {
    width: 40%;
  }
   .modern-highlights, .modern-image-content{
        /* grid-template-columns: 1fr; */
        display: none;
    }
}



.pricecards {
    color: red;
    font-size: 16px;
    font-weight: 700;
}