/** Shopify CDN: Minification failed

Line 1805:29 Unexpected "+1"

**/
.login-product-section{
    padding:30px 0;
    filter: drop-shadow(0 0px 7px rgba(0, 0, 0, 0.12));
}

.login-product-wrapper{
    display:grid;
    grid-template-columns:60% 40%;
    gap:60px;
    align-items:start;
}

/*=========================
Product Info
==========================*/

.login-product-info{

    padding-top:70px;

}

.login-product-category{

    font-size:15px;
    color:#9b9b9b;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:10px;

}

.login-product-title{
    font-size:34px;
    line-height:1.2;
    font-weight:700;
    color:#4A4A4A;
    margin:0;
}

.login-product-meta{

    display:flex;
    align-items:center;
    gap:18px;

    margin-top:18px;

    flex-wrap:wrap;

    font-size:14px;

}

.dot{

    width:6px;
    height:6px;

    border-radius:50%;

    display:inline-block;

    margin-right:6px;

}

.green{

    background:#59c33c;

}

.red{

    background:#ff4242;

}

.login-badge{

    background:#000;

    color:#fff100;

    padding:4px 10px;

    border-radius:4px;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

}

.login-feature-list{

    display:flex;
    gap:14px;

    margin-top:22px;

    flex-wrap:wrap;

}

.login-feature-chip{

    border:1px solid #d8d8d8;

    padding:0px 18px;

    font-size:15px;

    font-weight:600;

    background:#fff;

}

.login-price-wrap{

    display:flex;
    align-items:center;

    gap:14px;

    margin-top:42px;

}

.login-sale-price{
    font-size:24px;
    font-weight:700;
}

.login-compare-price{

    color:#b2b2b2;

    text-decoration:line-through;

    font-size:16px;

}

/*==========================
Product Gallery
==========================*/

.login-gallery{
    width:100%;
}

.login-gallery-main {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
}

.login-gallery-main img{
    width: 80%;
    height: 100%;
    object-fit: contain;
    transition: .3s;
}

.login-gallery-thumbs {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
    padding: 5px 0;
}

.login-thumb{

    width:90px;
    height:90px;

    /* border:1px solid #e6e6e6; */

    /* border-radius:16px; */

    cursor:pointer;

    transition:.3s;

    overflow:hidden;

    /* background:#fff; */

    display:flex;
    justify-content:center;
    align-items:center;
}

.login-thumb img{

    width:100%;
    height:100%;

    object-fit:contain;
}

/* .login-thumb.active{

    border:2px solid #000;
} */



/* Divider */

.login-divider{

    border:none;

    border-top:1px solid #E8E8E8;

    margin:12px 0;

}

/* Purchase Row */

.login-purchase-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Labels */

.login-label{

    font-size:16px;

    color:#555;

    margin-right:12px;

}

/* Color */

.login-color-block{

    display:flex;

    align-items:center;

}

.login-color-list{

    display:flex;

    gap:10px;

}

.login-color-item{

    cursor:pointer;

}

.login-color-item input{

    display:none;

}

.login-color-circle{

    width:26px;

    height:26px;

    border-radius:50%;

    border:2px solid #fff;

    outline:1px solid #ddd;

    display:block;

}

.login-color-item input:checked + .login-color-circle{

    outline:2px solid #000;

}

/* Quantity */

.login-qty-block{

    display:flex;

    align-items:center;

}

.login-qty{

    display:flex;

    /* border:1px solid #ddd; */

}

.login-qty button{

    width:40px;

    height:40px;

    background:#fff;

    border:none;

    cursor:pointer;

}

.login-qty input{

    width:50px;

    text-align:center;

    border:none;

    outline:none;

}

/* Buttons */

.login-buttons{

    display:flex;

    gap:18px;

    margin-top: 27px;

}

.login-buy-now {
    height: 40px;
    width: 30%;
    border: none;
    border-radius: 8px;
    background: black;
    cursor: pointer;
    font-weight: 600;
    color: white;

    position: relative;
    overflow: hidden;
    z-index: 1;
}


/* Hover Circle Effect */
.login-buy-now::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    height: 40px;
    width: 30%;
    border: none;
    border-radius: 8px;
    color: black;

    background: #fff100;

    border-radius: 50%;

    transform: translate(-50%, -50%) scale(0);

    transition: transform .8s cubic-bezier(.25, 1, .5, 1);

    z-index: -1;
}

.login-buy-now:hover {
    color: #000;
}

.login-buy-now:hover::before {
    transform: translate(-50%, -50%) scale(7);
    }

.login-add-cart {
    width: 30%;
    height: 40px;

    border: 1px solid #d8d8d8;
    border-radius: 8px;

    background: #fff;
    color: #000;

    cursor: pointer;
    font-weight: 600;

    position: relative;
    overflow: hidden;
    z-index: 1;

    transition: color .3s ease, border-color .3s ease;
}


/* Hover Background */
.login-add-cart::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 60px;
    height: 60px;

    background: #000;

    border-radius: 50%;

    transform: translate(-50%, -50%) scale(0);

    transition: transform .8s cubic-bezier(.25, 1, .5, 1);

    z-index: -1;
}

/* Hover */
.login-add-cart:hover {
    color: #fff;
    border-color: #000;
}

.login-add-cart:hover::before {
    transform: translate(-50%, -50%) scale(8);
}


.login-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 11px;
    row-gap: 11px;
    column-gap: 11px;
}


.page-width-product{

background-color: #ffffffff;
    padding: 37px 11rem;
    margin: 0 27px;
    border-radius: 25px;
    /* clip-path: polygon(0 0, 15% 0, 19% 43px, 81% 43px, 85% 0, 100% 0, 100% 100%, 0 100%); */
    clip-path: url(#loginHeroClip);
   
}
/* ==========================
Variants
========================== */

.login-variant-wrapper{
    margin-top:20px;
}

.login-option-group{
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.login-option-title{
    font-size:16px;
    font-weight:600;
    /* margin-bottom:12px; */
}

.login-option-values{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* Pills */

.login-pill input{
    display:none;
}

.login-pill span{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:72px;

    height:42px;

    padding:0 18px;

    border:1px solid #ddd;

    border-radius:100px;

    cursor:pointer;

    transition:.25s;
}

.login-pill input:checked + span{

    background:#111;

    color:#fff;

    border-color:#111;

}

/* Swatches */

.login-color-item input{

    display:none;

}

.login-color-circle{

    width:20px;
    height:20px;

    border-radius:50%;

    border:2px solid white;

    outline:1px solid #ddd;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.25s;

    cursor:pointer;

}

.login-color-circle img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.login-color-item input:checked + .login-color-circle{

    outline:2px solid #000;

    transform:scale(1.08);

}


/* Thumbnail Slider Fixes */


.login-gallery-thumbs .loginThumbsSwiper,
.loginThumbsSwiper {
    width: 100% !important;
    overflow: hidden !important;
    padding: 5px 0 !important;
    position: relative;
}

.login-gallery-thumbs .swiper-wrapper,
.loginThumbsSwiper .swiper-wrapper {
    display: flex !important;
    align-items: center !important;
    box-sizing: content-box !important;
}

.login-gallery-thumbs .swiper-slide.login-thumb,
.loginThumbsSwiper .swiper-slide {
    flex: 0 0 84px !important;
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.login-gallery-thumbs .swiper-slide.login-thumb img,
.loginThumbsSwiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Active or Hover State */
.login-gallery-thumbs .swiper-slide.login-thumb.active,
.login-gallery-thumbs .swiper-slide.login-thumb:hover,
.loginThumbsSwiper .swiper-slide.swiper-slide-thumb-active {
    border-color: #111 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-thumb{

    width:90px !important;
    height:90px;

    /* border:1px solid #E5E5E5; */

    /* border-radius:14px; */

    overflow:hidden;

    cursor:pointer;

    transition:.3s;

}

/* .login-thumb.active{

    border:2px solid #111;

} */

.login-thumb img{

    width:100%;
    height:100%;

    object-fit:cover;

}


.login-gallery-thumbs{
    overflow:hidden;
}

.login-thumb{
    cursor:pointer;
}




/* ==========================
   1. Price & Review Layout Grid
   ========================== */
.login-price-review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 1200px) {
    .login-price-review-grid {
        /* Custom desktop adjustments if required */
    }
}

/* ==========================
   2. Bottom Specs Bar Styling
   ========================== */
.login-bottom-specs-bar {
    margin-top: 40px;
    border-top: 1px solid #E8E8E8;
    padding-top: 25px;
}

.login-bottom-specs-bar .specs-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
    background: transparent !important;
    padding: 0 20px !important;
    box-shadow: none;
    clip-path: none !important;
}

/* ==========================
   3. Buy Now & Add to Cart Buttons
   ========================== */
.login-buttons {
    display: flex;
    gap: 18px;
    margin-top: 27px;
}

.login-buttons button {
    flex: 1;
    width: 100% !important;
}

/* ==========================
   4. Review Section Below Buttons
   ========================== */
.login-below-buttons-reviews {
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-reviews-slider-wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding-bottom: 10px; */
    flex-direction: row;
    flex-wrap: nowrap;
    scrollbar-width: none; /* Firefox */
}

.login-reviews-slider-wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.login-review-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
    flex: 0 0 275px; /* Har card ki fixed width taake carousel smoothly slide ho */
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
}

.verified-badge {
    color: #005dff;
    font-size: 11px;
    font-weight: 600;
}

.review-body-content {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin: 10px 0; */
}

.review-body-content img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
}

.review-product-info h4 {
    pause: none;
    font-size: 13px;
    margin: 0 0 2px 0;
    color: #111;
    font-weight: 700;
}

.review-stars {
    color: #fff100;
    font-size: 11px;
}

.rating-num {
    color: #888;
    margin-left: 3px;
}

.review-text {
    font-size: 12px;
    color: #444;
    margin: 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Sirf 2 lines show hon gi */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Aakhir mein ... aa jayega */
    word-break: break-word;
    line-height: 1.5;
    max-height: 3em; /* Line height ka double taake exact 2 lines banein */
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 6px;
}

/* Pagination Dots */
.login-review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    width: 100%;
}

.login-review-dots .dot-bullet {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-review-dots .dot-bullet.active {
    background: #000;
    width: 16px;
    border-radius: 4px;
}



.login-features-strip {
    width: 100%;
    background: #fcfcfc;
    /* border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc; */
    /* padding: 16px 0; */
    /* margin-top: 30px; */
    box-sizing: border-box;
    /* overflow: hidden; Yeh items ko container se bahar jaane par chupayega */
    position: relative;
}

.login-features-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 25s linear infinite; /* Continuous sliding animation */
}

/* Mouse hover par pause karna chahen toh ye line rakhein, warna hata sakte hain */
.login-features-strip:hover .login-features-track {
    animation-play-state: paused;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    padding: 0 30px;
}

.login-feature-item .feature-label {
    color: #777;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.login-feature-item .feature-val {
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-dot {
    color: #888;
    font-size: 16px;
}

/* Continuous Marquee Keyframes Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .login-features-track {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 25px;
        padding: 0 15px;
        scrollbar-width: none;
    }
    .login-features-track::-webkit-scrollbar {
        display: none;
    }
}


/* Animated Yellow & Black Gradient Divider */
.login-animated-divider {
    display: block !important;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #000000, #ffcc00, #000000, #ffcc00);
    background-size: 300% 100%;
    animation: gradientMove 4s linear infinite;
    margin: 20px 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}




/* ===========================
   Social Share Section Styling
   =========================== */

.login-share-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #E5E5E5;
}

.login-share-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.login-share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-share-icon:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-2px);
}




/* .product-sepec {
  background-color: #fff;
} */

/* Sticky Navigation Tabs Styling */
.product-info-tabs {
  position: relative;
}
.product-tab-nav {
  position: sticky;
  top: 20px;
  z-index: 999;
  display: inline-flex;
  background: #e5e5e5;
  padding: 6px;
  border-radius: 50px;
  list-style: none;
  /* margin: 20px auto; */
  left: 0;
  right: 0;
  width: max-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  gap: 20px;
}
.product-tab-nav li {
  margin: 0;
}
.product-tab-nav .tab-link {
  font-family: 'Mansfield-bold', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 2px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
  background: transparent;
}
.product-tab-nav .tab-link:hover {
  color: #000;
}

.product-tab-nav .tab-link.active {
  background: #000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Center alignment ke liye wrapper */
.product-info-tabs nav {
  text-align: center;
  width: 100%;
}

.tab-section-block {
    /* scroll-margin-top: 80px;
    padding: 5px 0 45px 0;
    border-bottom: 1px solid #eee; */
}

.collapsible-content-bg {
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.h2.section-heading {
    position: relative;
    font-size: 40px;
    color: #000;
    line-height: normal;
    font-weight: 800;
    padding-bottom: 0px;
    text-align: center;
    font-family: 'Mansfield-bold';
}
.section-description.rte {
    font-family: 'Mansfield';
    color: black;
    margin-bottom: 25px;
}
.accordion-blocks.faq-grid {
    align-items: baseline;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.collapsible-content-bg.bg-blur::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    backdrop-filter: blur(50px);
}
h2.h1.accordion-button {
    justify-content: flex-start !important;
    text-align: left !important;
}

.accordion-wrapper {
    z-index: 1;
    position: relative;
}
.accordion-wrapper.text-position-top {
    max-width: 93%;
    margin: 0 auto;
    padding: 22px 0;
}

.accordion-block {
    border-radius: 20px;
    background: rgba(255, 255, 255);
    transition: .5s ease;
    overflow: hidden;
    box-shadow: 0px 1px 8px #00000021;
}
.accordion-block + .accordion-block {
    margin-top: 3px;
}
.accordion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px 15px 25px;
}
.accordion-body {
    padding: 0 15px 15px 25px;
}
.accordion-button {
    font-size: 16px;
    padding-right: 10px;
    margin: 0 0 0 0;
    font-weight: 700;
    border: 0;
    padding-left: 0px !important;
}
.accordion-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-block;
    background: black;
    border-radius: 50px;
    position: relative;
    transition: .2s ease-in-out;
}
.accordion-icon:before {
    content: "";
    background: white;
    width: 12px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.accordion-icon:after {
    content: "";
    background: white;
    width: 2px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-block[open] .accordion-icon:after {
    opacity: 0;
}

.spec-overview-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
.spec-overview-text {
  text-align: center;
  margin-bottom: 40px;
}
.spec-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 30px;
}
.spec-table {
  width: 100%;
  border-top: 1px solid #e5e5e5;
}
.spec-row {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  gap: 25px;
}
.spec-left {
  flex: 1;
  max-width: 250px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}
.spec-right {
  flex: 2;
  font-size: 14px;
  line-height: 1.6;
}

.product-banner-image {
    width: 100%;
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.product-scroll-video-section {
  position: relative;
  height: 300vh;
  background: #000;
  overflow: hidden;
}
.product-scroll-video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-scroll-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .spec-row {
    flex-direction: column;
  }
  .spec-left {
    max-width: 100%;
    margin-bottom: 8px;
  }
  .product-tab-nav {
    gap: 15px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 9px;
    margin-top: 0px !important;
  }
  .accordion-blocks.faq-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-scroll-video-section {
    height: 220vh;
  }
}


/* Ultimate Horizontal Scroll & Blank Space Fix */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

*, *:before, *:after {
  box-sizing: border-box !important;
}

.product-sepec {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
  z-index: 99;
}

.product-info-tabs,
.product-tab-contents,
.tab-section-block,
.product-banner,
.spec-overview-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Ensure Banners and Videos never overflow */
.product-banner-image,
.product-scroll-video,
.product-scroll-video-section {
  width: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
}

/* Fix grid or flex containers causing breakout */
.accordion-blocks.faq-grid,
.spec-table {
  width: 100% !important;
  max-width: 100% !important;
}


/* Force tabs to be clickable and sit on top of everything */
.product-info-tabs {
  position: relative;
  z-index: 9999;
}

.product-tab-nav {
  position: sticky !important;
  top: 20px !important;
  z-index: 100000 !important;
  pointer-events: auto !important;
}

.product-tab-nav li {
  pointer-events: auto !important;
}

.product-tab-nav .tab-link {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 100001;
}

/* Ensure hover effect is explicitly forced */
.product-tab-nav .tab-link:hover {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.05);
}

/* Explicit active state styling */
.product-tab-nav .tab-link.active {
  background: #000 !important;
  color: #fff !important;
}



/* ===========================
   Product Specifications
=========================== */

.spec-overview-wrapper{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    padding:30px 0;
}

.spec-title{
    text-align: center !important;
    font-size: 34px !important;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 33px;
    line-height: 1.2;
}

.spec-table{
     width:100%;
    border-top:1px solid #d9d9d9;
}

.spec-row{
    display: grid;
    grid-template-columns: 73% 1fr;
    align-items: center;
    column-gap: 45px;
    min-height: 66px;
    border-bottom: 1px solid #d9d9d9;
}

.spec-left{
     display:flex;
    align-items:center;
    gap:16px;
    font-size:14px;
    font-weight:700;
    color:#111;
}

.spec-icon{
    width:24px;
    min-width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    object-fit:contain;
}

.spec-icon img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.spec-label{
    font-size:14px;
    font-weight:700;
    color:#111;
    line-height:1.3;
}

.spec-right{
    font-size:14px;
    line-height:1.7;
    color:#444;
}

/* ===========================
   Overview
=========================== */

.spec-overview-text{
    margin-top:70px !important;
}

.spec-overview-text .spec-row{
    display: flex;
    grid-template-columns: 320px 1fr;
    gap: 0px;
    border: none;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
}

.spec-overview-text .spec-left{
    display:block;
}

.spec-overview-text .spec-left h2{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.spec-overview-text .spec-right{
    text-align:left !important;
    color:#444;
    font-size:15px;
    line-height:1.9;
}

/* ===========================
   Mobile
=========================== */

@media(max-width:991px){

.spec-overview-wrapper{
    padding:50px 20px;
}

.spec-title{
    font-size:20px !important;
    margin-bottom:20px;
}
.spec-overview-text .spec-left h2 {
    font-size: 20px;
    
}

.spec-row{
    grid-template-columns:1fr;
    gap:12px;
    padding:18px 0;
    min-height:auto;
}

.spec-left{
    gap:12px;
}

.spec-right{
    padding-left:36px;
    font-size:14px;
}

.spec-overview-text .spec-row{
    grid-template-columns:1fr;
}

.spec-overview-text .spec-right{
    padding-left:0;
}

}


/* Login Judge.me Custom CSS */
/* Replace with your final customized version */

.jdgm-widget,
.jdgm-rev-widg,
#judgeme_product_reviews{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:28px;
  padding:48px 56px;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
  max-width:1320px;
  margin:0px auto;
}

.jdgm-rev-widg__title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin:0 0 30px;
}

.jdgm-row-stars{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-bottom:30px;
  border-bottom:1px solid #eee;
}

.jdgm-rev-widg__summary-stars .jdgm-star,
.jdgm-star{color:#f7c948!important;}

.jdgm-write-rev-link{
  display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 11px 18px !important;
    background: #000 !important;
    color: #fff !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    width: 100% !important;
    max-width: 176px !important;
}

.jdgm-row-media,
.jdgm-row-actions{
  margin:24px 0;
}

.jdgm-gallery{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.jdgm-gallery__thumbnail{
  width:88px;
  height:88px;
  object-fit:cover;
  border-radius:14px;
}

.jdgm-rev{
  padding:28px 0!important;
  border-top:1px solid #eee!important;
}

.jdgm-row-rating,
.jdgm-row-profile{
  margin-bottom:10px;
}

.jdgm-rev__author{font-weight:700;}
.jdgm-rev__title{font-size:20px;margin:8px 0;}
.jdgm-rev__body{line-height:1.8;color:#555;}
.jdgm-rev__pics{display:flex;gap:10px;flex-wrap:wrap;}
.jdgm-rev__pic-img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}

@media(max-width:768px){
 #judgeme_product_reviews{padding:24px;}
 .jdgm-row-stars{
   flex-direction:column;
   align-items:flex-start;
 }
 .jdgm-rev-widg__title{font-size:30px;}
}

span.jdgm-rev__rating {
    font-size: 1.2rem;
}

.jdgm-rev__pic-link {
    position: relative;
    display: inline-block;
    width: 72px !important;
    height: 65px !important;
    padding: 0;
    margin-right: 8px;
    border: 1px solid transparent;
    cursor: pointer;
}



/* ==========================================
   MOBILE RESPONSIVE FIX (Does not affect Desktop)
   ========================================== */
@media screen and (max-width: 768px) {
  
  /* Main Container Padding & Shape Fix */
  .page-width-product {
    padding: 20px 15px !important;
    margin: 0 10px !important;
    /* border-radius: 16px !important; */
    /* clip-path: polygon(0 0, 19% 0, 27% 26px, 72% 27px, 81% 0, 100% 0, 100% 100%, 0 100%) !important; */
clip-path: url(#loginHeroClipMobile) !important;  
}

  /* Stack Gallery and Info vertically */
  .login-product-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px !important;
  }

  .login-product-left,
  .login-product-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .login-product-info {
    padding-top: 10px !important;
  }

  /* Title sizing fix so letters don't break vertically */
  .login-product-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }

  /* Purchase row & options alignment */
  .login-purchase-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }

      .login-option-group {
        flex-direction: row;
        align-items: center;
        gap: 12px !important;
        display: flex;
        flex-wrap: nowrap;
    }

  /* Buttons side-by-side or stacked properly on mobile */
  .login-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .login-buttons button,
  .login-buy-now,
  .login-add-cart {
    width: 50% !important;
    flex: 1 !important;
    height: 36px !important;
  }

  /* Feature Strip / Marquee adjustments for mobile */
  .login-features-strip {
    overflow: hidden !important;
  }
  
  .login-features-track {
    display: flex !important;
    width: max-content !important;
  }

  .login-gallery-main {
    width: 100% !important;
    height: auto !important;
    min-height: 280px !important; /* Aap yahan height apne hisaab se adjust kar sakte hain */
    /* background: #f9f9f9; */
    border-radius: 12px;
    padding: 10px;
  }

  .login-gallery-main img {
    width: 111% !important;
    height: 100% !important;
    max-height: 350px !important;
    object-fit: contain !important;
  }

  /* Thumbnails spacing below main image */
  .login-gallery-thumbs {
    margin-top: 10px !important;
  }
  
  .login-gallery-thumbs .swiper-slide.login-thumb {
    flex: 0 0 65px !important;
    width: 65px !important;
    height: 65px !important;
    max-width: 65px !important;
  }

  .login-feature-chip {
    border: 1px solid #d8d8d8;
    padding: 0 18px;
    font-size: 9px !important;
    font-weight: 600;
    background: #fff;
}

.login-badge {
    font-size: 8px !important;
    
}
.login-product-meta {
    gap: 9px !important;
    margin-top: 7px !important;
    flex-wrap: wrap !important;
    font-size: 11px !important;
}

.login-price-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 14px !important;
}


.login-divider {
    margin: 4px 0 !important;
}

.login-product-section {
    filter: drop-shadow(0 0px 7px rgba(0, 0, 0, .12));
    padding-top: 19px !important;
}

.product-tab-nav .tab-link {
    font-size: 10px !important;
    padding: 0px 14px !important;
}
}

.spec-toggle-btn-wrap {
    display: none;
}
@media screen and (max-width: 768px) {
  /* Hide specs beyond the first 5 by default on mobile */
  .spec-table .spec-row:nth-n+1 { /* fallback */ }
  .spec-table .spec-row {
    display: none;
  }
  /* Show only first 5 rows */
  .spec-table .spec-row:nth-child(-n+5) {
    display: grid !important;
  }

  /* When expanded class is added, show all */
  .spec-table.expanded .spec-row {
    display: grid !important;
  }

  /* Read More / View Less Button Styling */
  .spec-toggle-btn-wrap {
    text-align: center;
    margin-top: 20px;
    display: block !important;
  }

  .spec-toggle-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .spec-toggle-btn:hover {
    background: #333;
  }
}


#jdgm-cart-drawer-source {
    display: none !important;
}

/* .login-trust-badges-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.login-badge-item img {
    width: 64px;
} */

.login-trust-badges-wrap {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* gap: 10px; */
    /* margin-top: 20px; */
    margin: 7px 0 0 -40px;
    /* padding: 12px 10px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eaeaea; */
    width: 100%;
    /* box-sizing: border-box; */
}

.login-badge-item {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    flex-direction: column;
}

.login-badge-item img {
    width: 60px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.login-badge-item span {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    line-height: 1.1;
    display: block;
    text-align: left;
}

.mobile-icon-show .login-trust-badges-wrap {
        gap: 6px;
        padding: 10px 6px;
        display: none;
    }

@media(max-width: 768px) {
    .login-trust-badges-wrap {
        gap: 6px;
        padding: 10px 6px;
        display: none;
    }
    .mobile-icon-show .login-trust-badges-wrap {
        gap: 6px;
        padding: 10px 6px;
        display: block;
        display: flex !important;
    justify-content: space-between;
    align-items: center;
    /* gap: 10px !important; */
    /* margin-top: 20px; */
    margin: 99px 0 0 -5px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    }
    
    .login-badge-item {
        gap: 5px;
    }
    .login-badge-item img {
        width: 50px;
        height: 36px;
    }
    .login-badge-item span {
        font-size: 11px;
        text-align: center;
    }


}


/* Base Styles (Desktop View) */
.corporate-deal-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #ffffff 0%, #fff7a17a 40%, #ffd700 100%);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
}

.corporate-deal-box .deal-text {
    font-weight: 700;
    font-size: 15px;
    color: #000000;
    line-height: 1.3;
}

.corporate-deal-box .click-here-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.corporate-deal-box .click-here-btn:hover {
    background-color: #222222;
}

/* Mobile Responsiveness (Small Screens <= 480px) */
@media (max-width: 480px) {
    .corporate-deal-box {
        padding: 5px 12px;
        gap: 8px;
    }

    .corporate-deal-box .deal-text {
        font-size: 13px;
    }

    .corporate-deal-box .click-here-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
}

/* Only Buy Now gets disabled style */
.login-buy-now.is-disabled,
.login-buy-now:disabled {
  background-color: #888888 !important;
  color: #ffffff !important;
  border-color: #888888 !important;
  cursor: not-allowed !important;
  opacity: 0.65;
  pointer-events: none;
}

/* Hard Fix for Swiper Negative Alignment */
.login-gallery-thumbs .swiper-wrapper,
.loginThumbsSwiper .swiper-wrapper {
  /* transform: translate3d(0px, 0px, 0px) !important; */
  max-width: 100% !important;
}

.login-gallery-thumbs .swiper-slide,
.loginThumbsSwiper .swiper-slide {
  margin-right: 12px !important;
  left: 0 !important;
}


/* Swiper Outer Box Containment */
.loginThumbsSwiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 6px 4px !important; /* Spacing taaki outer border na katey */
    box-sizing: border-box !important;
}

.loginThumbsSwiper .swiper-wrapper {
    display: flex !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.loginThumbsSwiper .swiper-slide {
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

/* Zero Lifestyle style Thumbnails */
.login-thumb {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 2px solid #e0e0e0 !important; /* Inactive border */
    border-radius: 12px !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease-in-out !important;
    overflow: hidden !important;
}

/* Box Sizing Box Fix: Border active hone par size nahi barhega */
.login-thumb.active {
    border-color: #000000 !important; /* Active Black Border */
}

.login-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Desktop Specific Layout Override Fix */
@media screen and (min-width: 768px) {
    .loginThumbsSwiper {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 6px 4px !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
    }

    .loginThumbsSwiper .swiper-wrapper {
        display: flex !important;
        flex-direction: row !important;
        transform: translate3d(0, 0, 0);
        margin-left: 0 !important;
        padding-left: 0 !important;
        box-sizing: border-box !important;
    }

    .loginThumbsSwiper .swiper-slide {
        box-sizing: border-box !important;
        height: auto !important;
    }

    .login-thumb {
        border: 2px solid #e0e0e0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .login-thumb.active {
        border-color: #000000 !important;
    }
}

/* Swiper Slide Hide Fix */
.login-thumb[style*="display: none"],
.login-thumb.swiper-slide-hidden {
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}