/* header css */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #fff;
}

/* COMMON */
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px;
}

/* HEADER */
.site-header {
  /* border-bottom: 1px solid #eaeaea; */
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.header-logo img {
  max-height: 30px;
  min-width: 150px;
}

.header-container .header-nav .nav-list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  font-size: 18px;
}

.header-nav .nav-list li.active a {
  color: #FF7000;
  /* font-weight: 600; */
}

.nav-list a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.nav-list a:hover {
  color: #FF7000;
}

.header-account img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.header-account img:hover {
  opacity: 0.7;
}

/* for mobile */

  .header-menu {
    display: none;
    }


  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
   }

  .menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
   }

   .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #333;
    display: block;
   }

/* MOBILE MENU OVERLAY */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 98;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: 99;
  padding: 20px;
}

/* OPEN STATE */
.mobile-menu.open {
  left: 0;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.menu-title {
  font-size: 16px;
  letter-spacing: 1px;
  color: #999;
  font-weight: 600;
}

.menu-close {
  background: #eee;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* NAV LIST */
.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: block;
}

/* ACTIVE ITEM */
.mobile-nav li.active a {
  color: #FF7000;
  font-weight: 600;
}

/* LOGIN ITEM */
.login-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-icon {
  font-size: 18px;
}


@media (min-width: 768px) and (max-width: 1023px){
  
    .header-logo img {
     max-height: 25px;
    }

    .header-container .header-nav .nav-list {
        gap: 3rem;
        font-size: 15px;
    }

}

@media (max-width: 767px){

  .header-inner{
    height: 3.2rem;
  }
   .header-nav {
    display: none;
  }

  .header-account {
    display: none;
  }

  .header-menu {
    display: block;
  }

  .header-logo img {
    max-height: 20px;
    max-width: 111px;
  }
  
}

/* end header css */

/* swiper bannercss */

.hero-banner {
  width: 100%;
}

.heroSwiper {
  width: 100%;
  height: 650px;
  /* max-height: 780px; */
  --swiper-theme-color: #ff6b35;
}


.heroSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {

.heroSwiper {height: unset;}
.heroSwiper img {height: 100%;}
 .swiper-slide.banner-desktop {
    display: none !important;
  }
 
   
}

@media (min-width: 768px) {
  .swiper-slide.banner-mobile{display: none !important;}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .heroSwiper { height: 340px; }
}

/* dots style */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  display: none;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* end swiper banner css */


/* featured-section CSS */

  /* .hide-benefit{
    display:none;
  } */

  button.carousel-btn.carousel-prev, button.carousel-btn.carousel-next {
    background: #fff;
    border: none;
  }

  .participate-pujas-section {
    padding: 60px 0;
    background: #fff;
  }

  .participate-pujas-section .page-width{
    max-width: calc(1400px + 40px);
    margin-left: auto;
    margin-right: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    margin: 0;
  }

  .view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: none;
  }

  .view-all-link:hover {
    color: #ff6b35;
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
  }

  .carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
  }

  .product-card {
    flex: 0 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full width on mobile */
    position: relative;
    border: 1px solid #CACACA;
  }

  .product-card  a{
    text-decoration: none;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.15);
  }

  .product-image {
    width: 100%;
    max-height: 270px;
    overflow: hidden;
  }

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

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

  .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
  }

  .top-heading{
    display:none;
  }

  .hidden-tag {
    visibility: hidden;
  }

  .top-heading 
  .top-heading-value::after{
  content: "";
  display: block;
  width: 100%;
  height: 3.1px;
  margin-top: 6px;   
  background: linear-gradient(to right, transparent, #fb840a, transparent);
  }

.top-heading {
 margin-top: 12px;
 padding: 0 16px;
}

  .product-content {
    padding: 20px 0px;
  }

  .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #454545;
    /* margin-bottom: 12px; */
    padding:0px 16px;
    line-height: 1.4;
    min-height: 45px;
  } 

  .product-details {
    display: grid;
    padding: 0px 16px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    font-size: 0.875rem;
  }

  .detail-item svg {
    color: #ff6b35;
  }

 .additional-info.hide-benefit{
  visibility: hidden;
  min-height: 60px;
 }

 .top-heading-value.hide-benefit{
  visibility: hidden;
  min-height: 60px;
 }

  .additional-info,
  .benefits {
    margin-bottom: 16px;
    padding:0px 16px;
    background:#34c1050f;
  }

  .product-metafields .benefits{
    display:none;
  }
  
  .additional-info p,
  .benefits p {
    color: #34C105;
    font-size: 12px;
    font-weight:500;
    padding:12px 0px;
    line-height: 1.5;
    margin: 0;
  }

  .product-actions {
    margin-top: 20px;
    padding:0px 16px;
  }

  .participate-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #FF7000;
    color: #FF7000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
  }

  .participate-btn:hover {
    background: #FF7000;
    color: white;
  }

  /* Pagination Styles */
  .carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .dot.active {
    width: 22px;
    border-radius: 20px;
    background: #FF6A00;
  }

  .participate-pujas-section .product-card {
    width: calc(33.333% - 20px); 
  } 

  @media (min-width: 768px) and (max-width: 1024px){
   .participate-pujas-section .product-card {
      width: calc(50% - 15px); 
    }

    .product-title{
      min-height: 68px;
    }
  }

  @media (min-width: 768px) {
 
    .carousel-pagination {
       justify-content: center;
       display: flex;
    }

  }

  @media (max-width: 767px) {

    .participate-pujas-section .product-card {
      width: 100% 
    }

    .participate-pujas-section {
      padding: 30px 0;
    }

    .section-header {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .section-title {
      font-size: 16px;
    }

     .product-image {
      border-radius: 15px;
     /* max-height:200px;  */
    }

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

    .product-details .detail-item{
      font-size: 12px;
    }

    .header-controls {
      width: 100%;
      justify-content: center;
    }
    .section-head{
    display:block;
    }
    .carousel-controls {
      margin-top: 15px;
      display:none;
    }
  }


/* end featured-section CSS */

/* ------- puja-highlights-section CSS----- */

  .puja-highlights-section {
    background-color: #F8F8F8;
    padding: 2.5rem 1rem;
    margin-bottom: 100px;
  }

  .highlights-wrapper {
    margin: 0 auto;
  }

  .highlights-wrapper.page-width {
    max-width: calc(1400px + 40px);
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
  }

  .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0.5rem;
  }

  .icon-wrapper {
    background-color: #FF7000;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .highlight-text {
    font-size: 16px;
    color: #000000;
    font-weight:400;
    line-height: 1.4;
  }

  @media (min-width: 768px) and (max-width: 1024px){

    .highlights-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item{
      flex-direction: row;
      gap: 35px;
    }

  }

  @media (max-width: 767px) {
    
    .highlights-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .highlight-text {
      font-size: 0.8rem;
      font-weight: 300;
    }

  .highlight-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    }

  .icon-wrapper{
    flex-shrink: 0;
    margin: 0 12px 0 0;
  }

  .puja-highlights-section {
    margin-bottom: 30px;
  }
}
/* ------- End puja-highlights-section  CSS----- */

.vedic-experts-section {
      position: relative;
      padding: 80px 1rem;
      overflow: hidden;
      background: url("../Images/vedic-expert-background.png");
    }

    .vedic-experts-container {
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .vedic-heading {
      font-size: 24px; /* 30px */
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .vedic-description {
      font-size: 18px;
      color: #454545; /* gray-700 */
      font-weight:400;
      margin-bottom: 2.5rem;
    }

    .vedic-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .vedic-card {
      background: url("../Images/vadic-logo-background.png");
      color: #fff;
      padding: 16px 16px 18px;
      border-radius: 0.75rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .vedic-card-icon {
      width: 60px;
      height: 60px;
      background:#fff1e6;
      padding:10px;
      border-radius:8px;
      margin-bottom: 1rem;
    }

    .vedic-card-text {
      font-size: 16px;
      
      line-height: 1.5;
    }

    .vedic-bg-left,
    .vedic-bg-right {
      position: absolute;
      top: 0;
      height: 100%;
      object-fit: contain;
      z-index: 0;
      pointer-events: none;
    }

    .vedic-bg-left {
      left: 0;
    }

    .vedic-bg-right {
      right: 0;
    }

    @media (max-width: 767px) {

      .vedic-experts-section{
        padding:22px 14px;
      }

      .vedic-cards-grid {
        display:block;
      }

      .vedic-card{
        margin:10px 0px ;
      }

      .vedic-card-icon{
        padding:2px;
        width: 40px;
        height: 40px;
      }

      .vedic-card-text{
        font-size:12px;
      }

      .vedic-heading{
        font-size:16px;
      }

      .vedic-description{
        font-size:12px;
      }

    }
    
/* End vedic-experts-section CSS */

/* trusted-devotee-section */

.trusted-devotees-section {
    padding: 80px 0;

  }

  .page-width {
    max-width: calc(1400px + 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .trusted-devotees-section .container {
    margin: 0 auto;
    padding: 0 20px;
  }

  .trusted-devotees-section .container .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  /* Main Content Styles */
   .trusted-devotees-section .container .content-wrapper .main-content {
    padding: 76px 40px 180px 80px;
    background: #F8F8F8;
    border-radius: 10px 10px 200px 10px;
    min-height: 560px;
  }

  .trusted-devotees-section .container .content-wrapper .main-content .main-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block {
    margin-top: 40px;
    max-width: 436px;
  }

 .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block .subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 12px;
  }

 .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block .description {
    color: #000000;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
  }

  /* Statistics Grid Styles */
  .statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
  }

  .stat-card {
    background: white;
    padding: 10px;
    text-align: left;
    position: relative;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ff7000;
  }

  .default-icon {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-icon svg {
    width: 32px;
    height: 32px;
  }

  .stat-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .stat-description {
    color: #454545;
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {

    .content-wrapper {
      gap: 40px;
    }

    .main-content {
      padding-right: 20px;
    }

    .trusted-devotees-section .container .content-wrapper {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .trusted-devotees-section .container .content-wrapper .main-content {
      padding: 16px;
      text-align: left;
      border-radius:0px;
      min-height: unset;
    }

  }

  @media (max-width: 1024px) {

    .trusted-devotees-section {
      padding: 30px 0;
    }

    .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block .subtitle{
      font-size:14px;
      font-weight: 500;
      max-width: 300px;
    }

    .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block{
        margin-top: 20px;
    }


    .trusted-devotees-section .container .content-wrapper .main-content .subtitle-block .description{
      font-size:10px;
      font-weight: 300;
      max-width: 277px;
    }

    .stat-title{
      font-size:12px;
      margin-bottom: 6px;
    }

    .stat-description{
      font-size:12px;
    }

    .trusted-devotees-section .container .content-wrapper .main-content .main-title {
      font-size: 16px;
      font-weight: 500;
      max-width: 255px;
      margin-bottom: unset;
    }

    .stat-card {
      padding: 24px 20px;
      display: flex;
      flex-direction: row;
      gap: 10px;
    }

    .stat-icon {
      padding: 8px;
      width: 40px;
      height: 40px;
      object-fit: contain;
      flex-shrink: 0;
      margin: 0 10px 0 0;
    }

    .statistics-grid {
      gap: 20px;
    }

    .statistics-grid::before,
    .statistics-grid::after {
      display: none;
    }

  }

  @media (max-width: 480px) {
    .statistics-grid {
      grid-template-columns: 1fr;
    }

    .stat-card {
      padding: 20px 16px;
    }

  }

  /* end trusted-devotee-section */

  
  /* social CSS */

   .social-counter-bar {
    background: linear-gradient(to right, #ff6a00, #000, #ff6a00);
    padding: 10px 0;
  }

  .social-counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 0px;
  }

  .social-counter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
  }

  .social-counter-item img {
    width: 40px;
    height: 40px;
  }
  .social-counter-item span{
    font-size:20px;
    font-weight:600;
    color:#fff;
  }

  @media (max-width: 768px) {
    .social-counter-bar{
      background:#000;
    }
    .social-counter-container {
      gap: 20px;
      padding:0px;
    }

    .social-counter-item span {
      font-size: 12px;
    }
  }

  /* end social css */


/* customer-reviews-section */

.customer-reviews-section {
  background: #fff;
  padding: 48px 16px;
}


.reviews-container {
  
  margin: 0 auto;
}
.reviews-heading {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
.reviews-subheading {
    background: #34C1051A;
    width: 100%;
    color: #000;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
}
.reviews-rating-overall {
  display: flex;
 
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rating-score {
  font-size: 30px;
  font-weight: 500;
  color:#000;
}
.rating-stars .star {
  color: #facc15;
  font-size: 16px;
  margin-right: 2px;
}
.rating-summary {
  font-size: 16px;
  color: #707070;
  font-weight:400;
}
.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.reviewer-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
  .rating-stars{
    display:flex;
  }
  .rating-stars .star img{
    width:20px;
  }
  .reviewer-info .rating-stars .star img{
    width:16px;
  }
  .internal{
    font-size:20px;
    font-weight:500;
    color:#000;
  }
.avatar {
  width: 40px;
  height: 40px;
  border:1px solid #FFCA28;
  display: flex;
  padding:4px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

  .check-icon img{
    width:24px;
  }
.review-name {
  font-size: 16px;
  font-weight: 500;
  color:#000;
  margin-bottom: 2px;
}
.review-date {
  font-size: 14px;
  color: #707070;
  font-weight:400;
  margin-bottom: 4px;
}
.review-comment {
  font-size: 16px;
  font-weight:400;
  color: #000;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  
    .customer-reviews-section{
      padding:30px 0px;
    }

    .customer-reviews-section .page-width{
      max-width: calc(1400px+ 40px);
      padding-right: 1.25rem;
      padding-left: 1.25rem;
    }

    .reviews-subheading{
      font-size:10px;
    }

    .rating-stars .star img {
        width: 10px;
    }

  .internal{font-size:16px;}

  .rating-score {font-size: 16px;}
    
  .review-name {font-size: 14px;}

  .avatar {
    width: 11%;
    height: 11%;
    border: 1px solid #FFCA28;
    padding: 6px;
    } 

  .review-comment{ font-size: 12px; }
  .reviews-rating-overall {align-items: flex-start;}
  .reviews-heading{font-size:16px;}
  .reviewer-info .rating-stars .star img{width:10px;}
  .rating-summary, .review-date{font-size:14px;}
}

 @media (min-width: 768px) and (max-width: 1023px){
 
  .avatar { 
    width: 30px;
    height: 30px;}
 }

 /* end customer-reviews-section */

 /* ------- Footer CSS ----- */

.site-footer {
  background: #FFF3E8;
  padding: 40px 16px 0;
  font-family: inherit;
  color: #444;
}

.footer-inner {
  /* max-width: 1200px; */
  margin: auto;
  display: flex;
  gap: 60px;
}

.footer-brand {
  flex: 1.4;
  max-width: 500px;
}

.footer-brand img {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 450px;
  font-weight: 400;
}

.footer-col{ min-width: 140px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* background: #ddd; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* COLUMNS */
.footer-columns {
  flex: 1;
  display: flex;
  gap: 275px;
}

.footer-col h4,
.footer-toggle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  font-family: 'Poppins';
}

.footer-mail .mail{
    /* color: #FF7000; */
    font-size: 14px;
    font-weight: 500;
}

.footer-mail .contact{
    /* color: #FF7000; */
  font-size: 14px;
  font-weight: 500;
}

.footer-mail li{
  display: flex;
  column-gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 20px;
}

.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
  font-weight: 400;
}

.footer-col a:hover {
  color: #FF7000;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 32px;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 300;
  background: #FFE2CC;
  margin-left: -16px;
  margin-right: -16px;
}

/* .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50.5%);
  width: 100vw;
  border-top: 1px solid #000;
  overflow-x: hidden;
} */

.footer-bottom .page-widh{
  max-width: calc(1400px + 40px);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom .lg-text{
  display: flex;
  justify-content: space-between; /* this replaces your 680px gap */
  align-items: center;
}



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

.footer-bottom a:hover {
  color: #FF7000;
}

.footer-mail img{width: 32px; height: 32px;}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  left: 16px;
  bottom: 24px;
  background: #4CAF50;
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  z-index: 50;
}

@media (min-width: 768px) and (max-width: 1024px){

.footer-columns {
  flex: 1;
  display: flex;
  gap: 50px;
}

.footer-columns  .footer-col {
  min-width: 116px;
}

.footer-mail .mail {font-size: 16px;}
.footer-mail .contact { font-size: 16px;}



  .footer-mail .mail{font-size: 1rem;}
  .footer-mail .contact{font-size: 1rem;}
  .footer-col a {font-size: 12px;}
  .footer-bottom {font-size: 15px;}

}

@media (max-width: 767px) {

  .footer-social {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 0;
  }

  /* Each accordion section */
  .footer-col {
    border-bottom: 1px solid #000;
  }

  .footer-col a {font-size: 12px;}

  .footer-col-lg {
    border-top: 1px solid #000;
  }

  /* Toggle button */
  .footer-toggle {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin-bottom: unset;
  }

  /* + / − icon */
  .footer-toggle::after {
    /* content: "+"; */
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #000;;
    border-bottom: 1.5px solid #000;;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }

  /* Hide content by default */
  .footer-col ul {
    display: none;
    padding-bottom: 12px;
  }

  .footer-col.active ul {
    display: block;
  }

  .footer-mail img{width: 20px; height: 20px;}

    .footer-col.active .footer-toggle::after {
      /* content: "−"; */
      transform: translateY(-50%) rotate(-135deg);
    }
    .footer-col li{margin-bottom: 10px;}
    .footer-mail .mail {font-size: 14px;}
    .footer-mail .contact { font-size: 14px;}

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: unset;
    border-top: unset;
    font-size: 12px;
  }

   .footer-bottom .lg-text{
    flex-direction: column;
   }
  
}

/* end footer css */

.participate-pujas-section {
    background: #fff;
  }

  .participate-pujas-section .page-width {

    max-width: calc(1400px + 40px);
    margin-left: auto;
    margin-right: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
   }

  /* Hero Header */
  .hero-header {
    background: linear-gradient(135deg, #994313 0%, #ff7043 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
    border-radius: 0.75rem;
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .hero-icons img {
    width:64px;
  }

  .hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color:#fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  @keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(180deg); }
  }

  /* Filter Tabs */
  .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 12px 24px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
  }

  .filter-btn:hover {
    background-color: #ffffff !important; 
    color: #e65100 !important; 
  }

  .filter-btn.active {
    background: white;
    color: #e65100;
  }

  .filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Search Container */
  .search-container {
    /* background: #f5f5f5;  */
    padding: 20px 0;
  }

  .search-bar {
    /* max-width: 600px;  */
    margin: 0 35px;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .search-icon {
    color: #9CA3AF;
    margin-right: 12px;
  }

  .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #374151;
    width: -webkit-fill-available;
  }

  .search-input::placeholder {
    color: #9CA3AF;
  }

  .filter-toggle-btn {
    background: none;
    border: none;
    padding: 8px;
    margin-left: 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .filter-toggle-btn:hover {
    background: #f3f4f6;
  }

  /* Section Controls */
  .section-controls {
    padding: 40px 0 20px;
    display: flex;
    justify-content: flex-end;
  }

  .view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display:none;
  }

  .view-all-link:hover {
    color: #ff6b35;
  }

  /* Grid Container */
  .products-grid-container {
    position: relative;
    padding: 20px 0 60px;
  }

  /* Grid Layout */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }

  /* .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  } */

  .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .book-puja .product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    max-height: unset;
    border-radius: 16px;
    position: relative;
  }

  .product-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    /* transition: transform 0.3s ease; */
  }

  .book-puja .product-card .top-heading {
    display:block;
    width: 290px;
  }

  .book-puja .product-card .top-heading .top-heading-value {
     color: #FF7A00;
  }

  /* .product-card:hover .product-image img {
    transform: scale(1.05);
  } */

  .placeholder-image {
    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    display: none;
  }

  .top-heading-value{
     font-size: 16px;
    }

  .top-heading 
  .top-heading-value::after{
    content: "";
    display: block;
    width: 100%;
    height: 3.1px;
    margin-top: 6px;   
    background: linear-gradient(to right, transparent, #fb840a, transparent);
  }

  .top-heading {
  margin-top: 12px;
  padding: 0 16px;
  }

  .product-content {
    padding: 20px 0px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #454545;
    /* margin-bottom: 16px; */
    padding: 0px 16px;
    line-height: 1.4;
    min-height: 70px;
  } 

  .product-details {
    display: grid;
    padding: 0px 16px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.875rem;
  }

  .detail-item svg {
    color: #ff6b35;
    flex-shrink: 0;
  }

  .additional-info,
  .benefits {
    margin-bottom: 16px;
    padding: 0px 16px;
    background: #34c1050f;
  }
  
  .additional-info p,
  .benefits p {
    color: #34C105;
    font-size: 12px;
    font-weight: 500;
    padding: 12px 0px;
    line-height: 1.5;
    margin: 0;
  }

  .product-actions {
    margin-top: auto;
    padding: 0px 16px;
  }


  .participate-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    color: #FF7000;
    border: 1px solid #FF7000;
    /* border-image: linear-gradient(135deg, #994313, #ff7043) 1;  */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .product-link:hover .participate-btn {

    /* background: linear-gradient(135deg, #994313 0%, #ff7043 100%); */
    background: #FF7000;
    color: white;
    border-radius: 8px;
    transform: translateY(-1px);
  }

  /* No Results Message */
  .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
  }

  .no-results p {
    font-size: 18px;
    margin: 0;
  }

  /* Responsive Styles */
  @media (max-width: 767px) {
    .hero-header {
      padding: 30px 0;
    }

  .product-info h1.product-title{
     font-size:20px !important;
  }

    .hero-title {
      font-size: 17px;
    }

    .product-card .product-title{
      min-height: unset;
      font-size: 14px;
    }

    .product-card .product-metafields .product-details {
      margin: 16px 0;
    }


    .hero-content {
      gap: 15px;
      margin-bottom: 25px;
    }

    .filter-tabs {
      gap: 15px;
      padding: 0 20px;
    }

    .filter-btn {
      padding: 10px 20px;
      min-width: 100px;
      font-size: 14px;
    }

    .search-container {
      padding: 20px 20px;
    }

    .book-puja .product-image {
      height: 240px;
      border-radius: 14px;
    }

    .search-bar {
      padding: 5px 16px;
      margin: 0 0px;
    }

    .section-controls {
      padding: 5px 20px 5px;
      justify-content: center;
    }

    .timer-text{
      font-size: 0.75rem;
    }

    .products-grid-container {
      padding: 15px 5px 40px;
    }

    .products-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .time-value {
      font-size: 16px;
    }

    .time-label {
      font-size: 9px;
    }
  }
  
  @media (max-width: 768px){
    .top-heading-value{
      font-size: 14px;
    }
  }

    @media (min-width: 768px) and (max-width: 1024px) {

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .book-puja .product-image {
        height:260px;
      }

    }

    @media (min-width: 1025px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 480px) {
      .book-puja .product-card {
        width: 100%;
      }
  }

  @media (min-width: 1400px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }



