:root{
  --primary:#f28b12;
  --primary-dark:#d87508;
  --dark:#141414;
  --dark-soft:#1e1e1e;
  --light:#ffffff;
  --muted:#6b6b6b;
  --section-bg:#f5f0e8;
  --card-bg:#f8f8f8;
  --border:#e8dfd1;
  --teal:#0db4a5;
  --shadow:0 16px 40px rgba(0,0,0,.08);
  --shadow-soft:0 12px 30px rgba(0,0,0,.06);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:110px;}
body{
  font-family:"Roboto", sans-serif;
  color:var(--dark);
  background:#fff;
  line-height:1.5;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{text-decoration:none}

.section-space{
  padding-top:100px;
  padding-bottom:100px;
}

.section-textured{
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.55) 0, rgba(255,255,255,0) 36%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.35) 0, rgba(255,255,255,0) 34%),
    var(--section-bg);
}

.section-heading{
  max-width:820px;
  margin:0 auto 52px;
}

.section-heading h2{
  font-size:clamp(2rem, 2vw + 1.3rem, 3rem);
  line-height:1.12;
  font-weight:300;
  margin-bottom:16px;
}

.section-heading h2 span{
  color:var(--primary);
  font-weight:700;
}

.section-heading p{
  font-size:1rem;
  color:var(--muted);
  max-width:760px;
  margin:0 auto;
}

.btn{
  border-radius:999px;
  padding:14px 28px;
  font-weight:700;
  font-size:.95rem;
  transition:.3s ease;
}

.btn-primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#111;
}

.btn-primary:hover,
.btn-primary:focus{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  color:#fff;
  transform:translateY(-2px);
}

.btn-secondary-custom{
  color:#111;
  min-width:210px;
  border:1px solid rgba(255,255,255,.15);
}

.btn-secondary-custom:hover{
  transform:translateY(-2px);
}

.btn-contact{
  padding:.7rem 1.25rem;
  font-size:.9rem;
}

.btn-pill{
  padding:11px 18px;
  font-size:.85rem;
}

#mainNavbar{
  padding:18px 0;
  transition:background-color .35s ease, padding .35s ease, box-shadow .35s ease;
  background:transparent;
}

#mainNavbar.scrolled{
  background:rgba(12,12,12,.95);
  padding:12px 0;
  box-shadow:0 8px 26px rgba(0,0,0,.14);
  backdrop-filter:blur(8px);
}

.brand-logo,
.footer-logo{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-1px;
  color:#fff;
}

.footer-logo{color:#111}
.brand-accent{
  color:var(--primary);
}

.navbar-nav .nav-link{
  color:#fff;
  font-size:.92rem;
  font-weight:400;
  margin-left:18px;
  position:relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{
  color:var(--primary);
}

.hero-section{
  position:relative;
  /*min-height:760px;*/
  display:flex;
  align-items:center;
  color:#fff;
  padding:180px 0 120px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}

.parallax-section{
  background-attachment:fixed;
  will-change:background-position;
}

.hero-title{
  font-size:clamp(2.4rem, 2vw + 1.7rem, 3rem);
  line-height:1.04;
  font-weight:300;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.hero-title span{
  color:var(--primary);
  font-weight:900;
}

.hero-text{
  font-size:1.08rem;
  line-height:1.75;
  color:rgba(255,255,255,.9);
  max-width:620px;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-symbol{
  position:relative;
  width:360px;
  height:360px;
}

.leaf{
  position:absolute;
  width:86px;
  height:122px;
  background:linear-gradient(180deg, #15d3b5 0%, #0b8b82 100%);
  border-radius:60% 0 60% 0;
  box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.leaf:after{
  content:"";
  position:absolute;
  inset:10% 48% 10% auto;
  width:2px;
  background:rgba(255,255,255,.35);
  transform:rotate(-12deg);
}

.leaf-1{top:8px; left:132px; transform:rotate(10deg)}
.leaf-2{top:54px; right:60px; transform:rotate(58deg)}
.leaf-3{top:56px; left:56px; transform:rotate(-44deg)}
.leaf-4{top:142px; left:138px; transform:rotate(180deg)}

.fruit-ring{
  position:absolute;
  width:200px;
  height:200px;
  left:80px;
  top:128px;
  border:28px solid rgba(242,139,18,.9);
  border-top-color:transparent;
  border-radius:50%;
  box-shadow:0 14px 30px rgba(0,0,0,.15);
}

.fruit-ring:before{
  content:"";
  position:absolute;
  inset:-28px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,200,122,.35) 0 10px, transparent 11px),
    radial-gradient(circle at 65% 60%, rgba(255,200,122,.25) 0 9px, transparent 10px),
    radial-gradient(circle at 50% 20%, rgba(255,200,122,.28) 0 8px, transparent 9px),
    radial-gradient(circle at 42% 75%, rgba(255,200,122,.3) 0 8px, transparent 9px);
  pointer-events:none;
}

.hero-animate{
  opacity:0;
  transform:translateY(28px);
  animation:fadeUp .9s ease forwards;
}

.hero-animate.delay-1{animation-delay:.18s}
.hero-animate.delay-2{animation-delay:.36s}
.hero-animate.delay-3{animation-delay:.54s}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.feature-card{
  background:#fff;
  border:1px solid #ece7df;
  border-radius:16px;
  box-shadow:var(--shadow-soft);
  padding:34px 28px;
  text-align:center;
}

.feature-icon{
  margin:0 auto 20px;
  display:grid;
  place-items:center;
}

.feature-card h3{
  font-size:1.2rem;
  line-height:1.35;
  margin-bottom:14px;
  color:var(--primary);
  font-weight:500;
}

.feature-card p{
  color:var(--muted);
  font-size:.95rem;
  margin:0;
}

.category-card{
  min-height:460px;
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  position:relative;
  box-shadow:var(--shadow);
}

.category-body{
  position:absolute;
  inset:auto 0 0 0;
  padding:28px;
  color:#fff;
}

.category-body h3{
  font-size:1.7rem;
  font-weight:700;
  margin-bottom:12px;
}

.category-body p{
  color:rgba(255,255,255,.9);
  margin-bottom:10px;
  font-size:.95rem;
}

.category-meta{
  font-size:.92rem;
  color:rgba(255,255,255,.85);
  margin-bottom:22px !important;
}

.process-row{
  align-items:flex-start;
}

.process-step{
  position:relative;
  padding:0 8px;
}

.process-icon{
  display:grid;
  place-items:center;
  color:var(--primary);
  font-size:2rem;
  margin:0 auto 18px;
}

.process-step h3{
  font-size:1rem;
  color:var(--primary);
  font-weight:500;
  margin-bottom:8px;
}

.process-step p{
  font-size:.88rem;
  color:var(--muted);
  margin:0;
}

.banner-image{
  min-height:420px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.map-wrap{
  position:relative;
  max-width:1120px;
  margin:0 auto;
}

.map-image{
  width:100%;
  border-radius:12px;
}

.map-pin{
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 5px rgba(13,180,165,.18);
}

.map-pin:after{
  content:"";
  position:absolute;
  left:50%;
  top:100%;
  transform:translateX(-50%);
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-top:12px solid var(--teal);
}

.map-pin span{
  position:absolute;
  left:50%;
  bottom:30px;
  transform:translateX(-50%);
  white-space:nowrap;
  background:#fff;
  color:#222;
  font-size:.78rem;
  padding:7px 12px;
  border-radius:999px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.pin-na{top:28%; left:10%}
.pin-eu{top:24%; left:49%}
.pin-naf{top:44%; left:46%}
.pin-gcc{top:38%; left:56%}
.pin-asia{top:35%; left:73%}
.pin-saf{top:70%; left:54%}
.pin-aus{top:79%; left:88%}

.cert-card{
  display:grid;
  place-items:center;
}

.cta-section{
  padding:110px 0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#fff;
  text-align:center;
}

.cta-box h2{
  font-size:clamp(2.2rem, 1.8vw + 1.2rem, 3.3rem);
  font-weight:300;
  margin-bottom:14px;
}

.cta-box h2 span{
  color:var(--primary);
  font-weight:700;
}

.cta-box p{
  max-width:720px;
  margin:0 auto 30px;
  color:rgba(255,255,255,.88);
  font-size:1.03rem;
}

.site-footer{
  background:#fff;
  padding:34px 0;
}

.social-links{
  display:flex;
  gap:14px;
}

.social-links a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(242,139,18,.18);
  color:var(--primary);
  font-size:1.2rem;
  transition:.3s ease;
}

.social-links a:hover{
  transform:translateY(-2px);
  background:var(--primary);
  color:#fff;
}

@media (max-width: 1199.98px){
/*  .hero-section{min-height:680px} */
	.hero-section{background-size:cover !important;} 
  .hero-symbol{width:300px;height:300px}
  .fruit-ring{width:175px;height:175px;left:64px;top:112px;border-width:24px}
  .leaf{width:72px;height:108px}
  .leaf-1{left:112px}
  .leaf-4{left:116px}
}

@media (max-width: 991.98px){
  #mainNavbar{
    background:rgba(12,12,12,.92);
    padding:12px 0;
  }

  .navbar-collapse{
    margin-top:14px;
    background:rgba(12,12,12,.95);
    border-radius:14px;
    padding:12px 14px;
  }

  .navbar-nav .nav-link{
    margin-left:0;
    padding:.8rem 0;
  }

  .hero-section{
    min-height:auto;
    padding:150px 0 90px;
    text-align:center;
    background-size: cover !important;
  }

  .hero-text{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-symbol{
    margin:0 auto;
  }

  .section-space{
    padding-top:80px;
    padding-bottom:80px;
  }
  
  	.process {
  	padding-bottom: 70px !important;
  	background: none !important; 
  }

  .banner-image{
    min-height:320px;
  }

  .parallax-section{
    background-attachment:scroll;
  }
}

@media (max-width: 767.98px){
  .brand-logo,
  .footer-logo{
    font-size:1.8rem;
  }

  .hero-title{
    letter-spacing:-.5px;
  }

  .hero-text{
    font-size:1rem;
  }

  .btn{
    width:100%;
    justify-content:center;
  }

  .hero-actions{
    flex-direction:column;
  }

  .feature-card,
  .category-body{
    padding:22px;
  }

  .category-card{
    min-height:390px;
  }

  .process-icon{
    width:82px;
    height:82px;
    font-size:1.7rem;
  }

  .section-heading{
    margin-bottom:40px;
  }

  .map-pin span{
    font-size:.72rem;
    padding:6px 10px;
  }

  .banner-image{
    min-height:240px;
  }
}

@media (max-width: 575.98px){
  .section-space{
    padding-top:70px;
    padding-bottom:70px;
  }
  


  .hero-section{
    padding-top:132px;
  }

  .hero-symbol{
    width:250px;
    height:250px;
  }

  .fruit-ring{
    width:150px;
    height:150px;
    left:48px;
    top:95px;
  }

  .leaf{
    width:60px;
    height:90px;
  }

  .leaf-1{left:95px}
  .leaf-2{right:48px}
  .leaf-3{left:46px}
  .leaf-4{left:98px; top:124px}

  .map-pin{
    width:14px;
    height:14px;
  }

  .map-pin:after{
    border-left-width:5px;
    border-right-width:5px;
    border-top-width:9px;
  }

  .map-pin span{
    bottom:22px;
  }
}

/* CONTACT SECTION */
.contact-section .contact-intro h2 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.contact-section .contact-intro h2 span {
  color: var(--primary);
  font-weight: 700;
}

.contact-highlight {
  color: #1aa39a;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-desc {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.contact-form {
  margin-top: 20px;
}

.contact-info {
  padding-left: 40px;
}

.info-block {
  margin-bottom: 35px;
}

.info-block h4 {
  color: #1aa39a;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-block p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-block:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5ddd2;
  margin-top: 20px;
}

/* Floating Fields */
.floating-field {
  position: relative;
}

.custom-input {
  min-height: 58px;
  border-radius: 14px;
  border: 1px solid #e6e1d8;
  background: #f3f3f3;
  padding: 22px 18px 10px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: none !important;
}

textarea.custom-input {
  min-height: 190px;
  resize: none;
  padding-top: 26px;
}

.form-select.custom-input {
  padding-top: 24px;
}

.floating-field label {
  position: absolute;
  left: 18px;
  top: 17px;
  font-size: 0.95rem;
  color: #9a9a9a;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  line-height: 1;
}

.floating-field .custom-input:focus,
.floating-field .custom-input:not(:placeholder-shown),
.floating-field .form-select.custom-input:valid {
  background: #fff;
  border-color: var(--primary);
}

.floating-field .custom-input:focus + label,
.floating-field .custom-input:not(:placeholder-shown) + label,
.floating-field .form-select.custom-input:valid + label {
  top: 9px;
  font-size: 0.75rem;
  color: var(--primary);
}

/* Phone Group */
.phone-group {
  display: flex;
  gap: 12px;
}

.phone-code-field {
  flex: 0 0 110px;
}

.phone-number-field {
  flex: 1 1 auto;
}

/* Validation */
.custom-input.is-invalid {
  border-color: #dc3545;
  background-color: #fff;
}

.custom-input.is-valid {
  border-color: #1aa39a;
  background-color: #fff;
}

.invalid-feedback {
  display: none;
  font-size: 0.82rem;
  margin-top: 8px;
}

.custom-input.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Buttons */
.btn-outline-whatsapp {
  min-width: 180px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  border: 1px solid #25d366;
  color: #25d366;
  background: transparent;
  transition: 0.3s ease;
}

.btn-outline-whatsapp:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-whatsapp i {
  margin-right: 8px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .contact-info {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .phone-group {
    flex-direction: column;
  }

  .phone-code-field {
    flex: 1 1 auto;
  }

  .btn-main,
  .btn-outline-whatsapp {
    width: 100%;
  }
}
/* FAQ SECTION */
.faq-section {
  position: relative;
}

.faq-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.custom-faq-accordion .accordion-item {
  background: #f5f5f5;
  border: 1px solid #e6dfd3;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.custom-faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.custom-faq-accordion .accordion-header {
  margin: 0;
}

.custom-faq-accordion .accordion-button {
  background: #f5f5f5;
  color: #1aa39a;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 500;
  padding: 22px 56px 22px 22px;
  box-shadow: none;
  border: 0;
  position: relative;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background: #f5f5f5;
  color: #1aa39a;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

.custom-faq-accordion .accordion-button::after {
  content: "+";
  background-image: none;
  width: auto;
  height: auto;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  transform: none;
  position: absolute;
  right: 22px;
  top: 50%;
  translate: 0 -50%;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

.custom-faq-accordion .accordion-body {
  padding: 0 22px 22px;
  background: #f5f5f5;
}

.custom-faq-accordion .accordion-body p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5d5d5d;
  margin-bottom: 12px;
}

.custom-faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.custom-faq-accordion .accordion-body a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.custom-faq-accordion .accordion-body a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .custom-faq-accordion .accordion-button {
    font-size: 1.2rem;
    padding: 20px 52px 20px 18px;
  }

  .custom-faq-accordion .accordion-body {
    padding: 0 18px 20px;
  }

  .custom-faq-accordion .accordion-body p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 575.98px) {
  .faq-wrapper {
    max-width: 100%;
  }

  .custom-faq-accordion .accordion-item {
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .custom-faq-accordion .accordion-button {
    font-size: 1.08rem;
    padding: 18px 48px 18px 16px;
  }

  .custom-faq-accordion .accordion-button::after {
    right: 16px;
    font-size: 1.35rem;
  }

  .custom-faq-accordion .accordion-body {
    padding: 0 16px 18px;
  }

  .custom-faq-accordion .accordion-body p {
    font-size: 0.93rem;
    line-height: 1.65;
  }
}

/* ABOUT SECTION */
.about-section {
  position: relative;
}

/* STORY */
.about-story {
  margin-bottom: 90px;
}

.about-copy h2 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 34px;
  color: var(--dark);
}

.about-copy h2 span {
  color: var(--primary);
  font-weight: 700;
}

.about-copy p {
  font-size: 1.45rem;
  line-height: 1.85;
  color: #5e5e5e;
  margin-bottom: 20px;
  max-width: 900px;
}

.about-copy p strong {
  color: var(--primary);
  font-weight: 700;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-farmer-image {
  max-width: 100%;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* NUMBERS */
.about-numbers .section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.about-numbers .section-heading h2 {
  font-size: 3.1rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.about-numbers .section-heading h2 span {
  color: var(--primary);
  font-weight: 700;
}

.about-numbers .section-heading p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--muted);
}

.number-card {
  background: #f5f5f5;
  border: 1px solid #e6dfd3;
  border-radius: 12px;
  padding: 42px 20px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.number-value {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 700;
  color: #1aa39a;
  margin-bottom: 18px;
}

.number-card p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #222;
  margin: 0;
  font-weight: 400;
}

.number-card p span {
  color: var(--primary);
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .about-copy h2,
  .about-numbers .section-heading h2 {
    font-size: 2.6rem;
  }

  .about-copy p {
    font-size: 1.2rem;
  }

  .number-value {
    font-size: 3.6rem;
  }

  .number-card p {
    font-size: 1.05rem;
  }
}

@media (max-width: 991.98px) {
  .about-story {
    margin-bottom: 70px;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy p {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.9;
  }

  .about-copy h2 {
    margin-bottom: 24px;
  }

  .about-image-wrap {
    justify-content: center;
  }

  .about-farmer-image {
    max-width: 420px;
  }

  .about-numbers .section-heading h2 {
    font-size: 2.4rem;
  }

  .about-numbers .section-heading p {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .about-copy h2,
  .about-numbers .section-heading h2 {
    font-size: 2rem;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .number-card {
    padding: 32px 16px 24px;
  }

  .number-value {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }

  .number-card p {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}

@media (max-width: 575.98px) {
  .about-story {
    margin-bottom: 56px;
  }

  .about-copy h2,
  .about-numbers .section-heading h2 {
    font-size: 1.8rem;
  }

  .about-farmer-image {
    max-width: 320px;
  }
}

/* PRODUCTS */
.products-section {
  position: relative;
}

/* CATEGORY BANNER */
.category-banner {
  position: relative;
  background-size: contain;
  background-position: center;
  padding: 70px 20px;
  margin: 70px 0 40px;
}

.category-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.category-banner .overlay {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.category-banner h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.category-banner h3 span {
  color: var(--primary);
  font-weight: 700;
}

.category-banner p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

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

/* OVERLAY */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(1,1,1,0.8);
}

/* HEADING */
.section-heading h2 {
  font-size: 3rem;
  font-weight: 300;
}

.section-heading h2 span {
  color: var(--primary);
  font-weight: 700;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .category-banner h3 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }
}

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

  .category-banner {
    padding: 50px 15px;
  }

  .category-banner h3 {
    font-size: 1.6rem;
  }
}

/* DROPDOWN MENU */
.custom-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: none !important;
}

.custom-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px 0;
  margin: 0;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.custom-dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 18px;
  font-size: 0.9rem;
  background: transparent;
  transition: 0.2s ease;
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
  background: rgba(242,139,18,0.1);
  color: var(--primary);
}

/* Desktop hover */
@media (min-width: 992px) {
  .custom-dropdown:hover > .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile / tablet navbar dropdown */
@media (max-width: 991.98px) {
  .custom-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .custom-dropdown-menu.show {
    display: block;
  }

  .custom-dropdown-menu .dropdown-item {
    padding: 10px 14px;
  }
}

.custom-dropdown .bi-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

/* Rotate on hover (desktop) */
@media (min-width: 992px) {
  .custom-dropdown:hover .bi-chevron-down {
    transform: rotate(180deg);
  }
}

/* Rotate when open (mobile) */
.custom-dropdown-menu.show ~ .nav-link .bi-chevron-down,
.custom-dropdown.open .bi-chevron-down {
  transform: rotate(180deg);
}