﻿body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* banners  */
.banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Top Bar */
.top-bar {
  font-size: 14px;
  padding: 6px 0;
  overflow: hidden;
  position: relative;

}

.marquee {
  white-space: nowrap;
  display: inline-block;
  animation: marqueeMove 15s linear infinite;
}


@keyframes marqueeMove {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Navbar */
.desktop-nav-hide {
  display: flex !important;
}

.mobile-nav-hide {
  display: none !important;
}

@media (max-width: 1111px) {
  .desktop-nav-hide {
    display: none !important;
  }

  .mobile-nav-hide {
    display: flex !important;

  }
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-nav-text {
  color: #000;
  font-size: 13px;
  text-decoration: none;
  min-height: 50px;
  padding: 5px 0 5px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  opacity: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

.nav-link-text {
  color: #444;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: Uppercase;
  position: relative;
  line-height: 40px;
  padding: 0 15px;
  min-height: 55px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-link-text:hover {
  color: #7e0f0d;
}


.nav-container {
  width: 100%;
  padding: 55px 0px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}


.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


#navMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

#navMenu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

/* MOBILE */

@media (max-width: 1111px) {
  #navMenu {
    display: none;
  }
}

@media (max-width:1111px) {

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

}

/* OFFCANVAS */
.custom-mobile-menu {
  position: relative;
}

.custom-close {
  background-color: #183e40;
  position: absolute;
  top: 15px;
  right: -40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  opacity: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-close-btn {
  filter: invert(1);
  width: 14px;
  height: 14px;

  padding: 0;
  margin-right: 3px !important;
  background-size: 14px;
  background-position: center;
}

#mobileMenu {
  width: 90dvw;
  max-width: 400px;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */

.offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
}

.offcanvas-header img {
  height: 45px;
}

/* SEARCH */

.mobile-search {
  background: #f8f8f8;
}

.mobile-search i {
  font-size: 16px;
  color: #777;
  margin-right: 8px;
}

.mobile-search input {
  background: transparent;
}

/* MENU LINKS */

.mobile-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}

.mobile-links a:hover {
  color: #7e0f0d;
  padding-left: 6px;
}

/* ICONS */

.mobile-icons i {
  font-size: 20px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.mobile-icons i:hover {
  color: #7e0f0d;
  transform: scale(1.15);
}

/* SPACING */

.offcanvas-body {
  padding: 20px;
}


/* Hero */
.hero-third-banner {
  display: block;
}

.hero-third-banner-copy {
  display: none;
}

@media (max-width: 767px) {
  .hero-third-banner {
    display: none;
  }

  .hero-third-banner-copy {
    display: block;
  }
}

.hero-section {
  background: linear-gradient(to right, #ffe6f0, #fff);
  padding: 0px 0;
  width: 100%;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 600;
  color: #7e0f0d;
}

.btn-buy {
  background: #7e0f0d;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 20px 0px;
}

/* Categories */
.category-card img {
  width: 100%;
  border-radius: 12px;
}

.category-card p {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

/* Products */
.product-card {
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}


.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.product-actions {
  position: absolute;
  bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* .product-image-wrap:focus-within .product-actions */
.product-image-wrap:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.action-btn:hover {
  background: #f75b5b;
  color: #fff;
}

.action-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.action-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.action-btn:hover::after,
.action-btn:hover::before,
.action-btn:focus-visible::after,
.action-btn:focus-visible::before {
  opacity: 1;
  visibility: visible;
}


.product-info {
  margin-top: 15px;
  text-align: center;
}

.product-name {
  font-weight: 600;
  font-size: 12px;
  color: black;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}

.product-name:hover {
  color: #7e0f0d;
  cursor: pointer;
}

.price {
  font-weight: 600;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.btn-cart {
  background-color: #7e0f0d;
  color: #ffffff;
  width: 100%;
  height: 30px;
  padding: 10px 0;
  border: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.custom-col-5 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 768px) {
  .custom-col-5 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 1200px) {
  .custom-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* shine effect  */
.shine-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.shine-wrapper img {
  display: block;
  width: 100%;
}

.shine-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 2%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);

  animation: shine 20s linear infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

.hide-scrollbar {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE & old Edge */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}




/* Image Section */
.image-strip {
  background: #f2f2f2;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  border-radius: 4px;
}

.icon-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Feature Bar */
.feature-bar {
  background: #8c0b0b;
  color: white;
  padding: 20px 0;
}

.feature-item h6 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: 1px;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
}

.border-line {
  border-left: 1px dotted rgba(255, 255, 255, 0.5);
  border-right: 1px dotted rgba(255, 255, 255, 0.5);
}



.footer-section {
  background: #8c0b0b;
  color: #fff;
}

.footer-block {
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: -30px;
  padding: 50px 0px;
}

.footer-top-contain {
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: -30px;
  padding: 50px 0;
}

.footer-top {
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: -30px;
  margin-left: -30px;
  padding: 50px 0px;
}

.footer-top-item {
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%;
}

.footer-top-item-nop {
  flex: 0 0 auto;
  margin-bottom: 30px;
  max-width: 100%;
}

@media (min-width: 768px) {

  .footer-first-section {
    width: 33.33333%;
  }

  .footer-second-section {
    width: 20%;
  }

  .footer-third-section {
    width: 20%;
  }

  .footer-subscribe-section {
    width: 25%;
  }

}

@media only screen and (max-width: 1024px) {
  .footer-first-section {
    width: 50%;
  }

  .footer-second-section {
    width: 50%;
  }

  .footer-third-section {
    width: 50%;
  }

  .footer-subscribe-section {
    width: 50%;
  }
}

.bottom-navbar {
  display: none;
}

@media only screen and (max-width: 766px) {
  body {
    padding-bottom: 56px;
  }

  .bottom-navbar {
    display: block;
  }

  .footer-first-section {
    width: 100% !important;
    padding: 12px 0;
    margin: 0;
  }

  .footer-second-section {
    width: 100% !important;
    padding: 12px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-third-section {
    width: 100% !important;
    padding: 12px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-subscribe-section {
    width: 100% !important;
    padding: 12px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media only screen and (max-width: 766px) {
  .footer-top {
    margin: 0;
    padding: 15px 0;
  }
}

.footer-logo {
  max-width: 150px;
}

.footer-text {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.footer-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.footer-toggle i {
  display: none;
}

.footer-copyright-text {
  font-size: 12px;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
}

@media(max-width:766px) {

  .footer-copyright-text {
    text-align: center;
  }

}

.commitment-section {
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%;
}

@media only screen and (max-width: 766px) {
  .commitment-section {
    width: 100% !important;
    padding: 12px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.footer-links li {
  margin-bottom: 7px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 766px) {
  .footer-collapsible .footer-toggle {
    margin-bottom: 0;
    padding: 8px 0;
  }

  .footer-collapsible .footer-toggle i {
    display: inline-block;
    transition: transform 0.25s ease;
  }

  .footer-collapsible .footer-links {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.28s ease;
  }

  .footer-collapsible.open .footer-links {
    max-height: 260px;
    margin-top: 8px;
  }

  .footer-collapsible.open .footer-toggle i {
    transform: rotate(180deg);
  }
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-form input {
  color: #ffffff;
  background-color: #7e0f0d;
  margin-bottom: 10px;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  max-width: 450px;
  line-height: 1.2;
  padding: 8px 15px;
  font-size: 13px;
  font-family: var(--ft1);
  border: 1px solid #fff;
}

.subscribe-form input::placeholder {
  color: #ddd;
}

.subscribe-form button {
  font-size: 11px;
  color: #111;
  background-color: #ffffff;
  border: 1px solid transparent;
  width: fit-content;
  height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 10px 24px;
  user-select: none;
  appearance: none;
  border-radius: 0;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.subscribe-form button:hover {
  border: 1px solid #ffffff;
  background: none;
  color: #ffffff;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

.payment-icons img {
  height: 35px;
  margin-right: 5px;
  background: #fff;
  border-radius: 5px;
}


/* reviews */

.review-wrapper {
  overflow: auto;
  position: relative;
}

.review-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollReviews 60s linear infinite;
  animation-play-state: running;
}

.review-card {
  min-width: 400px;
  background: #f7f7f7;
  padding: 20px 25px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card h6 {
  margin: 0;
  font-weight: 600;
}

.review-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.stars {
  color: #f4a100;
  font-size: 14px;
  margin-left: 5px;
}

/* Right to Left Animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-track:hover {
  animation-play-state: paused;
}

.zoom-up {
  transition: transform 0.3s ease;
}

.zoom-up:hover {
  transform: scale(1.05);
}

/* pujo form  */
.puja-card {
  background: white;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Tabs */

.puja-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.puja-tabs span {
  font-weight: 500;
  cursor: pointer;
  color: #555;
}

.puja-tabs span.active {
  color: #d11a2a;
  border-bottom: 2px solid #d11a2a;
  padding-bottom: 6px;
}

/* Form */

.puja-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.puja-input {
  flex: 1;
  min-width: 180px;
  background: #f7f7f7;
  border-radius: 30px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.puja-input input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
}

.puja-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

/* Mobile */

@media(max-width:768px) {

  .puja-form {
    flex-direction: column;
    align-items: stretch;
  }

  .puja-btn {
    width: 100%;
  }

}

/* pujo form  */

/* shop by budget  */
.budget-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: fit-content;
  margin: auto;
}

.budget {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* mobile */
@media (max-width:767.98px) {
  .budget-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* shop by budget  */


/* instagram  */

.instagram-row {
  display: flex;
  gap: 16px;
}

.insta-card {
  position: relative;
  flex: 0 0 16.6667%;
  padding: 0 7.5px 15px;
  aspect-ratio: auto 2430 / 2430;
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.insta-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@media (max-width:1024px) {
  .insta-card {
    flex: 0 0 33.333%;
  }
}

@media (max-width:767px) {
  .insta-card {
    flex: 0 0 50%;
  }
}

.insta-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.video-review-last {
  aspect-ratio: 9/16;
  border-radius: 5px;
  flex-shrink: 0;
  margin-bottom: 8px;
  flex: 1 0 0;
}

.video-review {
  aspect-ratio: 9/16;
  border-radius: 5px;
  flex-shrink: 0;
  margin-bottom: 8px;
  margin-right: 16px;
  flex: 1 0 0;
}

@media (min-width: 1024px) {
  .video-review {

    margin-bottom: 16px;
    margin-right: 8px;
  }

  .video-review-last {
    margin-bottom: 16px;

  }

}

/* mobile */
.video-review {
  width: calc(50% - 8px);
}

.video-review-last {
  width: calc(50% - 8px);


}

/* tablet */
@media (min-width:768px) {
  .video-review {
    width: calc(25% - 12px);
  }

  .video-review-last {
    width: calc(25% - 12px);
  }
}



/* desktop */
@media (min-width:1024px) {
  .video-review {
    width: calc(16.666% - 14px);
  }

  .video-review-last {
    width: calc(16.666% - 14px);
  }
}

.video-review-page-width {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 27px;
  padding-bottom: 27px;
  max-width: 1600px;
}

@media only screen and (min-width: 766px) {
  .video-review-page-width {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}