/* ===============================
   HANDLOOM THEME VARIABLES
================================ */
:root {
  --ivory: #FAF7F2;
  --terracotta: #C65A3A;
  --charcoal: #2E2E2E;
  --gold: #CFAE70;

  --background-color: var(--ivory);
  --default-color: var(--charcoal);
  --accent-color: var(--terracotta);
  --contrast-color: #ffffff;

  --nav-color: var(--charcoal);
  --nav-hover-color: var(--terracotta);
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: var(--charcoal);
  --nav-dropdown-hover-color: var(--terracotta);
  --nav-mobile-background-color: var(--ivory);

  --nav-font: "Poppins", serif;
}

/* ===============================
   HEADER
================================ */
/* ===============================
HANDLOOM THEME VARIABLES
================================ */
:root {
  --ivory: #FAF7F2;
  --terracotta: #C65A3A;
  --charcoal: #2E2E2E;
  --gold: #CFAE70;
}

/* ===============================
TOP BAR
================================ */
.top-bar {
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 13px;
  padding: 6px 0;
}

.top-bar i {
  color: var(--gold);
}

/* ===============================
HEADER
================================ */
.header {
  background: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s ease;
  z-index: 997;
}

.scrolled .header {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ===============================
LOGO
================================ */
.logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #222;
}

.logo span {
  color: #f4a261;
}
.logo img {
  height: 60px;
  width: auto;
}

/* ===============================
SEARCH BAR
================================ */
.search-box {
  max-width: 520px;
  width: 100%;
}

.search-box input {
  border: 1px solid var(--gold);
  padding: 10px 14px;
  border-radius: 999px 0 0 999px;
  background: white;
}

.search-btn {
  background: var(--terracotta);
  color: white;
  border-radius: 0 999px 999px 0;
  padding: 10px 18px;
}

/* ===============================
HEADER ICONS
================================ */
.header-icon {
  font-size: 20px;
  color: var(--charcoal);
  transition: 0.2s ease;
}

.header-icon:hover {
  color: var(--terracotta);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #C65A3A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.cart-badge.bump {
  animation: bump .3s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}
.wishlist-icon {
  position: relative;
}

.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.wishlist-badge.bump {
  animation: bump .3s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}



/* ===============================
NAV MENU — DESKTOP
================================ */
@media (min-width: 1200px) {

  .navmenu ul {
    display: flex;
    list-style: none;
    gap: 18px;
    padding: 0;
    margin: 0;
    align-items: center;
  }

  .navmenu a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: 0.25s ease;
  }

  .navmenu a:hover {
    color: var(--terracotta);
    background: rgba(198,90,58,0.08);
  }

  /* Dropdown */
  .navmenu .dropdown ul {
    background: white;
    border-radius: 14px;
    padding: 12px 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 120%;
    left: 0;
    min-width: 230px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: 0.25s ease;
  }

  .navmenu .dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 18px;
    display: block;
  }
}
.navmenu .dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 10px 0;
  min-width: 220px;
  flex-direction: column !important;
}



.navmenu .dropdown-menu li {
  width: 100%;
}

.navmenu .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  white-space: nowrap;
}
.navmenu ul {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.navmenu .dropdown-menu {
  flex-direction: column !important;
}
.navmenu .dropdown-menu .dropdown-item:hover {
  background: rgba(198, 90, 58, 0.08);
  color: var(--terracotta);
}
/* Dropdown base */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 12px 0;
  min-width: 230px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  z-index: 1000;
}

/* Desktop hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile click open */
.dropdown.active .dropdown-menu {
  display: block;
  position: static;
  box-shadow: none;
  padding-left: 10px;
}

/* ===============================
MOBILE NAV — PREMIUM
================================ */
.navmenu {
  background: var(--ivory);
  border-top: 1px solid #eee;
}

/* Mobile hidden */
@media (max-width: 991px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  .navmenu.active {
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    gap: 18px !important;
     align-items: flex-start;
  }
}


 .dropdown-toggle-btn {
  background: none;
  border: none;
  font-weight: 500;
  color: var(--charcoal);
}

.dropdown-menu {
  display: none;
  margin-top: 8px;
}

.dropdown.active .dropdown-menu {
  display: block;
}
.navmenu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--charcoal);
}

.navmenu a:hover {
  color: var(--terracotta);
}

@media (max-width: 991px) {
  .navmenu a,
  .dropdown-toggle-btn {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .navmenu a:hover {
    background: rgba(198, 90, 58, 0.08);
  }
  /* Mobile Nav Default Hidden */
.navmenu {
  display: none;
}

/* Mobile Nav Active */
.navmenu.navmenu-active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 5px 0 30px rgba(0,0,0,0.15);
  animation: slideIn .3s ease;
}

/* Slide animation */
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Mobile Toggle Icon Style */
.mobile-nav-toggle {
  cursor: pointer;
}

}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.handloom-footer {
  background: linear-gradient(180deg, #FAF7F2, #ffffff);
  border-top: 1px solid rgba(198,90,58,0.2);
  font-size: 14px;
}

/* LOGO */
.footer-logo {
  font-size: 26px;
  font-weight: 900;
  color: #2E2E2E;
  text-decoration: none;
}

.footer-logo span {
  color: #C65A3A;
}

/* TEXT */
.footer-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* TITLES */
.footer-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #2E2E2E;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C65A3A;
  padding-left: 4px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198,90,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C65A3A;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #C65A3A;
  color: white;
}

/* CONTACT */
.footer-contact p {
  display: flex;
  gap: 10px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #C65A3A;
  margin-top: 3px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 18px 0;
  font-size: 13px;
  color: #666;
}

.footer-bottom strong {
  color: #C65A3A;
}

.footer-bottom a {
  color: #C65A3A;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media(max-width: 768px) {

  .footer-logo {
    font-size: 22px;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-handloom-bg {
  position: relative;
  background: url('../../assets/images/Frame 115 (1).png') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Stronger Overlay so button & text visible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,247,242,0.9), rgba(250,247,242,0.3));
}

/* Content */
.hero-content {
  position: relative;
  max-width: 680px;
  padding: 90px 0;
}

/* Badge */
.hero-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #C65A3A;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Heading */
.hero-heading {
  font-size: 58px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.1;
}

.hero-heading span {
  color: #C65A3A;
}

/* Paragraph — Bigger, Bolder */
.hero-text {
  font-size: 19px;
  font-weight: 600; /* more bold */
  color: #444;
  margin-top: 18px;
  line-height: 1.85;
  max-width: 560px;
}

/* Button — Theme Based & Visible */
.hero-primary-btn {
  margin-top: 30px;
  padding: 16px 46px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 14px 35px rgba(198,90,58,0.45);
  transition: 0.3s ease;
}

.hero-primary-btn:hover {
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
  transform: translateY(-2px) scale(1.04);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-handloom-bg {
    min-height: 440px;
  }

  .hero-content {
    padding: 70px 0;
    text-align: center;
  }

  .hero-heading {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
    font-weight: 600;
  }
}

/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/about1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* SECTION TITLE */
.premium-categories h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  color: #2E2E2E;
}

/* CATEGORY CARD WRAPPER */
.category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* IMAGE CONTAINER */
.category-image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 240px; /* Desktop height */
  background: #f4f4f4;
  transition: 0.4s ease;
}

/* IMAGE */
.category-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* HOVER OVERLAY */
.category-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  transition: 0.4s ease;
}

/* SHOP NOW BUTTON */
.shop-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid white;
  color: white;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 13px;
  background: transparent;
  transition: 0.3s ease;
}

/* CATEGORY NAME */
.category-name {
  text-align: center;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #2E2E2E;
  letter-spacing: 0.3px;
}

/* DESKTOP HOVER EFFECT */
.category-card:hover img {
  transform: scale(1.15);
}

.category-card:hover .category-hover {
  opacity: 1;
}

.category-card:hover .shop-btn {
  background: #C65A3A;
  border-color: #C65A3A;
}

/* -------------------- */
/* MOBILE OPTIMIZATION */
/* -------------------- */

@media (max-width: 768px) {

  /* Reduce image height */
  .category-image-box {
    height: 165px;
    border-radius: 14px;
  }

  /* Make SHOP NOW smaller */
  .shop-btn {
    padding: 6px 16px;
    font-size: 11px;
    border-width: 1.5px;
    letter-spacing: 0.6px;
  }

  /* Smaller category name */
  .category-name {
    font-size: 13px;
    margin-top: 8px;
  }

  /* Reduce overlay padding */
  .category-hover {
    padding-bottom: 14px;
  }

  /* Reduce heading */
  .premium-categories h2 {
    font-size: 22px;
  }
}

/* TOUCH DEVICES — Always allow overlay tap */
@media (hover: none) {
  .category-hover {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.1)
    );
  }

  .shop-btn {
    background: #C65A3A;
    border-color: #C65A3A;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: linear-gradient(135deg, #FAF7F2, #ffffff);
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: #C65A3A;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 46px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.15;
}

.about-title span {
  color: #C65A3A;
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(198,90,58,0.35);
  transition: 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
:root {
  --terracotta: #C65A3A;
  --charcoal: #2E2E2E;
  --gold: #CFAE70;
}

/* ================= MOBILE FILTER BUTTON ================= */

.mobile-filter-btn {
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--terracotta);
  color: white;
  border: none;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ================= FILTER SIDEBAR BASE ================= */

.filter-sidebar {
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  margin-bottom: 18px;
}

/* ================= FILTER HEADER (MOBILE ONLY) ================= */

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.filter-header button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* ================= FILTER BUTTONS ================= */

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.filter-btn {
  border: 1px solid #ddd;
  background: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.25s ease;
  font-size: 14px;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.filter-btn.active {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

/* ================= MOBILE SLIDE SIDEBAR ================= */

@media(max-width: 992px) {

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.3s ease;
    padding-top: 18px;
    border-radius: 0;
  }

  .filter-sidebar.active {
    left: 0;
  }

  .category-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-btn {
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* ================= PRODUCT GRID ================= */

.products-grid {
  margin-top: 10px;
}

/* ================= PRODUCT CARD (UNCHANGED) ================= */

.premium-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-6px);
}

/* ================= IMAGE ================= */

.premium-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: 0.35s ease;
}

.premium-card:hover img {
  transform: scale(1.05);
}

/* ================= CONTENT ================= */

.premium-content {
  padding: 14px;
  text-align: center;
}

.premium-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

/* ================= PRICE ================= */

.premium-price {
  font-weight: 700;
  margin-bottom: 10px;
  color: #C65A3A;
}

/* ================= CART BUTTON ================= */

.premium-cart-btn {
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 14px;
}

.premium-cart-btn:hover {
  background: #C65A3A;
  transform: scale(1.04);
}

/* ================= MOBILE PRODUCT TWEAKS ================= */

@media(max-width: 576px) {

  .premium-image img {
    height: 165px;
  }

  .premium-content h3 {
    font-size: 14px;
  }

  .premium-price {
    font-size: 13px;
  }

  .premium-cart-btn {
    font-size: 13px;
    padding: 9px;
  }

  .mobile-filter-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/contact.png') center/cover no-repeat;
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-handloom {
  background: linear-gradient(180deg, #FAF7F2, #ffffff);
}

/* Heading */
.why-badge {
  display: inline-block;
  color: #C65A3A;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.why-heading {
  font-size: 36px;
  font-weight: 900;
  color: #2E2E2E;
}

.why-intro {
  max-width: 650px;
  margin: 12px auto 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Premium Glass Cards */
.why-glass-card {
  height: 100%;
  padding: 26px 22px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  border: 1px solid rgba(198,90,58,0.15);
}

.why-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.12);
  border-color: #CFAE70;
}

/* Icon Circle */
.why-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #C65A3A;
  background: linear-gradient(135deg, rgba(198,90,58,0.15), rgba(207,174,112,0.15));
}

/* Title */
.why-glass-card h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2E2E2E;
}

/* Text */
.why-glass-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Mobile */
@media(max-width: 768px) {
  .why-heading {
    font-size: 28px;
  }

  .why-glass-card {
    padding: 22px 18px;
  }

  .why-icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 50px 0;
  background: rgba(250,247,242,0.9), rgba(250,247,242,0.6);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-handloom {
  background: linear-gradient(180deg, #FBF6F0, #ffffff);
}

/* HEADER */
.contact-mini-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #C65A3A;
  margin-bottom: 6px;
}

.contact-main-title {
  font-size: 40px;
  font-weight: 900;
  color: #2B2B2B;
}

.contact-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
  color: #444;
}

.contact-description {
  max-width: 700px;
  margin: 12px auto 0;
  color: #777;
  font-size: 16px;
}

/* PANELS */
.contact-info-panel,
.contact-form-panel {
  background: white;
  padding: 38px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  height: 100%;
}

/* PANEL TITLES */
.panel-title {
  font-weight: 900;
  margin-bottom: 20px;
}

/* INFO ITEMS */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-info-item i {
  font-size: 24px;
  color: #C65A3A;
}

.contact-info-item h6 {
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* NOTE */
.contact-highlight {
  margin-top: 18px;
  padding: 12px 14px;
  background: #FFF4EC;
  border-left: 4px solid #C65A3A;
  font-size: 14px;
  border-radius: 8px;
}

/* FORM */
.contact-input {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.contact-input:focus {
  border-color: #C65A3A;
  box-shadow: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #C65A3A, #9F4229);
  color: white;
  font-weight: 800;
  padding: 12px 34px;
  border-radius: 40px;
  border: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9F4229, #7E331F);
}

/* MAP */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* MOBILE */
@media(max-width: 768px) {

  .contact-main-title {
    font-size: 28px;
  }

  .contact-sub-title {
    font-size: 18px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 22px;
  }

  .map-box iframe {
    height: 260px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}