/** Shopify CDN: Minification failed

Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:feature-strip (INDEX:20) */
.feature-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: {{ section.settings.bg_color }};
  padding: 30px 0; 
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* width: 24%; */
}

.feature-item img {
  width: 48px;
  height: 48px;
}

.feature-item span {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color:#000000;
}

/* Tablet */
@media (max-width: 768px) {
  .feature-item {
    width: 48%;
    margin-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .feature-item span {
    font-size: 15px;
    line-height: 25px;
  }
}
/* END_SECTION:feature-strip */

/* START_SECTION:new-arrivals-slider (INDEX:50) */
.nw-arrivals {
  padding: 100px 0 0;
}

.nw-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.nw-slider-wrapper {
  position: relative;
  padding-bottom: 50px; 
}

/* Slick Slider specific classes */
.nw-slider .slick-track {
  display: flex !important;
}

.nw-card {
  background: #fff;
  padding: 15px;
  margin: 15px 10px;
  position: relative;
  box-shadow: 0px 4px 24px 0px #00000026;
  height: auto;
}

.nw-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #B50000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 4px 8px;
  z-index: 1;
  line-height: 14px;;
}

.nw-img img {
  width: 100%;
  height: 313px;
  object-fit: contain; 
}
.nw-slider-wrapper button {
    top: 93%;
}
.box-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.slick-dots{
  display: none !important;
}
.nw-name {
  font-size: 18px;
  /* line-height: 1.4; */
  color: #000000;
  font-weight: 600;
  max-width: 55%;
  /* Title Limit Fix */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-price {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.nw-old {
  text-decoration: line-through;
  font-size: 14px;
  color: #777777;
}

.nw-new {
  font-weight: 700;
  color: #104682;
  font-size: 24px;
}

.star-flex {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

.nw-btn {
  width: 100%;
  padding: 12px;
  color: #104682;
  margin-top: 18px;
  cursor: pointer;
  border: 1px solid #777777;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.nw-btn:hover {
  background-color: #104682 !important;
  color: #ffffff !important;
}

.nw-btn:hover span { color: #ffffff !important; }
.nw-btn:hover img { filter: brightness(0) invert(1); }

/* Navigation Buttons Position */
.nw-slider-nav {
  position: absolute;
  top: -60px; /* Title ke level par ya slider ke upar */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nw-slider-prev { right: 60px; }
.nw-slider-next { right: 10px; }

/* Slick Dots Styling */
.slick-dots {
  bottom: 0;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #104682;
}
.new-arrivals h1{
  font-size: var(--h2) !important;
    font-weight: 600 !important;
    color: #000000 !important;
    /* line-height: 40px !important; */
    position: relative;
}
.new-arrivals h1::after{
content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 235px;
    height: 2px;
    background: linear-gradient(to right, rgba(16, 70, 130, 0.1) 0%, rgba(16, 70, 130, 1) 50%, rgba(16, 70, 130, 0.1) 100%);
    }
/* END_SECTION:new-arrivals-slider */

/* START_SECTION:video-gallery-slider (INDEX:63) */
.video-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 0px 20px 0px;
  -webkit-overflow-scrolling: touch;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  width: 280px;
  position: relative;
  cursor: pointer;
}

.video-img-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  border-radius: 12px;
  overflow: hidden;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .bg-img {
  transform: scale(1.1);
}

.play-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.play-btn-img {
  width: 80px; /* Figma Play Button Size */
  height: 80px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.video-card:hover .play-btn-img {
  transform: scale(1.2);
}

/* Desktop par grid ko center karne ke liye agar cards kam hain */
@media (min-width: 1200px) {
  .video-grid {
    justify-content: start;
    overflow-x: hidden;
    padding: 0 !important;
  }

}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-card {
    width: 240px; /* Mobile pe thoda chota */
  }
  .video-img-wrapper {
    height: 400px;
  }
  .play-btn-img {
    width: 60px;
    height: 60px;
  }
}
/* END_SECTION:video-gallery-slider */