/* ============================================================
   CAMEL MARKETING PVT LTD — Main CSS
   Color Palette:
     Gold (primary accent)  : #E8A020
     Dark Gold (hover)      : #C4860A
     Deep Brown (bg/text)   : #3D2B1F
     Mid Brown (gradient)   : #5C3D2A
     Darkest Brown (bottom) : #2A1E15
     Cream (surface)        : #FFF8EC
     Light Cream (bg)       : #FFF8EC
     Warm White             : #FFFDF9
============================================================ */

/* ============================================================
   1. GLOBAL / BODY
============================================================ */
body {
  background-color: #FFFDF9;
  color: #3D2B1F;
}

/* ============================================================
 2. OWL CAROUSEL — Navigation Arrows
============================================================ */
.owl-carousel .owl-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-35%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-carousel .owl-nav button {
  background: #3D2B1F !important;
  color: #E8A020 !important;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav button:hover {
  background: #E8A020 !important;
  color: #3D2B1F !important;
  transform: scale(1.1);
}

.owl-carousel .owl-nav button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 20px;
}

.owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 20px;
}

/* Owl Dots */
.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(61, 43, 31, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
  background: #E8A020;
}

/* ============================================================
 3. BRAND CONTAINER (Hero Carousel)
============================================================ */
.brand-container {
  position: relative;
}

.brand-im {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
 4. SECTION HEADING with Decorative Lines
============================================================ */
.section-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 20px;
}

.section-heading-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E8A020 50%, transparent 100%);
  max-width: 300px;
}

.section-heading {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3D2B1F;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 1px;
}

/* ============================================================
 5. CATEGORY CARDS (Popular Categories Grid)
============================================================ */
.category-card-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-container:hover {
  transform: translateY(-8px);
}

.category-card {
  width: 100%;
  height: 280px;
  background: #ffffff;
  border: 2px solid rgba(232, 160, 32, 0.2);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.08);
}

.category-card:hover {
  border-color: #E8A020;
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  background-color: #FFF8EC;
  border-radius: 8px;
  padding: 10px;
  transition: transform 0.3s ease;
}

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

.category-card h3 {
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #3D2B1F;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 10px;
  line-height: 1.4;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: #E8A020;
}

/* Load More Button */
.load-more-btn {
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3D2A 100%);
  color: #E8A020;
  border: 2px solid #E8A020;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.25);
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #E8A020 0%, #C4860A 100%);
  color: #3D2B1F;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232, 160, 32, 0.4);
}

/* ============================================================
 6. CUSTOMIZE KITS SECTION
============================================================ */
.customize-kits-section {
  padding: 60px 0;
  background: #FFF8EC;
}

.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.filter-tab-btn {
  padding: 12px 28px;
  background: #ffffff;
  color: #5C3D2A;
  border: 1px solid rgba(232, 160, 32, 0.4);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.filter-tab-btn:hover {
  background: #FFF8EC;
  border-color: #E8A020;
  color: #3D2B1F;
}

.filter-tab-btn.active {
  background: #3D2B1F;
  color: #E8A020;
  border-color: #E8A020;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.25);
}

.customize-products-grid {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.customize-card-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.customize-card-item.hide {
  display: none;
}

/* Customize Product Card */
.customize-product-card {
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 160, 32, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(61, 43, 31, 0.06);
}

.customize-product-card:hover {
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.18);
  transform: translateY(-4px);
  border-color: #E8A020;
}

.customize-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.customize-card-wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
}

.customize-image-box {
  width: 45%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #FFF8EC;
  border-radius: 12px;
  margin: 12px;
  transition: all 0.3s ease;
}

.customize-product-img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.customize-content-box {
  width: 55%;
  padding: 20px 20px 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customize-product-name {
  font-size: 16px;
  font-weight: 700;
  color: #3D2B1F;
  line-height: 1.4;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.customize-product-desc {
  font-size: 13px;
  color: #7a6355;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
 7. BEST SELLER PRODUCTS
============================================================ */
.card {
  --bs-card-border-color: rgba(232, 160, 32, 0.18);
}

/* Product Card */
.product-card-hover {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 160, 32, 0.2);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
  border-color: #E8A020;
}

.product-image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #FFF8EC;
  position: relative;
}

.p_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.primary-image {
  opacity: 1;
  z-index: 1;
}

.secondary-image {
  opacity: 0;
  z-index: 2;
}

.product-card-hover:hover .primary-image {
  opacity: 0;
}

.product-card-hover:hover .secondary-image {
  opacity: 1;
}

.product-info {
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: #3D2B1F;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.current-price {
  font-size: 18px;
  color: #C4860A;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.price-details {
  font-size: 11px;
  line-height: 1.3;
}

/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3D2A 100%);
  color: #E8A020;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 160, 32, 0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #E8A020;
}

.btn-view-all:hover {
  background: linear-gradient(135deg, #E8A020 0%, #C4860A 100%);
  color: #3D2B1F;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.4);
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* ============================================================
 8. BLOG SECTION
============================================================ */
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(232, 160, 32, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.18);
  border-color: #E8A020;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(232, 160, 32, 0.3) !important;
}

.blog-title {
  font-size: 18px;
  color: #3D2B1F;
  margin-bottom: 12px;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 15px;
  color: #7a6355;
}

.btn-read-more {
  background-color: #3D2B1F !important;
  color: #E8A020 !important;
  border: 1px solid #E8A020 !important;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-read-more:hover {
  background-color: #E8A020 !important;
  color: #3D2B1F !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.35);
}

.btn-read-more i {
  transition: transform 0.3s ease;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* ============================================================
 9. FEATURED PRODUCTS CAROUSEL
============================================================ */
.featured-products-section {
  background: #FFF8EC;
  overflow: hidden;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 160, 32, 0.2);
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
  border-color: #E8A020;
}

.product-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #FFF8EC;
}

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

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

.product-info {
  padding: 15px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: #3D2B1F;
  margin-bottom: 10px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sale-price {
  font-size: 18px;
  font-weight: 700;
  color: #C4860A;
  letter-spacing: -0.5px;
}

.original-price {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Featured Carousel Dots */
.owl-theme .owl-dots {
  margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(61, 43, 31, 0.2);
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #E8A020;
  width: 25px;
  border-radius: 5px;
}

/* ============================================================
 10. CATEGORY CAROUSEL SECTION
============================================================ */
.category-carousel-section {
  background: #FFFDF9;
  position: relative;
  overflow: hidden;
}

.category-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.category-owl-carousel {
  position: relative;
  padding: 10px 0;
}

.category-owl-carousel .owl-stage-outer {
  padding: 5px 0;
}

.category-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 160, 32, 0.2);
  margin: 5px;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.06);
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
  border-color: #E8A020;
}

.category-image-wrapper {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #FFF8EC;
}

.category-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.category-box:hover .category-image {
  transform: scale(1.08);
}

.category-name-wrapper {
  width: 100%;
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: #3D2B1F;
  margin: 0;
  transition: color 0.3s ease;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 40px;
}

.category-box:hover .category-name {
  color: #E8A020;
}

/* Category Arrow Buttons */
.category-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #E8A020;
  background: #ffffff;
  color: #3D2B1F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.2);
  z-index: 10;
}

.category-arrow-left {
  left: 0;
}

.category-arrow-right {
  right: 0;
}

.category-arrow-btn:hover {
  background: #E8A020;
  color: #3D2B1F;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(232, 160, 32, 0.4);
}

.category-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Category Dots */
.category-owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.category-owl-carousel .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(61, 43, 31, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-owl-carousel .owl-dot.active,
.category-owl-carousel .owl-dot:hover {
  background: #E8A020;
  width: 25px;
  border-radius: 5px;
}

/* ============================================================
 11. OUR PROMISE SECTION
============================================================ */
.our-promise-section {
  background: #FFF8EC;
  position: relative;
}

.promise-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 160, 32, 0.2);
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.06);
}

.promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
  border-color: #E8A020;
}

.promise-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-circle {
  display: inline-block;
  transition: transform 0.3s ease;
}

.promise-card:hover .icon-circle {
  transform: scale(1.05);
}

/* Authentic Circle - Gold */
.authentic-circle svg circle { stroke: #E8A020; }
.authentic-circle svg text  { fill: #E8A020; }

/* Price Circle - Deep Brown */
.price-circle svg circle { stroke: #5C3D2A; }
.price-circle svg text   { fill: #5C3D2A; }

/* Delivery Circle - Dark Gold */
.delivery-circle svg circle { stroke: #C4860A; }
.delivery-circle svg g *    { stroke: #C4860A; fill: #C4860A; }

.promise-title {
  font-size: 20px;
  color: #3D2B1F;
  margin-bottom: 15px;
  font-weight: 700;
}

.promise-description {
  font-size: 14px;
  line-height: 1.7;
  color: #7a6355;
}

/* ============================================================
 12. TESTIMONIALS SECTION
============================================================ */
.testimonial-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(61, 43, 31, 0.06);
  padding: 30px 20px !important;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8A020 0%, #C4860A 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.2);
  border-color: #E8A020;
}

.quote-icon i {
  font-size: 35px;
  color: #E8A020;
  opacity: 0.3;
}

.image-circle {
  width: 90px;
  height: 90px;
  position: relative;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #E8A020;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
  border-color: #C4860A;
  box-shadow: 0 6px 16px rgba(232, 160, 32, 0.35);
}

.rating {
  font-size: 18px;
  letter-spacing: 2px;
}

.rating i {
  margin: 0 2px;
  color: #E8A020 !important;
}

.description {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: #7a6355;
  min-height: 75px;
  position: relative;
}

.client-name {
  font-size: 18px;
  color: #3D2B1F;
  margin-bottom: 5px;
  font-weight: 700;
}

.client-designation {
  font-size: 12px;
  color: #C4860A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Arrow Buttons */
.testimonial-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid #E8A020;
  background: #ffffff;
  color: #3D2B1F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.2);
  z-index: 10;
}

.testimonial-arrow-left  { left: 0; }
.testimonial-arrow-right { right: 0; }

.testimonial-arrow-btn:hover {
  background: #E8A020;
  color: #3D2B1F;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(232, 160, 32, 0.4);
}

.testimonial-arrow-btn:active {
  transform: translateY(-50%) scale(0.95);
}

#owl-carousel3 .owl-stage-outer { padding: 15px 0; }

#owl-carousel3 .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(61, 43, 31, 0.2);
  transition: all 0.3s ease;
}

#owl-carousel3 .owl-dot.active span,
#owl-carousel3 .owl-dot:hover span {
  background: #E8A020;
  width: 25px;
  border-radius: 5px;
}

/* ============================================================
 13. CONTACT SECTION
============================================================ */
.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.contact-info-card {
  background-color: transparent;
  border: none;
}

.contact-heading {
  font-size: 24px;
  color: #3D2B1F;
  font-weight: 700;
}

.contact-subtext {
  font-size: 13px;
  color: #7a6355;
  line-height: 1.5;
}

.contact-items-wrapper {
  gap: 0;
}

.contact-item {
  padding: 12px;
  background: #FFF8EC;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(232, 160, 32, 0.2);
}

.contact-item:hover {
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(232, 160, 32, 0.15);
  transform: translateX(3px);
  border-color: #E8A020;
}

.contact-icon {
  font-size: 18px;
  color: #E8A020;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h6 {
  font-size: 12px;
  color: #3D2B1F;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-item p {
  font-size: 13px;
  color: #7a6355;
  line-height: 1.5;
}

.contact-link {
  color: #C4860A;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #E8A020;
  text-decoration: underline;
}

/* Form Inputs */
.form-input {
  background-color: #FFF8EC;
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.form-input:focus {
  background-color: #ffffff;
  border-color: #E8A020;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.15);
  outline: none;
}

.form-input::placeholder {
  color: #b09078;
  font-size: 12px;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3D2A 100%);
  color: #E8A020;
  border: 2px solid #E8A020 !important;
  padding: 11px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(232, 160, 32, 0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #E8A020 0%, #C4860A 100%);
  color: #3D2B1F;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(232, 160, 32, 0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ============================================================
 14. FOOTER SECTION
============================================================ */
.footer-section {
  margin-top: auto;
}

.footer-main {
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3D2A 100%);
  position: relative;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 236, 0.75);
}

.footer-widget {
  padding: 10px 0;
}

.footer-title {
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px !important;
  color: #fff;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #E8A020;
}

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

.footer-links a {
  color: rgba(255, 248, 236, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #E8A020;
  padding-left: 5px;
}

.footer-links a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 248, 236, 0.75);
  font-size: 14px;
}

.footer-contact i {
  color: #E8A020;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact .contact-text { flex: 1; }

.footer-contact strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.footer-contact a {
  color: rgba(255, 248, 236, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover { color: #E8A020; }

/* Social Icons */
.social-links { display: flex; gap: 12px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8A020;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid rgba(232, 160, 32, 0.35);
}

.social-icon:hover {
  background: #E8A020;
  color: #3D2B1F;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 160, 32, 0.35);
  border-color: #E8A020;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #2A1E15 !important;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 248, 236, 0.65);
}

.footer-bottom a { color: #E8A020; }

.footer-bottom a:hover {
  text-decoration: underline !important;
  color: #C4860A;
}

/* WhatsApp Float (brand green — unchanged) */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  text-decoration: none;
  animation: whatsappPulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation: none;
}

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

.whatapp-img {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  z-index: 9998;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.5));
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatapp-img:hover {
  transform: scale(1.1);
  animation: none;
}

/* ============================================================
 15. RESPONSIVE — All Breakpoints
============================================================ */

/* ---------- 1199px ---------- */
@media (max-width: 1199px) {
  .section-heading { font-size: 26px; }
  .section-heading-line { max-width: 150px; }
  .product-image-container, .product-image-wrapper { height: 200px; }
  .product-name { font-size: 13px; min-height: 38px; }
  .sale-price, .current-price { font-size: 16px; }
  .original-price { font-size: 12px; }
  .promise-card { padding: 30px 20px; }
  .promise-title { font-size: 18px; }
  .promise-description { font-size: 13px; }
  .icon-circle svg { width: 90px; height: 90px; }
  .footer-logo img { max-width: 150px; }
  .footer-title { font-size: 16px; margin-bottom: 15px !important; }
  .footer-desc, .footer-links a, .footer-contact li { font-size: 13px; }
  .footer-widget { margin-bottom: 20px; }
  .category-carousel-wrapper { padding: 0 50px; }
  .category-arrow-btn { width: 45px; height: 45px; font-size: 22px; }
  .category-box { height: 220px; padding: 12px; }
  .category-image-wrapper { height: 140px; }
  .category-name { font-size: 13px; min-height: 38px; }
  .testimonial-carousel-wrapper { padding: 0 50px; }
  .testimonial-arrow-btn { width: 45px; height: 45px; font-size: 22px; }
  .customize-image-box { min-height: 180px; padding: 20px; margin: 10px; }
  .customize-product-img { max-height: 150px; }
  .customize-product-name { font-size: 15px; }
  .customize-product-desc { font-size: 12px; }
  .filter-tab-btn { padding: 11px 24px; font-size: 11px; }
  .contact-heading { font-size: 22px; }
  .contact-subtext { font-size: 12px; }
  .contact-item { padding: 10px; }
  .contact-icon { font-size: 16px; }
  .contact-item h6 { font-size: 11px; }
  .contact-item p { font-size: 12px; }
  .contact-info-card, .contact-form-card { padding: 18px; }
}

/* ---------- 991px ---------- */
@media (max-width: 991px) {
  .section-heading-wrapper { gap: 15px; margin-bottom: 35px; }
  .section-heading { font-size: 22px; }
  .section-heading-line { max-width: 100px; }
  .category-card { height: 260px; }
  .category-card img { height: 180px; }
  .customize-kits-section { padding: 50px 0; }
  .filter-tabs-wrapper { margin-bottom: 40px; }
  .filter-tab-btn { padding: 10px 20px; font-size: 11px; }
  .customize-card-wrapper { flex-direction: column; }
  .customize-image-box, .customize-content-box { width: 100%; }
  .customize-image-box { min-height: 200px; margin: 12px 12px 0 12px; }
  .customize-content-box { padding: 20px; text-align: center; }
  .customize-product-name { font-size: 15px; }
  .customize-product-desc { font-size: 13px; }
  .product-image-container, .product-image-wrapper { height: 190px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 12px; min-height: 36px; }
  .sale-price, .current-price { font-size: 15px; }
  .promise-card { padding: 25px 18px; }
  .promise-title { font-size: 17px; }
  .promise-description { font-size: 13px; line-height: 1.6; }
  .icon-circle svg { width: 85px; height: 85px; }
  .category-carousel-wrapper { padding: 0 45px; }
  .category-arrow-btn { width: 42px; height: 42px; font-size: 20px; }
  .category-box { height: 210px; padding: 10px; }
  .category-image-wrapper { height: 130px; margin-bottom: 10px; }
  .category-name { font-size: 12px; min-height: 36px; }
  .testimonial-carousel-wrapper { padding: 0 45px; }
  .testimonial-arrow-btn { width: 42px; height: 42px; font-size: 20px; }
  .contact-heading { font-size: 22px; }
  .contact-subtext { font-size: 12px; }
  .contact-item { padding: 10px; }
  .contact-icon { font-size: 16px; }
  .contact-item h6 { font-size: 11px; }
  .contact-item p { font-size: 12px; }
  .contact-info-card, .contact-form-card { padding: 18px; }
}

/* ---------- 767px ---------- */
@media (max-width: 767px) {
  .brand-container { overflow: hidden; height: auto; }
  .brand-im { max-height: 280px; object-fit: contain; object-position: center; }
  .owl-carousel .owl-nav { display: none !important; }
  .owl-carousel .owl-dots { margin-top: 10px; }
  .owl-carousel .owl-dot { width: 8px; height: 8px; margin: 0 4px; }
  .section-heading { font-size: 20px; white-space: normal; }
  .section-heading-line { max-width: 80px; }
  .section-heading-wrapper { gap: 15px; margin-bottom: 35px; }
  .category-card { height: 240px; }
  .category-card img { height: 160px; }
  .category-card h3 { font-size: 13px; height: 45px; }
  .customize-kits-section { padding: 40px 0; }
  .filter-tabs { gap: 10px; }
  .filter-tab-btn { padding: 10px 18px; font-size: 10px; }
  .customize-image-box { min-height: 180px; padding: 18px; margin: 10px 10px 0 10px; }
  .customize-product-img { max-height: 150px; }
  .customize-content-box { padding: 18px; }
  .customize-product-name { font-size: 14px; margin-bottom: 8px; }
  .customize-product-desc { font-size: 12px; }
  .product-image-container, .product-image-wrapper { height: 170px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 11px; min-height: 34px; }
  .sale-price, .current-price { font-size: 14px; }
  .original-price { font-size: 11px; }
  .btn-view-all { padding: 12px 30px; font-size: 14px; }
  .blog-image { height: 180px; }
  .blog-title { font-size: 16px; min-height: auto; }
  .description { font-size: 13px; }
  .promise-card { padding: 20px 15px; margin-bottom: 20px; }
  .promise-title { font-size: 16px; }
  .promise-description { font-size: 12px; }
  .icon-circle svg { width: 75px; height: 75px; }
  .category-carousel-wrapper { padding: 0 35px; }
  .category-arrow-btn { width: 38px; height: 38px; font-size: 18px; }
  .category-arrow-left { left: -5px; }
  .category-arrow-right { right: -5px; }
  .category-box { height: 190px; padding: 8px; margin: 3px; }
  .category-image-wrapper { height: 120px; }
  .category-name { font-size: 11px; min-height: 32px; }
  .testimonial-carousel-wrapper { padding: 0 35px; }
  .testimonial-arrow-btn { width: 38px; height: 38px; font-size: 18px; }
  .testimonial-arrow-left { left: -5px; }
  .testimonial-arrow-right { right: -5px; }
  .image-circle, .testimonial-img { width: 80px; height: 80px; }
  .client-name { font-size: 16px; }
  .description { font-size: 13px; min-height: auto; }
  .rating { font-size: 16px; }
  .quote-icon i { font-size: 30px; }
  .testimonial-card { padding: 25px 15px !important; }
  .contact-heading { font-size: 20px; }
  .contact-subtext { font-size: 11px; }
  .contact-item { padding: 10px; margin-bottom: 8px !important; }
  .contact-icon { font-size: 15px; margin-right: 8px !important; }
  .contact-info-card, .contact-form-card { padding: 15px; }
  .form-input { padding: 9px 10px; font-size: 12px; }
  .submit-btn { padding: 10px; font-size: 13px; }
  .footer-main .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .footer-logo img { max-width: 130px; }
  .footer-title::after { left: 0; }
  .footer-bottom .row > div { margin-bottom: 10px; }
  .footer-bottom .row > div:last-child { margin-bottom: 0; }
  .whatsapp-float, .whatapp-img { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

/* ---------- 575px ---------- */
@media (max-width: 575px) {
  .brand-im { max-height: 220px; }
  .owl-carousel .owl-dot { width: 7px; height: 7px; margin: 0 3px; }
  .section-heading-wrapper { gap: 10px; }
  .section-heading { font-size: 18px; }
  .section-heading-line { max-width: 50px; }
  .category-card { height: 220px; }
  .category-card img { height: 145px; padding: 8px; }
  .category-card h3 { font-size: 12px; height: 40px; }
  .load-more-btn { padding: 10px 25px; font-size: 14px; }
  .filter-tabs { flex-direction: column; width: 100%; gap: 8px; }
  .filter-tab-btn { width: 100%; padding: 12px 20px; font-size: 11px; }
  .customize-image-box { min-height: 170px; padding: 15px; }
  .customize-product-img { max-height: 140px; }
  .customize-content-box { padding: 16px; }
  .customize-product-name { font-size: 14px; }
  .customize-product-desc { font-size: 12px; -webkit-line-clamp: 2; }
  .product-image-container, .product-image-wrapper { height: 150px; }
  .product-info { padding: 8px; }
  .product-name { font-size: 10px; min-height: 28px; }
  .sale-price, .current-price { font-size: 13px; }
  .btn-view-all { padding: 10px 25px; font-size: 13px; }
  .promise-card { padding: 18px 12px; }
  .promise-title { font-size: 15px; }
  .promise-description { font-size: 11px; }
  .icon-circle svg { width: 70px; height: 70px; }
  .category-carousel-wrapper { padding: 0 30px; }
  .category-arrow-btn { width: 35px; height: 35px; font-size: 16px; border-width: 1.5px; }
  .category-arrow-left { left: -10px; }
  .category-arrow-right { right: -10px; }
  .category-box { height: 170px; padding: 8px; }
  .category-image-wrapper { height: 100px; margin-bottom: 8px; }
  .category-name { font-size: 10px; min-height: 28px; }
  .testimonial-carousel-wrapper { padding: 0 30px; }
  .testimonial-arrow-btn { width: 35px; height: 35px; font-size: 16px; border-width: 1.5px; }
  .testimonial-arrow-left { left: -10px; }
  .testimonial-arrow-right { right: -10px; }
  .testimonial-card { padding: 20px 12px !important; }
  .description { font-size: 12px; }
  .client-designation { font-size: 11px; }
  .image-circle, .testimonial-img { width: 70px; height: 70px; }
  .contact-heading { font-size: 18px; }
  .contact-info-card, .contact-form-card { padding: 12px; }
  .contact-item p { font-size: 11px; }
  .form-input { font-size: 11px; padding: 8px 10px; }
  .form-input::placeholder { font-size: 11px; }
  .submit-btn { font-size: 12px; padding: 9px; }
  .footer-logo img { max-width: 120px; }
  .footer-title { font-size: 15px; }
  .footer-desc, .footer-links a, .footer-contact li { font-size: 12px; }
  .social-icon { width: 36px; height: 36px; font-size: 16px; }
  .footer-bottom p { font-size: 12px; }
}
