
/* Define theme colors */
:root {
  --primary-color: #012052;   
  --secondary-color: #83b1ea;
  --text-color: #333;
  --background-color: #83b1ea47;
}
.feature i {
   color: var(--secondary-color);
}
.feature:hover {
  background:var(--background-color);
}
.featured-products{
 background:var(--background-color);
}
.featured-products i{
  font-size: 50px;
  color: var(--secondary-color);
  opacity: 1;
  cursor: pointer;
}
.featured-products i:hover{
  color: white;
}
.product-info .category-content {
  padding: 0;
  text-align: left;
}
.breadcrumb span {
  color: var(--secondary-color);
}
.faq-section {
  background: white;
}
.faq-answer {
  display: none; /* hide all answers by default */
  margin-top: 8px;
  color: #444;
  line-height: 1.5;
}
.faq-item.active .faq-question {
  font-weight: bold;
  color: #007b5e; /* highlight active question */
}
/* lightbox overlay */
.lightbox {
  display: none;              /* hidden by default */
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

/* show state */
.lightbox.open {
  display: flex;
}

/* image */
.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* close button */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* prev/next */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 44px;
  padding: 12px;
  cursor: pointer;
  user-select: none;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* small-screen tweaks */
@media (max-width:700px){
  .lightbox-prev, .lightbox-next { font-size: 30px; padding: 8px; }
  .lightbox-close { font-size: 36px; top: 12px; right: 12px; }
  .product-overlay {
    opacity: 1;
  }
}

/* Blur and disable background when lightbox is open */
body.lightbox-active .page-content {
  filter: blur(5px);
  pointer-events: none;   /* disables all clicks */
  user-select: none;      /* optional: prevent text selection */
}

.top-bar-left a{
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.top-bar-left a:hover{
   color: var(--secondary-color);
   transform: translateY(-2px);
}
.top-bar-left a:hover i{
   color: var(--secondary-color);
}
.top-bar {
  background: var(--primary-color);
  color: #fff;
}
.top-bar-right a:hover {
  color: var(--primary-color);
}

.nav-list a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.hero .hero-nav:hover {
  background:var(--secondary-color);
  color: var(--primary-color);;
}

.hero-decor .bubble{
background:var(--primary-color);
}
.highlight-icon {
  background: var(--primary-color);
  color: white;
  box-shadow:none;
}
.highlight-item:hover .highlight-icon{
      background: var(--secondary-color);
  color: black;
}
.highlight-item h3 {
    color:var(--primary-color);
}
.our-style-gallery, .reference-item.quote-item {
  background: var(--background-color);
}
.section-header h2 {
  color: var(--primary-color);
}
.category-image {
  height: auto;
}
.category-content h3,.cta-content h2 {
  color: var(--primary-color);
}
.btn-secondary {
  background: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color) !important;
}
.btn-secondary:hover {
  background: white !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

.btn-primary:hover{
  background: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--secondary-color) !important;
}
.stat,.highlights-band, .statistics {
  background: var(--background-color);
}
.stat-number {
   color: var(--primary-color);
}
.stat-label {
  color: #000;
}
.stat-number {
  display: inline;
}
.stat-sign{
  font-size: 2rem;
  color: var(--secondary-color);
}
.crafting-story {
  padding: 6rem 0;
}
.fotter-btn{
  padding: 8px 15px;
 font-size: 1rem; 
 margin-top: 20px;
}
.fotter-btn i{
   font-size: 1rem; 
   color: white;
}
.fotter-btn:hover i{
   color:  var(--secondary-color);
}
.footer-section p a{
   text-decoration: none !important;
   color: white;
}
.footer-section p a:hover{
   color: var(--secondary-color);
}
.footer-section h3, .footer-bottom p a{
  color: var(--secondary-color);
  text-decoration: none !important;
}
.back-to-top {
   background: var(--primary-color);
   color: white;
}
.back-to-top:hover {
   color: var(--primary-color);
   background:var(--secondary-color);
}
.social-links a {
color: white;
   background:var(--primary-color);
}
.social-links a:hover{
 background: var(--secondary-color);
}
.social-links i {
  color: white;
  margin-right: 0px;
}
.social-links i:hover {
  color: var(--secondary-color);
}
.social-links a:hover i{
   color: var(--primary-color);
}

/* About Us page css */
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}
.card-icon, .value-icon, .contact-icon {
  background:var(--primary-color);
}
.mission-vision{
 background: var(--background-color);
}
.about-hero {
  height: 20vh;
  min-height: 250px;
  background: #00000069;
}
.about-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.83) 100%);
}
.about-hero .hero-background{
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
/* whatsapp icon css */
/* WhatsApp floating button - left center */
.whatsapp-float {
  position: fixed;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;              /* WhatsApp green */
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  font-family: inherit;
}
/* WhatsApp icon */
.whatsapp-float i {
  font-size: 22px;
}

/* Hover effect */
.whatsapp-float:hover {
  background-color: var(--secondary-color);  /* darker green */
  color: var(--primary-color);
  transform: translateY(-3px); /* little lift on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Icon circle */
.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;        /* white circle behind icon */
  color: #25D366;
  flex-shrink: 0;
  font-size: 18px;
}

/* Text styling */
.whatsapp-text {
  text-transform: none;
  font-size: 14px;
  line-height: 1;
}

/* Hover/focus */
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-50%) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  opacity: 0.98;
}

/* Small screens: move to bottom-left for better UX */
@media (max-width: 700px) {
  .whatsapp-float {
    left: 18px;
    top: auto;
    bottom: 70px;
    transform: none;
    padding: 12px 16px;
  }
}

/* Optional: hide label on very small screens to save space */
@media (max-width: 420px) {
  /* .whatsapp-text { display: none; } */
  .whatsapp-icon { width: 44px; height: 44px; font-size: 20px; }
}
/* Default hidden state */
.whatsapp-float.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
}

/* When visible */
.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.fairCss {
  grid-template-columns: none !important;
}
.fairCss .story-text{
  text-align: center;
}
.fairCss .story-text h2::after {
  display: none;
}

/* menu css */
.dropdown-column h4::after {
  border-bottom: 3px solid var(--backgorund-color);
}

.menuCss h4 a{
  color: #333333;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: none !important;
}
 .menuCss a::after{
  display: none;
} 
.product-intro-image {
  box-shadow: none;
}

/* .featured-products .products-grid {
   grid-template-columns: repeat(3, 1fr); 
}  */

/* product multiple section */
.category-section {
  text-align: center;
  padding: 60px 20px;
  background:var(--background-color);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header .section-icon {
  font-size: 40px;
  color: #2d3e50;
  background: linear-gradient(135deg, #83b1ea, #012052);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

.category-grid {
  display: grid;
   grid-template-columns: repeat(4, 1fr);
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  gap: 25px;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card img {
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
}
.lampsCss .category-card img {
  height: 380px;
}
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}


.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}
.category-overlay i{
  font-size: 50px;
  color: var(--secondary-color);
  opacity: 1;
  cursor: pointer;
}
.category-overlay i:hover{
  color: white;
}
#CanvasBags, #TableLamps,#WoodenChopperPlates, #Candleholder, #CakePlates{
  background-color: white;
}
#KitchenUtensils{
  background:var(--background-color);
}
#stools .product-image {
  height: 400px !important;
}
#chairs .product-image {
  height: 350px !important;
}
#tables .product-image {
  height: 350px !important;
}
.footer-bottom {
  border-top: 1px solid var(--background-color);
}
/* #WoodenBowls .category-grid,#WoodenChopperPlates .category-grid, #KitchenUtensils .category-grid, #CakePlates .category-grid {
  grid-template-columns: repeat(3, 1fr);
} */
/* mobile css */
@media (max-width: 768px) {
  .footer-content {
    text-align: left;
  }
  .our-story .story-text h2::after {
  left: 40%;
  }
  .stats-grid {
  grid-template-columns: repeat(2, 1fr);
}
.product-price {
  text-align: center;
}
.category-grid {
  grid-template-columns: repeat(1, 1fr);
}
.category-section {
  opacity: 1 !important;
}

}