html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.product-page,
.single-product,
.product-content,
.product-description,
.product-short-description {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.visit-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 48px;

    overflow: hidden;

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;

    color: #00818A;
    background: transparent;

    border: 1px solid #F37835;
    border-radius: 999px;
    cursor: pointer;
}

/* Normal content */
.visit-now__text {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #00818A;
    
    transform: translateX(0);
    transition: transform 0.35s ease;
}

/* Hover content */
.visit-now__hover {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #F37835;

    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

/* Hover background comes in */
.visit-now:hover .visit-now__hover {
    transform: translateX(0);
}

/* Original text goes out */
.visit-now:hover .visit-now__text {
    transform: translateX(100%);
}

/* Arrow */
.visit-now__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
  :root {
    --ink: #12203f;
    --ink-soft: #5b6b8c;
    --line: #e6e9f2;
    --panel: #f5f7fb;
    --blue: #3a5fe0;
    --blue-deep: #1f3aa8;
    --wave-blue: #7f96e8;
    --green: #0f8a5f;
    --red: #e0392f;
    --gold: #e0a92f;
    --bg: #ffffff;
    --radius: 14px;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }
  .mobile-title-section{
      display: none;
  }
  .desktop-title-section{
    display: block;
  }

  .product-description {
    margin-top: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
  }

  .product-description p {
    margin-bottom: 12px;
  }

  .product-description h2,
  .product-description h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .wrap {
    /* max-width:1240px; */
    margin: 0 auto;
    padding: 28px 60px 80px;
  }

  .breadcrumb {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .breadcrumb span:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #c7cee0;
  }

  .breadcrumb a {
    color: var(--ink-soft);
    text-decoration: none;
  }

  .breadcrumb a:hover {
    color: var(--blue);
  }

  .layout {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns:minmax(380px,600px) 1fr;
    gap: 56px;
    align-items: start;
  }

  /* ---------- GALLERY ---------- */
  .gallery {
    position: sticky;
    top: 24px;
  }

  .stage {
    position: relative;
    border-radius: var(--radius);
    background-color: #fff;
    border: 1px solid var(--line);
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: default;
  }

  .stage .frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: opacity .25s ease;
  }

  .stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform .06s linear;
  }

  .stage.zoomed img {
    transform: scale(2.3);
  }

  .stage-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
  }

  .stage-nav-left {
    left: 0;
    cursor: w-resize;
  }

  .stage-nav-right {
    right: 0;
    cursor: e-resize;
  }

  .zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 11px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .85);
    padding: 4px 9px;
    border-radius: 20px;
    border: 1px solid var(--line);
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
  }

  .stage:hover .zoom-hint {
    opacity: 1;
  }

  .thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    align-items: center;
  }

  .thumbs .arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    cursor: pointer;
    flex: 0 0 auto;
    background: #fff;
    font-size: 14px;
    user-select: none;
  }

  .thumbs .arrow:hover {
    border-color: var(--blue);
    color: var(--blue);
  }

  .thumb-track {
    overflow: hidden;
    flex: 1;
    position: relative;
  }

  .thumb-track-inner {
    display: flex;
    gap: 10px;
    transition: transform .3s ease;
    will-change: transform;
  }

  .thumb {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    /* background: var(--panel); */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color .15s ease, transform .15s ease;
    overflow: hidden;
  }

  .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .thumb.active {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(58, 95, 224, 0.15);
  }


  /* ---------- DETAILS ---------- */
  .release-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9f7f0;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .release-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
  }

  h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }

  .store-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .store-link:hover {
    text-decoration: underline;
  }

  hr.div {
    border: none;
    border-top: 1px solid var(--line);
    margin: 22px 0;
  }

  .opt-row {
    display: flex;
    /* grid-template-columns:130px 1fr; */
    align-items: center;
    margin-bottom: 18px;
    flex-direction: column;
  }

  .opt-label {
    font-size: 16px;
    color: var(--ink-soft);
    font-weight: 600;
    margin: 10px 0;
  }

  .opt-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* ---------- Variant cards ---------- */
  .variant-row {
    margin-bottom: 22px;
  }

  .variant-label {
    font-size: 16px;
    color: var(--ink-soft);
    font-weight: 600;
    margin: 15px 0 10px;
  }

  .variant-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .variant-card {
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 10px 18px;
    cursor: pointer;
    text-align: left;
    transition: all .15s ease;
    min-width: 150px;
  }

  .variant-card:hover {
    border-color: var(--blue);
  }

  .variant-card.selected {
    border-color: var(--blue);
    background: #eef2fe;
    box-shadow: 0 0 0 1px var(--blue);
  }

  .variant-card.disabled {
    opacity: .4;
    cursor: not-allowed;
  }

  .variant-spec {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
  }

  .variant-price {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 2px;
  }

  .variant-price .strike {
    text-decoration: line-through;
    color: #b3bad0;
    margin-left: 5px;
  }

  /* ---------- Key Features ---------- */
  .features {
    margin-top: 26px;
  }

  .features h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 12px;
  }

  .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-list li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink);
    padding-left: 16px;
    position: relative;
  }

  .feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
  }

  .feature-list li b {
    font-weight: 700;
    color: var(--ink);
  }

  .feature-list.collapsed li:nth-child(n+5) {
    display: none;
  }

  .show-toggle {
    display: inline-block;
    margin-top: 12px;
    color: var(--blue);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
  }

  .show-toggle:hover {
    text-decoration: underline;
  }

  .warranty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--ink-soft);
  }

  .warranty-row .badge-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .warranty-row b {
    display: block;
    color: var(--ink);
    font-size: 14px;
  }

  .swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px var(--line) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    transition: box-shadow .15s ease, transform .15s ease;
  }

  .swatch.selected {
    box-shadow: 0 0 0 2px var(--blue);
    transform: scale(1.06);
  }

  .swatch.disabled {
    opacity: .35;
    cursor: not-allowed;
  }

  .swatch .fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .color-name {
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 8px;
  }

  .price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }

  .brand-price {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--ink-soft);
  }

  .price-now {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 800;
  }

  .price-mrp {
    font-size: 16px;
    color: #9aa4bb;
    text-decoration: line-through;
  }

  .off-badge {
    background: #00818A;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
  }

  .taxes {
    font-size: 12.5px;
    color: var(--ink-soft);
  }

  .emi-line {
    font-size: 14px;
    margin: 14px 0 4px;
  }

  .emi-line a {
    color: var(--blue);
    text-decoration: underline;
    font-weight: 600;
  }

  .points-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 18px;
  }

  .stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }

  .in-stock {
    color: var(--green);
    font-weight: 700;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .out-of-stock {
    color: var(--red);
    font-weight: 700;
    font-size: 14.5px;
  }

  .delivery {
    font-size: 13.5px;
    color: var(--ink-soft);
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color .15s ease, background .15s ease;
  }

  .icon-btn:hover {
    border-color: var(--red);
  }

  .icon-btn.liked svg {
    fill: var(--red);
    stroke: var(--red);
  }

  .icon-btn.is-loading {
    opacity: .55;
    pointer-events: none;
  }

  .qty {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 0 14px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
  }

  .qty select {
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    cursor: pointer;
  }

  .cta-main {
    /* flex:1; */
    height: 48px;
    border: none;
    border-radius: 24px;
    background: #F37835;
    padding: 0 18px;
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
  }

  .cta-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 138, 95, 0.3);
  }

  .cta-main:active {
    transform: translateY(0);
  }

  .cta-main:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .deals-strip {
    margin-top: 22px;
    background: #eef8f2;
    border: 1px solid #cdeadb;
    border-radius: 12px;
    padding: 13px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
  }

  .deals-strip a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .deals-strip a:hover {
    text-decoration: underline;
  }

  @media (max-width:820px) {
    .layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .gallery {
      position: static;
    }
  }
  /* =========================================================
   RELATED PRODUCTS
========================================================= */

.related-products-section {
    margin-top: 80px;
    padding-top: 55px;
    border-top: 1px solid var(--line);
}

.related-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.related-eyebrow {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--blue);
}

.related-products-header h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--ink);
}

.related-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.related-view-all span {
    font-size: 18px;
    transition: transform .2s ease;
}

.related-view-all:hover span {
    transform: translateX(4px);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/*
 * Prevent the existing product-card from becoming
 * too wide inside the related-products section.
 */
.related-products-grid > * {
    min-width: 0;
    width: 100%;
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {

    .wrap {
        padding-left: 35px;
        padding-right: 35px;
    }

    .layout {
        gap: 35px;
    }

    .related-products-grid {
        gap: 16px;
    }

}


/* =========================================================
   1024px
========================================================= */

@media (max-width: 1024px) {

    .wrap {
        padding-left: 28px;
        padding-right: 28px;
    }

    .layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px;
    }

    .related-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .related-products-header h2 {
        font-size: 25px;
    }

}


/* =========================================================
   991px
========================================================= */

@media (max-width: 991px) {

    .wrap {
        padding: 24px 22px 60px;
    }

    .layout {
        /* grid-template-columns: 1fr; */
        gap: 35px;
    }

    .gallery {
        position: static;
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .details {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .stage {
        width: 100%;
    }

    .related-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

}


/* =========================================================
   767px
========================================================= */

@media (max-width: 767px) {

    .wrap {
        padding: 20px 16px 50px;
    }

    .mobile-title-section{
      display: block;
    }
    .desktop-title-section{
      display: none;
    }

    .breadcrumb {
        margin-bottom: 16px;
        font-size: 12px;
    }

.layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
}

    .gallery {
        max-width: 100%;
    }

    .stage {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .stage img {
        width: 82%;
        height: 82%;
    }

    .zoom-hint {
        display: none;
    }

    .thumbs {
        gap: 7px;
        margin-top: 10px;
    }

    .thumb {
        width: 64px;
        height: 64px;
        border-radius: 8px;
    }

    .thumbs .arrow {
        width: 32px;
        height: 32px;
    }

    h1 {
        font-size: 23px;
        line-height: 1.3;
    }

    .product-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .variant-grid {
        gap: 8px;
    }

    .variant-card {
        min-width: 0;
        padding: 9px 13px;
    }

    .opt-values {
        gap: 14px;
    }

    .price-now {
        font-size: 27px;
    }

    .price-mrp {
        font-size: 14px;
    }

    .cta-row {
        width: 100%;
        gap: 8px;
    }

    .cta-main {
        flex: 1;
        min-width: 0;
        padding: 0 14px;
        font-size: 14px;
    }

    .related-products-section {
        margin-top: 55px;
        padding-top: 40px;
    }

    .related-products-header {
        align-items: center;
        margin-bottom: 20px;
    }

    .related-products-header h2 {
        font-size: 23px;
    }

    .related-eyebrow {
        font-size: 10px;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

}


/* =========================================================
   424px
========================================================= */

@media (max-width: 424px) {

    .wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .layout {
        gap: 22px;
    }

    h1 {
        font-size: 21px;
    }

    .stage {
        border-radius: 10px;
    }

    .thumb {
        width: 58px;
        height: 58px;
    }

    .thumbs {
        gap: 5px;
    }

    .thumbs .arrow {
        width: 29px;
        height: 29px;
    }

    .variant-grid {
        width: 100%;
    }

    .variant-card {
        width: 100%;
    }

    .price-block {
        gap: 8px;
    }

    .price-now {
        font-size: 25px;
    }

    .cta-row {
        flex-wrap: nowrap;
    }

    .icon-btn,
    .wishlist-btn {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .cta-main {
        height: 44px;
        border-radius: 22px;
        font-size: 13px;
    }

    .related-products-section {
        margin-top: 45px;
        padding-top: 32px;
    }

    .related-products-header {
        align-items: flex-start;
    }

    .related-products-header h2 {
        font-size: 21px;
    }

    .related-view-all {
        font-size: 12px;
    }

    .related-products-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 9px;
    }

}