/* =============================================
   GLOBAL VARIABLES & BASE
============================================= */
:root {
  /* --bg-light: #f7f3eb; */
  /* --text-dark: #2b2926;
  --wood-brown: #B24A03;
  --sand: #c3a887;
  --forest: #3b5b4c;
  --orange: #FE8004; */

  --text-dark: #2b2926;
  --wood-brown: #1b263b;
  --sand: #415a77;
  --forest: #0d1b2a;
  --orange: #fe8004;

  --heading-1: #fa8112; 
  --heading-2: #222222;

  /* --bg-light: #d3dde8; */

  --bg-light: #edf2f8;

  --bg-dark: #e0e1dd;

  --text-white: #ffffff;
}

:root {
  --navy-dark: #0d1b2a;
  --navy-deep: #1b263b;
  --slate-blue: #415a77;
  --steel-blue: #778da9;
  --light-gray: #e0e1dd;
}

img {
  max-width: 100%;
  /* height: auto; */
}

.container,
.row {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  max-width: 100%;
  overflow-x: hidden;
}

.text-deco {
  text-decoration: none;
}

.btn-forest {
  background: var(--forest);
  color: #fff;
}

.btn-forest-outline {
  border: 1px solid var(--forest);
  color: var(--forest);
}

.btn-forest:hover {
  background-color: var(--wood-brown);
  color: #fff;
}

.text-wood-brown {
  color: var(--wood-brown);
}

.text-forest {
  color: var(--forest);
}

.text-sand {
  color: var(--sand);
}

/* ===================================================
   NAVBAR
====================================================== */
.modern-header {
  /* background: var(--sand); */
  /* background: linear-gradient(135deg, #8b5e3c, #5b3a29 , #2c1c14); */
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 89, 56, 0.15);
  z-index: 9999;
}

.navbar,
.navbar .container,
.navbar-collapse {
  overflow: visible !important;
}

.navbar-brand {
  font-size: 1.4rem;
  color: var(--forest);
  letter-spacing: 1px;
}

.modern-link {
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 5px;
  transition: 0.3s ease;
}

.modern-link:hover {
  color: var(--forest);
}

.modern-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--forest);
  left: 0;
  bottom: -2px;
  transition: width 0.3s ease;
}

.modern-link:hover::after {
  width: 100%;
}

.icon-btn {
  width: 42px;
  height: 42px;
  text-decoration: none;
  border-radius: 50%;
  /* border: 2px solid var(--forest);
  color: var(--forest); */
  border: 2px solid var(--forest);
  color: var(--forest);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15rem;
  transition: 0.3s ease;
}

.icon-btn:hover {
  background: var(--forest);
  color: #fff;
}

.navbar-toggler {
  color: var(--text-dark);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* CATEGORY DROPDOWN */
.category-dropdown {
  position: relative;
}

.category-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 200px;
  border-radius: 6px;
  display: none;
  z-index: 999;
}

.category-menu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.category-menu li a:hover {
  background: #f5f5f5;
}

/* SHOW ON HOVER */
.category-dropdown:hover .category-menu {
  display: block;
}

.dropdown-icon {
  font-size: 12px;
}

/* .modern-dropdown {
  background: var(--sand);
  border-radius: 12px;
  padding: 10px 0;
  border: 1px solid rgba(122, 89, 56, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-dropdown .dropdown-item {
  color: var(--forest);
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.modern-dropdown .dropdown-item:hover {
  background: var(--forest);
  color: #fff;
}

.dropdown-toggle:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .modern-dropdown {
    box-shadow: none;
    border-radius: 0;
  }
} */

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  /* height: calc(100vh - 100px); */
}

/* .hero-img {
  max-width: 80%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
} */

/* =============================================
   SHOP BY CATEGORY
============================================= */
.category-card {
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.category-img {
  max-width: 80%;
  height: auto;
  max-height: 400px;
  margin: auto;
  object-fit: fill;
}

.category-card .card-body {
  padding: 1rem;
}

.category-mini-card {
  position: relative;
  height: 100px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--sand);
  cursor: pointer;
  transition: 0.3s ease;
}

.category-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: 0.3s ease;
}

.category-mini-card:hover img {
  filter: brightness(55%);
  transform: scale(1.05);
}

.category-mini-card h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* =============================================
   PRODUCTS LISTING PAGE
============================================= */

.category-btn {
  background-color: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 5px 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--wood-brown);
}

.product-box {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  background-color: #fff;
  /* outline: 1px solid var(--forest); */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

/* .product-box img {
  height: 170px;       
  object-fit: cover;
  width: 100%;
} */

.product-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #fff;
  padding: 5px;
}

.product-info {
  padding: 12px !important;
}

.product-info h3 {
  font-size: 0.95rem;
  color: var(--wood-brown);
  margin-bottom: 6px;
}

.price {
  font-size: 0.9rem;
}

.btn-add {
  background-color: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: 0.3s ease;
  padding: 6px 8px;
  font-size: 0.85rem;
}

.btn-add:hover {
  background-color: var(--wood-brown);
  color: #fff;
}

.btn-add-forest {
  background-color: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: 0.3s ease;
  padding: 6px 8px;
  font-size: 0.85rem;
}

.btn-add-forest:hover {
  background-color: var(--wood-brown);
  color: #fff;
}

/* =============================================
   PRODUCT DETAILS PAGE
============================================= */
.product-bg {
  background: var(--bg-light);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--wood-brown);
  font-weight: 500;
}

.breadcrumb span {
  color: var(--forest);
}

.product-details-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.product-title-details {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wood-brown);
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--forest);
  margin-bottom: 10px;
}

.product-category {
  display: inline-block;
  background-color: var(--forest);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.product-description {
  font-size: 15px;
  line-height: 1.6;
}

.btn-add-to-cart {
  background-color: var(--sand);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  transition: 0.3s;
}

.btn-add-to-cart:hover {
  background-color: var(--forest);
}

.quantity-box {
  width: 80px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.gallery-thumb {
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
}

.gallery-thumb:hover {
  transform: scale(1.1);
  border: 2px solid #5a3e2b;
}

.main-image {
  transition: 0.3s;
}

@media (max-width: 768px) {
  .product-title-details {
    font-size: 1.4rem;
  }

  .product-image {
    height: 250px;
  }
}

/* =============================================
   cart 
============================================= */
.cart-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--sand);
  color: var(--text-dark);
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--wood-brown);
  color: #fff;
}

.qty-display {
  min-width: 35px;
  text-align: center;
  font-weight: 600;
  color: var(--wood-brown);
}

.btn-forest {
  background: var(--forest);
  color: #fff;
}

.btn-forest:hover {
  background: #2f4a3d;
}

/* =============================================
   CONTACT PAGE
============================================= */

.text-wood-brown {
  color: var(--wood-brown);
}

.text-forest {
  color: var(--forest);
}

.bg-light-custom {
  background-color: var(--bg-light);
}

.btn-forest {
  background-color: var(--forest);
  color: white;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-forest:hover {
  background-color: var(--wood-brown);
}

.card {
  border-radius: 18px;
}

#order-items h6 {
  margin-bottom: 4px;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
}

/* =============================================
   strength section
============================================= */

.strength-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #e0e1dd, #edf2f8);
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--forest);
  margin-bottom: 50px;
  font-weight: 700;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.strength-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
}

.strength-card .icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}

.strength-card h4 {
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
}

.strength-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-hero {
  background: var(--bg-light);
}

.contact-info {
  border-color: var(--sand);
}

.contact-info h4 {
  color: var(--forest);
}

.contact-form h4 {
  color: var(--forest);
}

.contact-form input,
.contact-form textarea {
  border-color: var(--sand);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 5px rgba(122, 89, 56, 0.3);
  border-color: var(--wood-brown);
}

iframe {
  filter: grayscale(20%) contrast(95%);
  border: none;
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-hero {
  background: var(--bg-light);
}

.about-img {
  transition: 0.3s;
}

.about-img:hover {
  transform: scale(1.02);
}

.why-choose-us {
  background-color: var(--bg-light);
}

.card-bg {
  background-color: var(--bg-light);
}
.custom-card{
  background: var(--bg-light);
}

.card-hover {
  transition: 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(59, 91, 76, 0.15);
}

/* =============================================
   mission and vision PAGE
============================================= */

.mission-vision {
  background: var(--bg-light);
}

/* Card Style */
.mv-card {
  /* background: var(--bg-dark); */
  background: linear-gradient(135deg , var(--text-white),var(--steel-blue));
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.mv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--text-dark);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mv-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .mv-card {
    padding: 30px 25px;
  }
}

/* =============================================
   counting section 
============================================= */

.stats-section {
  display: flex;
  justify-content: space-around;
  padding: 80px 20px;
  text-align: center;
  background: var(--forest);
  box-shadow: 0 20px 20px rgba(59, 91, 76, 0.5);
}

.stat {
  flex: 1;
  padding: 0 30px;
  position: relative;
}

.stat h2 {
  font-size: 48px;
  /* color: var(--orange); */
  color: var(--text-white);
  margin-bottom: 8px;
}

.stat .title {
  font-size: 18px;
  color: var(--bg-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.stat .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

/* 🔹 Vertical divider line */
.stat.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    padding: 50px 15px;
    gap: 30px;
  }

  .stat {
    padding: 0;
  }

  .stat h2 {
    font-size: 36px;
  }

  .stat .title {
    font-size: 16px;
  }

  .stat .desc {
    font-size: 13px;
  }

  /* ❌ Hide divider on mobile */
  .stat.divider::before {
    display: none;
  }
}

/* =============================================
   FAQ section
============================================= */

.faq-modern-alt {
  padding: 60px 0;
  background: linear-gradient(135deg, #415a77, #0d1b2a);
}

/* LEFT CONTENT GLASS */
.faq-glass {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.faq-glass h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-glass p {
  color: var(--text-white);
  margin-bottom: 15px;
}

.faq-badge {
  display: inline-block;
  background: var(--text-white);
  color: var(--forest);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px 25px;
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--forest), var(--sand));
  color: var(--text-white);
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text-white);
}

/* QUESTION ROW */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-modern-alt {
    padding: 60px 15px;
  }

  .faq-glass {
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-glass h2 {
    font-size: 28px;
  }

  .faq-item {
    flex-direction: column;
  }

  .faq-number {
    margin-bottom: 10px;
  }
}

/* =============================================
   AUTH (LOGIN / SIGNUP)
============================================= */
.auth-body {
  background-color: var(--bg-light);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  transition: 0.3s ease;
}

.auth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 91, 76, 0.15);
}

.btn-sand {
  background-color: var(--sand);
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-sand:hover {
  background-color: var(--forest);
}

.form-control {
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 0.2rem rgba(59, 91, 76, 0.25);
}

/* =============================================
   blog section 
============================================= */

.section-title {
  color: var(--wood-brown);
  font-weight: 700;
}

.blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(3, 3, 3, 0.35);
}

.blog-img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.blog-title {
  color: var(--text-dark);
  font-size: 18px;
  /* font-weight: 600; */
}

.blog-desc {
  font-size: 15px;
}

/* =============================================
   blog detail page  
============================================= */

/* body {
  background: #ffffff;
  color: #2b2926;
}

.blog-container {
  max-width: 1000px;
  margin: auto;
  padding-top: 60px;
}

.blog-date {
  color: #7a7a7a;
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.blog-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
  max-height: 450px;
  object-fit: cover;
}

.blog-meta-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.blog-full-content {
  font-size: 18px;
  line-height: 1.8;
  color: #2b2926;
}

.blog-full-content h2,
.blog-full-content h3 {
  margin-top: 35px;
  font-weight: 700;
} */

/* ============================================= 
   FOOTER
============================================= */

.modern-footer {
  
  padding: 60px 0 0 40px;

  
}

.footer-container {
  color: var(--text-dark);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul a {
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--forest);
  padding-left: 5px;
}

.footer-title {
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-text {
  color: var(--text-dark);
  margin-top: 10px;
  line-height: 1.6;
}

.newsletter-box {
  display: flex;
  margin-top: 10px;
  background: var(--text-white);
  border: 2px solid var(--forest);
  border-radius: 35px;
  padding: 6px;
}

.newsletter-box input {
  flex: 1;

  outline: 1px solid var(--heading-2);
  border: none;
  gap: 20px;

  padding: 10px 15px;
  color: var(--text-dark);
  border-radius: 25px;
}

.newsletter-box button {
  background: var(--forest);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: 0.3s;
}

/* .newsletter-box button:hover {
  background: var(--text-white);
} */

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid var(--text-white);
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--text-white);
  border-color: var(--forest);
  color: var(--forest);
}

.footer-bottom {
  /* margin-top: 40px; */
  font-size: 0.9rem;
  color: var(--text-dark);
  text-align: center;
  padding-top: 15px;
  /* border-top: 2px solid var(--orange); */
}

.footer-bottom a {
  text-decoration: none;
  font-weight: 500;
  /* color: var(--forest); */
}

.footer-contact-info i {
  color: var(--forest);
}
