.bg-primary {
  background-color: #34a6e6 !important;
}

/* Custom animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.stagger-delay-1 {
  transition-delay: 0.1s;
}

.stagger-delay-2 {
  transition-delay: 0.2s;
}

.stagger-delay-3 {
  transition-delay: 0.3s;
}

.stagger-delay-4 {
  transition-delay: 0.4s;
}

.stagger-delay-5 {
  transition-delay: 0.5s;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #7aa4ce;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d95612;
}

/* Background gradients */
.bg-purple-gradient {
  background-image: linear-gradient(90deg, hsla(277, 75%, 84%, 1) 0%, hsla(297, 50%, 51%, 1) 100%);
  background-image: linear-gradient(90deg, hsl(100.24deg 43.16% 37.25%) 0%, hsl(190.54deg 100% 70.78%) 100%);
}

.bg-coral-gradient {
  background-image: linear-gradient(90deg, hsla(24, 100%, 83%, 1) 0%, hsla(341, 91%, 68%, 1) 100%);
  background-image: linear-gradient(313deg, hsl(100.24deg 43.16% 37.25%) 0%, hsl(190.54deg 100% 70.78%) 100%);

}

.bg-blue-gradient {
  background-image: linear-gradient(90deg, hsla(186, 33%, 94%, 1) 0%, hsla(216, 41%, 79%, 1) 100%);
}

.bg-green-gradient {
  background-image: linear-gradient(90deg, hsla(139, 70%, 75%, 1) 0%, hsla(63, 90%, 76%, 1) 100%);
}

/* Color definitions */
.text-purple {
  color: #d95612;
}

.text-teal {
  color: #508936;
}

.text-coral {
  color: #FF5E40;
}

.bg-purple-light {
  background-color: #7aa4ce;
}

.bg-purple {
  background-color: #d95612;
}

.bg-purple-dark {
  background-color: #6E59A5;
}

.bg-teal-light {
  background-color: #508936;
}

.bg-teal {
  background-color: #508936;
}

.bg-teal-dark {
  background-color: #3DB9AE;
}

.bg-coral-light {
  background-color: #FF7E67;
}

.bg-coral {
  background-color: #FF5E40;
}

.bg-coral-dark {
  background-color: #FF3E17;
}

/* Hero carousel */
.hero-slide {
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Product slider */
.product-slider {
  position: relative;
}

.slider-item {
  transition: transform 0.3s ease;
}

.slider-item:hover {
  transform: translateY(-5px);
}

/* Brands slider */
.brands-slider {
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Mobile menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

.product-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
  /* gap: 10px; */
}

.product-grid .product-details {
  padding: 20px;
}

.stars-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding: 2px 10px;
  border-radius: 50px;
  background-color: #f0f0f06d;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: bold;
}

/* Responsive fixes */
@media (max-width: 640px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .product-grid .product-details {
    padding: 5px;
  }

  .product-grid .name {
    margin: 0;
  }

  .product-grid .price {
    margin: 0;
  }

  .product-grid .color {
    margin: 0;
    display: none;
  }

  .product-grid h3.text-lg {
    font-size: 14px;
  }

  .product-grid span.text-xl {
    font-size: 14px;
  }

  .stars-badge span.text-sm {
    font-size: 12px;
  }

  .banner-image {
    height: 320px;
  }

  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}


/* own */
.product-image {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 3 / 2; */
  object-fit: contain;
  transition: transform 500ms;
  object-position: center;
}

/* Hover effect when parent has class "group" */
.group:hover .product-image {
  transform: scale(1.05);
}

/* product */

:root {
  --color-primary: #7aa4ce;
  /* purple-light */
  --color-primary-hover: #7aa4ce;
  --color-muted: #f3f4f6;
  /* light gray */
  --color-text: #1f2937;
  /* gray-800 */
  --color-strike: #9ca3af;
  /* gray-400 */
  --transition: 0.3s ease;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  scale: 1.02;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card__media {
  position: relative;
  /* height: 16rem; */
  aspect-ratio: 4/5;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card__badge--new {
  background: var(--color-primary);
}

.product-card__overlay {
  position: absolute;
  /* inset: 0; */
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* z-index: -1; */
  transition: opacity var(--transition);
  width: fit-content;
  height: 65px;
  border-radius: 10px;
  right: 0;
  bottom: 0;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
  /* z-index: 1; */
}

.product-card__btn {
  background: #fff;
  border: none;
  padding: 0.75rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(1rem);
  opacity: 0;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition),
    color var(--transition);
}

.product-card:hover .product-card__btn {
  transform: translateY(0);
  opacity: 1;
}

.product-card__btn:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.product-card__rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
}

.product-card__star-icon {
  width: 1rem;
  height: 1rem;
  fill: #FFC107;
  margin-right: 0.25rem;
}

.product-card__rating-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card__body {
  padding: 1rem;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__prices {
  display: flex;
  align-items: center;
  /* margin-bottom: 1rem; */
}

.product-card__mrp {
  text-decoration: line-through;
  color: var(--color-strike);
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-card__add-to-cart {
  width: 100%;
  background: var(--color-muted);
  color: var(--color-text);
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.product-card__add-to-cart:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width:660px) {
  .product-card__media {
    position: relative;
    /* height: 10rem; */
    overflow: hidden;
  }

  .product-card__add-to-cart {
    display: none;
  }

  .product-card__prices {
    margin-bottom: 0;
  }

  .product-card__body {
    padding: 5px;
  }

  .product-card__title {
    font-size: 14px;
    margin: 0;
  }

  .product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
  }
}

/* filters  */

/* slider container */
.price-slider {
  position: relative;
  height: 0.5rem;
  margin-top: 0.5rem;
}

.price-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 0.5rem;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}

.price-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -0.25rem;
}

.slider-track,
.slider-range {
  position: absolute;
  height: 100%;
  border-radius: 0.25rem;
}

.slider-track {
  width: 100%;
  background: #e5e7eb;
  /* gray-200 */
  top: 0;
  left: 0;
}

.slider-range {
  background: var(--color-primary);
  top: 0;
}

.mobile-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* Tailwind gap-2 = 0.5rem = 8px */
  background-color: #a449ff;
  /* or replace with actual hex */
  color: white;
  padding: 5px;
  border-radius: 0.5rem;
  font-size: 12px;
  width: 100%;
  width: fit-content;
  text-wrap: nowrap;
}

.desktop-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* Tailwind gap-2 = 0.5rem = 8px */
  background-color: #a449ff;
  /* or replace with actual hex */
  color: white;
  padding: 5px;
  border-radius: 0.5rem;
  font-size: 12px;
  width: 100%;
  width: fit-content;
  text-wrap: nowrap;
}


.background-brand-pattern {
  position: relative;
  z-index: 1;
}

.background-brand-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/seemless.webp');
  background-repeat: repeat;
  /* background-size: ; */
  background-position: center;
  opacity: 0.1;
  z-index: -1;
  /* behind content */
  pointer-events: none;
}

main {
  position: relative;
  /* z-index: 1; */
  /* Ensure main content is above the background pattern */
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/seemless.webp');
  background-repeat: repeat;
  /* background-size: ; */
  background-position: center;
  opacity: 0.1;
  z-index: -1;
  /* behind content */
  pointer-events: none;
}


/* FAQ List and Items */
.faq-container {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border: 1px solid #bcbcbc;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background-color: #d9d9d9;
  /* position: relative; */
  /* z-index: 9999; */
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #292929;
  transform: scale(1.02);
  background-color: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  font-weight: 600;
  padding: 10px;
  gap: 20px;
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 10px;
  /* margin: 0 0 15px 0; */
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f9f9f9;
}

/* Expanded state for answer */
.faq-answer.open {
  border: 1px solid #bcbcbc;
  max-height: 500px;
  padding: 15px;
  margin: 5px 10px 10px 10px;
}

 .faq-question[aria-expanded="true"] {
            color: #D95612;
        }

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(90deg);
            color: #D95612;

}

.faq-list {
  padding: 30px;
  /* max-height: 380px; */
  overflow: hidden;
  transition: max-height 1s ease;
}

.faq-list.active {
  /* max-height: 2000px; */
}


.justify-center {
  justify-content: center;
}

.product-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  /* equivalent to top: 0; right: 0; bottom: 0; left: 0; */
  /* background-image: linear-gradient(to top right, rgb(0 0 0 / 50%), hsl(297deg 100% 65.04% / 50%)); */
  background-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), hsl(0deg 0% 0% / 30%));
  opacity: 0.7;
  transition: opacity 300ms;
}

/* For hover effect when parent has class "group" and is hovered */
.group:hover .cat-overlay {
  opacity: 0.8;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.brand {
  width: 150px;
}

.brands a {
  background-color: #fff;
}

.brands a h3 {
  text-align: center;
  font-size: 14px;
  color: #000;
}

.brands img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.top-video {
  margin-top: 80px;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 80vh;
  object-position: center;
  object-fit: cover;
}

.hero-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7aa4ce;
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  /* Full rounded */

  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.offer-marquee {
  /* position: sticky; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  width: 100%;
  /* padding: 0; */
  /* margin: 0; */
  z-index: 9999;
  /* z-index: 10000; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.offer-marquee p {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  color: #7aa4ce;
  background-color: rgb(255, 255, 255);
  font-weight: 500;
}

marquee {
  background-color: rgb(255, 255, 255);
  color: #7aa4ce;
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

.top-video .title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #83508b;
  font-size: 18px;
  background-color: #ffffff;
  text-align: center;
  padding: 5px 20px;
  border-radius: 9999px;
  font-weight: bold;
  z-index: 10;
}

.popup {
  position: fixed;
  /* top: 0; */
  left: 0;
  bottom: 0;
  width: fit-content;
  /* height: ; */
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* display: none; */

}

.popup-content {
  text-align: center;
}

.popup-content img {
  width: 250px;
  /* margin: 0 auto; */
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.x {
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}

.x:hover {
  background-color: #000;
  color: #fff;
}

.cat.h-80 {
  height: 410px !important;
}

@media (max-width: 768px) {
  .top-video .title {
    font-size: 16px;
    width: 90%;
  }

  .cat.h-80 {
    height: 500px !important;
  }
}

.product-card {
  max-width: 360px;
}



#cart-count {
  position: absolute;
  top: 2px;
  right: 0px;
  background-color: #FF6347;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 0px 4.8px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  #mobile-menu-button {
    display: none;
  }
}

.new-nav {
  padding: 10px 0;
  background-color: #34a6e6;
  /* position: fixed; */
  position: sticky;
  width: 100%;
  left: 0;
  right: 0;
  top: 40px;
  z-index: 9999;
}

.new-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.new-nav .brand {
  width: 260px;
}

.new-nav .brand img {
  width: 260px;
  max-width: none;
  height: auto;
}

.hamburger .lines {}

.hamburger .cross {
  display: none;
}

.new-nav.active .lines {
  display: none;
}

.new-nav.active .cross {
  display: block;
}

.new-nav .menu {
  position: fixed;
  /* top: 67px; */
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  /* height: calc(100vh - 67px); */
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  background-color: #4ea049;
  background-color: #202141;
  background-color: #001345;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px;
  padding-left: 50px;
  z-index: 8888;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  transform: translateX(-150%);
  transition: transform 0.3s ease-in-out;
}

.new-nav .cross-div {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.new-nav .cross-div .cross {
  margin-left: auto;
}

.new-nav.active .menu {
  transform: translateX(0);
}

.menu .links {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  transition: all ease 0.5s;
}

.menu .links:hover {
  color: #34a6e6;
}

.hamburger {
  cursor: pointer;
  border-radius: 10px;
}

.hamburger:hover .lines svg {
  stroke: #000000;
  /* background-color: #000; */
}

.lucide:hover {
  stroke: #000000;
  /* background-color: #000; */
}

.sub-menu {
  background-color: #DAF0F7;
  padding: 10px 0px;
  gap: 20px;
  position: sticky;
  top: 105px;
  z-index: 1200;
}

.sub-menu .links {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all ease 0.5s;
}

.sub-menu .links:hover {
  color: #34a6e6;
}

.sub-menu .flex {
  gap: 20px;
}



.video-product {
  width: 100%;
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.video-product .thumb-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 20px;
}

.video-product .thumb-video .video {
  display: none;
}

.video-product .thumb-video .video video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.video-product .thumb-video .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.video-product .thumb-video .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-product .thumb-video .thumbnail button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.video-product .thumb-video .thumbnail button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.video-product .thumb-video .thumbnail button svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.video-product .prod {
  position: absolute;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 20px;
  padding: 10px;
}

.video-product .prod a {
  display: flex;
  position: relative;

}

.video-product .prod a img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 10px;
}

.video-product .prod a .det {
  flex: 1;
}

.video-product .prod a .det h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.video-product .prod a .det p {
  font-size: 16px;
  font-weight: 500;
}

.video-product .prod a .det p span {
  text-decoration: line-through;
  color: rgb(43, 43, 43);
  /* margin-left: 5px; */
  font-size: 12px;
  font-weight: 400;
}

.video-product .prod a button {
  background-color: #7aa4ce;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 10px;
  position: absolute;
  /* top: 50%; */
  right: 0;
  bottom: 0;
  /* transform: translateY(-50%); */

}

.video-product .prod a button:hover {
  background-color: #304080;
}

.video-product .prod a button svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.expand-button {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
}

.expand-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.expand-button svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.slick-blog-card {
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2)
}

.slick-blog-card img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.slick-blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.slick-blog-card p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5;
}

.slick-blog-card p span {
  display: block;
  color: #7aa4ce;
  width: fit-content;
  padding: 2px 10px;
  border: 1px solid #7aa4ce;
  border-radius: 20px;
  margin-top: 5px;
  transition: all ease 0.5s;
}

.slick-blog-card:hover p span {
  background-color: #7aa4ce;
  color: #000;
}


.vs-others {
  background: #f8f2ea;
  padding: 36px 20px;
  border-radius: 20px;
  font-family: 'Inter', Arial, sans-serif;
  /* max-width: 950px; */
  margin: 0 auto;
}

.vs-others__row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #f2e8dc;
  padding: 20px 0;
}

.vs-others__row--header {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.22rem;
  color: #111;
  align-items: center;
  padding-top: 0;
  padding-bottom: 18px;
}

.vs-others__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vs-others__col--desc {
  flex: 2.5;
}

.vs-others__col--brand,
.vs-others__col--other {
  align-items: center;
  justify-content: center;
  flex: 0.85;
  display: flex;
  text-align: center;
}


.vs-others__title {
  color: #7aa4ce;
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 2px;
  line-height: 1.15;
}

.vs-others__desc {
  color: #222;
  font-size: 1.03rem;
  font-weight: 400;
  margin-top: 2px;
  opacity: 0.88;
  line-height: 1.35;
}

.ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: background 0.18s;
}

.ico--tick {
  background: #7aa4ce;
}

.ico--tick svg {
  stroke: #fff;
  width: 30px;
  height: 30px;
}

.ico--cross {
  background: #d2d2d2;
}

.ico--cross svg {
  stroke: #fff;
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .vs-others {
    padding-left: 0;
    padding-right: 0;
  }

  .vs-others__row {
    padding: 16px 0;
  }

  .vs-others__title {
    font-size: 1rem;
  }

  .vs-others__desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .vs-others {
    padding: 8px 0 12px 0;
    border-radius: 10px;
  }

  .vs-others__row {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    border-bottom: 1px solid #f2e8dc;
  }

  .vs-others__row--header {
    flex-direction: row;
    font-size: 1rem;
    padding-bottom: 10px;
  }

  .vs-others__col {
    margin-bottom: 6px;
  }

  .vs-others__col--brand,
  .vs-others__col--other {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .ico {
    margin: 0;
    width: 38px;
    height: 38px;
  }

  .ico--tick svg,
  .ico--cross svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width:1200px) {

  .new-nav .container{
    max-width: 1000px;
  }
  
  
  
}

.new-container-custom{
      max-width: calc(100% - 20px);
      margin: 0 auto;
      padding: 0 20px;
    }

    body{
      background-color: #EDEDED !important;
    }
    .bg-main-cat{
      background-color: #E1E1E2;
    }

    .main-color{
      color: #D95612 !important;
    }

    .bg-main{
      background-color: #D95612 !important;
    }

    .slick-testimonials .slick-track {
          padding: 60px 0;
        }

        .slick-testimonials .slick-slide {
          margin: 0 0px;
          padding: 0;
        }

        .slick-videos .slick-slide {
          margin: 0 20px;
        }

        .slick-videos-reviews .slick-slide {
          margin: 0 20px;
        }


        .slick-testimonials .slick-active .slider-item {
          /* transform: scale(1.5); */
          /* border: 2px solid #000; */
        }

        .slick-testimonials .slick-slide:hover .slider-item {
          /* transform: scale(1.25); */
          /* transition: transform 0.3s; */
        }

        .slick-testimonials .slick-track {
          display: flex;
          align-items: center;
        }

        .slick-blog-card {
          transition: transform 0.3s;
        }

        .slick-blogs .slick-slide {
          margin: 0 20px;

        }

        .slick-blogs .slick-slide:hover .slick-blog-card {
          transform: scale(1.15);
          transition: transform 0.3s;
        }

        .slick-blogs .slick-track {
          padding: 60px 0;
        }

        .slick-videos-reviews .slick-track {
          padding: 30px 0;
        }

        .slick-videos-reviews .video-product {
          transition: all 0.3s ease;
        }

        .slick-videos-reviews .slick-slide:hover .video-product {
          transform: scale(1.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .slick-videos .slick-track {
          padding: 30px 0;
        }

        .slick-videos .video-product {
          /* border-radius: 20px; */
          transition: all 0.3s ease;
          /* box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.25); */
        }

        .slick-videos .slick-slide:hover .video-product {
          transform: scale(1.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          transition: transform 0.3s ease;
        }

        .video-product {
          border-radius: 20px;
          /* transition: transform 0.3s ease; */
          box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.25);
        }