@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
    --theme-color: #38a191;
    --black: #111;
    --orange: #ff7a27;
    --white: #fff;
    --gray: #f7f7f7;
    --gray-text: #7b7b7b;
    --blue-light: #eef6ff;
    --rating: #ffa43c;
    --red: #e22222;
}
* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
section {
    overflow: hidden;
}
.h-40 {
    height: 40px;
}
.uniform {
    margin-bottom: 20px;
}
.form-select:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}
a {
    text-decoration: none;
    color: var(--black);
}
.accordion-button:focus {
    box-shadow: none;
}
/* Chrome, Edge, Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid var(--gray-text);
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    margin-right: 4px;
    position: relative;
    transition: all 0.2s ease;
}

/* Inner dot */
input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--theme-color);
    transform: scale(0);
    transition: transform 0.2s ease;
}

/* Checked state */
input[type="radio"]:checked::before {
    transform: scale(1);
}

/* Hover */
input[type="radio"]:hover {
    border-color: #002c6b;
}

/* Disabled */
input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* checkbox */
/* =========================
   Global Custom Checkbox
   ========================= */

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid var(--gray-text); /* your brand button color */
    border-radius: 4px;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    margin-right: 4px;
    position: relative;
    transition: all 0.2s ease;
}

/* Checked state */
input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    transition: transform 0.2s ease;
    background-color: var(--theme-color);
    border-radius: 2px;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* Hover */
input[type="checkbox"]:hover {
    border-color: #002c6b;
}

/* Disabled */
input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* checkbox */

/* header css start*/
.city-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}
nav a {
    font-weight: 600;
    font-size: 18px;
}
.searchForm {
    position: relative;
    border: 1px solid #d3d3d3;
    display: flex;
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
    max-width: 500px;
}
.searchForm input {
    border: none;
    width: 100%;
    border-radius: 0;
    height: 40px;
}
.srchCont .container {
    justify-content: space-between;
}
.srchCont .dropdown .primary {
    padding: 10px 14px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}
.box {
    display: flex;
    gap: 8px;
    align-items: center;
}
.boxInfo h6 {
    font-weight: 600;
}
.icon {
    font-size: 26px;
    position: relative;
}
.icon .items {
    background-color: var(--theme-color);
    position: absolute;
    color: var(--white);
    font-size: 13px;
    padding: 6px;
    line-height: 0.7;
    border-radius: 26px;
    right: 0;
    bottom: 0;
}
span.divider {
    background-color: #002c6b;
    width: 1px;
    height: 30px;
}
.accWrap {
    display: flex;
    gap: 12px;
    align-items: center;
}
.searchForm .primary {
    width: 110px;
    border: 2px solid #fff;
    position: absolute;
    right: 0;
    padding: 4px;
    top: 50%;
    transform: translateY(-50%);
    height: 38px;
    font-size: 16px;
}
header {
    padding-top: 12px;
}
.searchForm .primary i {
    transform: none;
}
.srchCont {
    background-color: var(--blue-light);
}
/* header css end */
/* hero section css start */
.heroVideo {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 30px;
}
.heroVideo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.heroVideo .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 30px;
    background: #1111115e;
}
.overlay h1 {
    color: var(--white);
    font-weight: 800;
    font-size: 72px;
}
/* hero section css end */
/* scrolling section css start */
.scrolling-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 50px;
    background-color: var(--theme-color);
}

.scrolling-text {
    display: flex;
    animation: scroll-left 20s linear infinite;
    gap: 3rem;
    align-items: center;
    color: var(--white);
}

.scrolling-text p {
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 0;
}
.scrolling-text span {
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* scrolling section css end */

/* catgegory section css start */
.categories {
    margin: 30px 0;
}
.cat-box {
    display: flex;
    justify-content: space-between;
    background: var(--white);
    padding: 12px 16px;
    align-items: center;
    border: 1px solid #87b2e1;
    border-radius: 8px;
}
.cat-box h5 {
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.priceSt {
    display: inline-flex;
    padding: 0px 20px;
    background: var(--theme-color);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

/* catgegory section css end */
/* glance section css start */
.counter::after {
    content: "+";
}
.stat.border-right {
    border-right: 1px solid #a4a0c5;
}
.counter-section .bg-space {
    padding: 72px 34px;
}
.stat {
    text-align: center;
}
.stat h2 {
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--theme-color);
}
.stat p {
    font-weight: 600;
    font-size: 18px;
}

/* glance section css end */
/* product card css start */
.banner-large {
    padding: 30px 0;
}
.banner-large img {
    width: 100%;
}
.custom-slider .swiper-button-next,
.custom-slider .swiper-button-prev {
    width: 60px;
    background: var(--blue-light);
    border-radius: 50px;
    font-size: 22px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.custom-slider .swiper-button-next::after,
.custom-slider .swiper-button-prev::after {
    display: none;
}
.card-wrap {
    padding: 0 34px 12px;
}
.product-card {
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 0 11px 3px #ededed;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-info .startRating {
    margin-bottom: 8px;
}
.product-info .startRating i {
    font-size: 12px;
}
.product-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 12px;
    /*height: 100%;*/
    position: relative;
    display: inline-block;
}
.off {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--orange);
    color: var(--white);
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-info h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize;
    min-height: 50px;
    max-height: 50px;
}
.wishWrapper {
    display: flex;
    flex-direction: row;
    gap: 6px;
}
.wishWrapper a .fa-solid.fa-heart {
    color: var(--red);
}
.wishWrapper a {
    width: 40px;
    height: 40px;
    display: flex;
    background: var(--blue-light);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 18px;
}
.primary {
    border: none;
    background: var(--theme-color);
    color: var(--white);
    padding: 6px 10px 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}
.primary i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.primary:hover i {
    transform: rotate(90deg);
}
.action-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}
.price h6 {
    font-size: 18px;
    font-weight: 700;
}
.price h6 del {
    font-size: 14px;
    margin-left: 4px;
    color: var(--gray-text);
}
/* product card css end */
/* multi banner css start */
.banner-mini {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.multiBanner {
    margin: 50px 0;
}
/* multi banner css end */
/* testimonila css start */
.userInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviewBox {
    border-radius: 16.284px;
    background:
        url("/front/images/testBg.png"),
        linear-gradient(137deg, rgba(14, 100, 195, 0.2) -24.05%, #eef6ff 115.5%);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
}
.reviewBox > img {
    margin-bottom: 20px;
}
.reviewBox > p {
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
}
.startRating {
    color: var(--rating);
    margin-bottom: 30px;
}
.testimonials .swiper {
    height: 350px;
}
.userInfo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50px;
}
.userInfo h6 {
    font-weight: 700;
    margin-bottom: 2px;
}
.userInfo p {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 14px;
}
/* testimonila css end */
/* why-choose css start */
.sec-heading {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 20px;
}
.sec-heading img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}
.bg-space {
    padding: 34px;
    background: var(--gray);
}
.featureBox {
    background-color: var(--white);
    padding: 16px 20px;
    height: 100%;
    box-shadow: 0 0 20px 1px #c9c9c9;
    border-radius: 4px;
}
.featureBox img {
    width: 60px;
}
.featureBox h5 {
    font-weight: 700;
    margin: 20px 0 4px 0;
}
/* why-choose css end */
/* social section css start */
.social {
    padding: 72px 32px;
}
.social .swiper-pagination {
    bottom: 10px;
}
.postimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.social .instaHead {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.instaHead h2 {
    text-transform: uppercase;
    width: 80%;
    text-align: center;
    line-height: 140%;
}
.instaHead img {
    max-width: 80px;
}

/* social section css end */
/* footer css start */
footer {
    overflow: hidden;
}
.footer-newsletter {
    background-color: var(--theme-color);
}
.newsletter-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 18px;
}
.newsletter-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.newsletter-form {
    position: relative;
}
.newsletter-form input {
    padding: 10px;
    border: none;
    min-width: 320px;
}
.newsletter-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--white);
    background-color: var(--theme-color);
    color: var(--white);
    height: 100%;
    padding: 0 12px;
}
.footer-heading {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    grid-gap: 4px;
}
.footer-contact {
    padding-left: 0;
    list-style: none;
}
.contact-item {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.contact-item .icon {
    font-size: 20px;
    color: var(--black);
}
.footer-main {
    padding: 40px 0;
}
.footer-column li a,
.contact-item {
    text-decoration: none;
    color: var(--gray-text);
    font-weight: 400;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.footer-social a {
    text-decoration: none;
}
.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    color: var(--white);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.copyright {
    margin-bottom: 0;
}
.footer-bottom-inner .row {
    align-items: center;
}
.footer-bottom-inner {
    border-top: 2px solid var(--gray);
    padding: 20px 0;
}
.app-links img {
    max-width: 120px;
}

.app-links a {
    text-decoration: none;
}
.footer-logo img {
    max-width: 150px;
    margin-bottom: 30px;
}
/* footer css end */

/* listing page css start */
.school-box {
    background: #fff;
    padding: 12px;
    border: 1px solid #87b2e1;
    border-radius: 8px;
    height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.school-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.school-box:hover img {
    transform: scale(1.05);
}

.sortWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    padding: 14px 10px;
}
.breadcrumbb {
    background-color: var(--gray);
    padding: 12px 0;
}
.breadcrumbb ul {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 6px;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumbb a.active {
    font-weight: 700;
    color: var(--theme-color);
}
.breadcrumbb a {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 14px;
}
.filter-block ul.filter-list {
    padding-left: 0;
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}
.filter-list li label {
    font-size: 14px;
}
.filter-title {
    color: var(--black);
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
}
.filter-block {
    padding: 12px 6px 6px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
}
button.reset {
    background: var(--white);
    border: 1px solid var(--theme-color);
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}
.flter-head h4 {
    margin-bottom: 0;
}
.flter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.schoolFilt .sec-heading small {
    font-weight: 500;
    color: var(--theme-color);
    text-decoration-line: underline;
    text-decoration-style: wavy;
}
.schoolFilt .sec-heading {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.schoolFilt {
    margin-bottom: 20px;
}
/* listing page css end */
/* detail page css start */

.product-compare {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
}
/* Side Panel */
.compare-sidepanel {
    width: 0;
    position: fixed;
    z-index: 9999;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--blue-light);
    overflow-x: hidden;
    transition: 0.4s;
    color: var(--black);
}
.compare {
    padding: 12px;
}
.compare-close-btn {
    font-size: 30px;
    color: var(--white);
    text-decoration: none;
    background: var(--theme-color);
    width: 100%;
    display: inline-block;
    text-align: right;
    padding: 0 16px;
    font-weight: 700;
}
.compare .product {
    background-color: var(--white);
    border: 1px solid #cbcbcb;
    padding: 4px;
    border-radius: 4px;
}
.compare .productInfo .price h6 {
    font-size: 18px;
}
.compare .productInfo .price {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
}
.compare h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 24px;
}
.compare .searchGrid{
    max-height: 75vh;
}
.compare .primary{
    margin-top: 32px;
}
.compare .productInfo .price .Disc {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 123, 0, 0.12);
    color: #ff7b00;
    margin-top: 6px;
}

/* Floating Button */
.compare-floating-btn i {
    margin-right: 6px;
}
.compare-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: none; /* hidden by default */
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.compare-floating-btn {
}

.compare-floating-btn:hover {
    background: var(--theme-color);
}

.detail-image-large {
    width: 100%;
}

.detail-image-large > a img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.detail-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.detail-thumbs a {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}
.horizontal-scroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail-thumbs::-webkit-scrollbar,
.offer-coupons::-webkit-scrollbar {
    height: 6px;
}
.detail-thumbs::-webkit-scrollbar-thumb,
.offer-coupons::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

section.deatil-page {
    padding: 50px 0;
}
.size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* hide radio */
.size-option input {
    display: none;
}

/* button look */
.size-option span {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color);
    border-radius: 4px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
}

/* active */
.size-option input:checked + span {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* hover */
.size-option span:hover {
    border-color: var(--theme-color);
}

/* disabled (optional) */
.size-option input:disabled + span {
    opacity: 0.4;
    cursor: not-allowed;
}
h2.detail-name {
    font-size: 26px;
    text-transform: uppercase;
    line-height: 135%;
    font-weight: 700;
    margin-bottom: 14px;
}
.detail-info .price {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detail-info .price h6 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}
.detail-info .price h6 del {
    font-size: 16px;
}
span.Disc {
    text-transform: uppercase;
    color: var(--orange) !important;
    font-weight: 500;
}
span.incl {
    font-size: 12px;
}
.sku {
    font-size: 14px;
}
.coupon img {
    width: 40px;
    height: 40px;
}
.coupon {
    display: flex;
    justify-content: space-between;
    background-color: #fff5ef;
    align-items: center;
    width: 250px;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 2px;
    overflow: hidden;
    clip-path: polygon(
        0% 5%,
        2% 0%,
        4% 5%,
        6% 0%,
        8% 5%,
        10% 0%,
        12% 5%,
        14% 0%,
        16% 5%,
        18% 0%,
        20% 5%,
        22% 0%,
        24% 5%,
        26% 0%,
        28% 5%,
        30% 0%,
        32% 5%,
        34% 0%,
        36% 5%,
        38% 0%,
        40% 5%,
        42% 0%,
        44% 5%,
        46% 0%,
        48% 5%,
        50% 0%,
        52% 5%,
        54% 0%,
        56% 5%,
        58% 0%,
        60% 5%,
        62% 0%,
        64% 5%,
        66% 0%,
        68% 5%,
        70% 0%,
        72% 5%,
        74% 0%,
        76% 5%,
        78% 0%,
        80% 5%,
        82% 0%,
        84% 5%,
        86% 0%,
        88% 5%,
        90% 0%,
        92% 5%,
        94% 0%,
        96% 5%,
        98% 0%,
        100% 5%,
        100% 95%,
        98% 100%,
        96% 95%,
        94% 100%,
        92% 95%,
        90% 100%,
        88% 95%,
        86% 100%,
        84% 95%,
        82% 100%,
        80% 95%,
        78% 100%,
        76% 95%,
        74% 100%,
        72% 95%,
        70% 100%,
        68% 95%,
        66% 100%,
        64% 95%,
        62% 100%,
        60% 95%,
        58% 100%,
        56% 95%,
        54% 100%,
        52% 95%,
        50% 100%,
        48% 95%,
        46% 100%,
        44% 95%,
        42% 100%,
        40% 95%,
        38% 100%,
        36% 95%,
        34% 100%,
        32% 95%,
        30% 100%,
        28% 95%,
        26% 100%,
        24% 95%,
        22% 100%,
        20% 95%,
        18% 100%,
        16% 95%,
        14% 100%,
        12% 95%,
        10% 100%,
        8% 95%,
        6% 100%,
        4% 95%,
        2% 100%,
        0% 95%
    );
}
.name p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}
.name strong {
    font-size: 14px;
    color: var(--orange);
}
.offer-coupons {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    margin: 30px 0;
}
.sizeHead {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
}
.sizeHead h5 {
    text-transform: uppercase;
}
.pincode {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    margin: 30px 0;
    border-radius: 4px;
}
.pincode input {
    width: 100%;
    border: none;
    padding: 12px;
}
.pincode button {
    border: none;
    background-color: transparent;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
}
.detail-info .accordion-button {
    background: transparent;
    color: var(--theme-color);
    text-transform: capitalize;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}
.vendor {
    color: var(--theme-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: underline;
}
.detail-info .action-btns {
    margin-top: 30px;
    justify-content: flex-start;
    gap: 10px;
}
.detail-info .action-btns .primary {
    padding: 12px 24px;
    font-size: 16px;
}
.detail-info .wishWrapper {
    gap: 10px;
}

.detail-info .wishWrapper a {
    width: 50px;
    height: 50px;
}
/* detail page css end */
/* toaster css start */
#toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        bottom 0.3s ease;
    z-index: 9999;
}

#toast.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}
.baught {
    margin-bottom: 50px;
}
.baught-price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 14px;
}
.baught-price h6 span {
    font-weight: 400;
    margin-right: 10px;
    font-size: 14px;
}
.baught-together img {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 8px;
    object-fit: cover;
}
.baught-together {
    text-align: center;
    position: relative;
}
.baught-together .check {
    position: absolute;
    top: 10px;
    right: 10px;
}
.baught-together h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.review-section .sec-heading {
    padding-left: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 28px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 25px;
}

.rating-summary {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
}
.add-review .startRating {
    margin-bottom: 6px;
}

.rating-left {
    min-width: 200px;
}

.rating-value {
    font-size: 52px;
    font-weight: bold;
}

.review-section .startRating i {
    color: var(--rating);
    font-size: 20px;
}

.review-section .startRating.small i {
    font-size: 16px;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

.rating-right {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-bar span {
    width: 40px;
    font-size: 14px;
}

.bar {
    background: #eee;
    height: 8px;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: var(--rating);
}
.add-review h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 700;
}

.add-review textarea {
    width: 100%;
    height: 90px;
    margin: 12px 0;
    padding: 10px;
}

.add-review button {
    background: var(--theme-color);
    color: var(--white);
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
}

.user-reviews .review-card .startRating {
    margin-bottom: 4px;
}
.user-reviews .review-card {
    border-top: 1px solid #ccc;
    padding: 15px;
}
.user-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    margin-top: 20px;
}

/* Review Card */
.review-card {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 14px;
    background: #fff;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.parent-name {
    font-size: 15px;
}

.review-date {
    font-size: 12px;
    color: #777;
}

.review-text {
    font-size: 14px;
    margin-top: 8px;
    color: #444;
}

/* Stars */
.startRating.small i {
    font-size: 14px;
    color: #f5a623;
}

/* toaster css end */
/* register page css start */
.authBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login .authBanner {
    height: 600px;
}
.register .wrapReg {
    background-color: var(--white);
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px auto;
}
.registerForm {
    padding: 20px;
}
.registerForm .sec-heading {
    padding-bottom: 0;
}
.registerForm .sec-heading + span {
    text-align: center;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.reg-option {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
}

/* Checked state */
.reg-option input:checked + span {
    color: var(--theme-color);
}

.reg-option input:checked ~ span,
.reg-option input:checked {
    border-color: var(--theme-color);
}

.reg-option:has(input:checked) {
    border-color: var(--theme-color);
    background-color: rgba(0, 56, 150, 0.05);
}
.form-wrap form {
    padding: 20px;
    margin-top: 10px;
}
.form-wrap form label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: 6px;
}
.form-wrap form input:focus-visible,
.form-wrap form textarea.form-control:focus {
    box-shadow: none;
    border-color: var(--theme-color);
}
.form-wrap .primary {
    width: 100%;
    height: 40px;
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
}
.btn.btn-outline-primary {
    color: var(--orange);
    border-color: var(--orange);
}
.btn.btn-outline-primary:hover {
    background-color: var(--orange);
    color: var(--white);
}
.authBanner {
    width: 100%;
    height: 100%;
}
/* register page css end*/

/* wishlist page css start */
.wishlist-page {
    padding: 50px 0;
}
/* wishlist page css end */
/* school listing css start */
.school-listing .school-box {
    margin-bottom: 20px;
}
/* school listing css end */

/* cart css start */
.page-margin {
    margin: 50px 0;
}
.cart-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 20px 3px #f1f1f19e;
    position: relative;
    margin-bottom: 20px;
}
.cart-item .del-item {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: var(--red);
    right: 10px;
    top: 10px;
    background: #fff0f0;
    border: none;
}
.cartImg {
    width: 120px;
    height: 120px;
    border: 1px solid #ccc;
}
.cartImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-product-info h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
.cart-product-info ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}
.cart-product-info ul li {
    margin-bottom: 2px;
}
.cart-product-info ul span {
    color: var(--black);
    font-weight: 600;
}
.coupon-Input {
    width: 100%;
    height: 40px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.coupon-Input input {
    width: 100%;
    border: none;
    height: 100%;
    padding: 0 10px;
    font-size: 14px;
}
.coupon-Input button.primary {
    position: absolute;
    right: 0;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--white);
    line-height: 0;
}
.coupon-cart .coupon {
    gap: 12px;
    justify-content: start;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.copyCoupn {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coupon-cart {
    max-height: 300px;
    overflow-y: auto;
}
.name h6 {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 600;
}
.summary h4,
.adres-add h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.summary {
    margin-top: 24px;
}
.summary table {
    font-size: 14px;
}
.summary .primary {
    line-height: 2;
}

/* cart css end */
/* checkout css start */
.pay-method label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}
.address-card {
    background: var(--white);
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 20px 3px #f1f1f19e;
    position: relative;
    margin-bottom: 20px;
}
.address-actions {
    position: absolute;
    display: flex;
    gap: 10px;
    right: 10px;
    top: 10px;
}
.address-actions button {
    width: 40px;
    height: 40px;
    border: none;
}
.address-actions .btn-delete {
    background-color: #fff0f0;
    color: var(--red);
}
.address-actions .btn-edit {
    background-color: #f3f3f3;
    color: var(--orange);
}
.address-card .name {
    text-transform: uppercase;
    font-weight: 600;
}
.address-text {
    padding-left: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}
.address-card:has(input:checked) {
    border-color: var(--theme-color);
}
.checkout-page .summary {
    margin-top: 0;
}
.btn-address {
    background-color: var(--theme-color);
    color: var(--white);
    border: none;
    height: 40px;
    display: inline-block;
    padding: 0 12px;
    border-radius: 2px;
}
.adres-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
/* checkout css end */

/* account css start */
.acccount-li {
    padding-left: 0;
    list-style: none;
}
.acccount-li li {
    background-color: var(--gray);
    margin-bottom: 8px;
    padding: 12px;
    color: var(--black);
    font-size: 16px;
    border-radius: 4px;
}
.acccount-li li.active {
    border: 1px solid var(--theme-color);
    font-weight: 600;
}
.account-page .address-text {
    padding-left: 0;
}
.account-page .address-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 20px;
}
.order-summary {
    border: 1px solid #ccc;
    padding: 12px;
    gap: 20px 0px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 14px;
    border-radius: 4px;
}
.order-summary p,
.order-summary span {
    margin-bottom: 4px;
    font-size: 14px;
}
.account-page .section-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* account css end */

/* thanks css start */
.thank-wrap img {
    width: 100%;
}
/* thanks css end */
@media screen and (max-width: 767px) {
    .newsletter-inner {
        flex-direction: column;
    }
}

.password-wrapper .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}
section.static-info {
    background-color: var(--gray);
    padding: 3rem 0 2rem;
    text-align: center;
}
.static-info img {
    width: 60px;
    aspect-ratio: 1;
    margin-bottom: 8px;
}

/* Bottom Fixed Bar */
.mobile-filter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: var(--white);
    border-top: 1px solid #ddd;
    z-index: 999;
}
.registerForm .sec-heading {
    justify-content: center;
}
.mobile-filter-bar button {
    flex: 1;
    padding: 14px;
    border: none;
    background: var(--theme-color);
    color: var(--white);
    font-weight: 600;
}
.close-filter {
    background-color: var(--blue-light);
    border: none;
    width: 32px;
    height: 32px;
    color: var(--red);
    font-weight: 900;
    margin-left: 6px;
    display: none;
}
.multiBanner img {
    width: 100%;
    margin-bottom: 20px;
}
.accordion h2.accordion-header button {
    font-size: 16px;
    color: var(--black);
}
/* Sidebar Mobile */
@media (min-width: 1199px) and (max-width: 1212px) {
    .testimonials .bg-space {
        padding: 12px;
    }
}
@media (max-width: 991px) {
    .detail-info .action-btns {
        flex-wrap: wrap;
    }
    .action-btns > div {
        display: flex;
        width: 100%;
        gap: 10px;
    }
    .action-btns {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .action-btns .primary {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .filter-btn-wrap {
        display: flex;
        gap: 10px;
    }
    .item-list .cart-item {
        flex-wrap: wrap;
    }
    .item-list .cart-item > :last-child {
        flex: 0 0 100%;
    }
    .social .instaHead {
        flex-direction: row-reverse;
        margin-bottom: 22px;
        gap: 12px;
    }
    .instaHead h2 {
        width: auto;
        font-size: 22px;
        font-weight: 700;
        text-align: left;
        line-height: normal;
    }
    .instaHead img {
        max-width: 50px;
    }
    .why-choose .row,
    .categories .row {
        gap: 20px 0;
    }
    .close-filter {
        display: block;
    }
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        padding-bottom: 80px;
    }
    .footer-main {
        padding: 40px 20px;
    }
    .footer-bottom-inner {
        padding: 20px;
        text-align: center;
    }

    .filter-sidebar.active {
        left: 0;
        padding: 14px 20px;
    }
    .heroVideo .overlay {
        align-items: center;
        text-align: center;
    }
    .footer-grid .row {
        gap: 20px 0;
    }
    .footer-logo img {
        margin-bottom: 12px;
    }
    .footer-social {
        justify-content: center;
        margin-top: 12px;
    }
    .product-img {
        height: 180px;
    }
    .card-wrap {
        padding: 0 12px 0;
    }
    .stat h2 {
        font-size: 48px;
    }
    .stat.border-right {
        border: none;
    }
    .counter-section .bg-space {
        padding: 32px 20px;
    }
    .off {
        top: 0;
        right: 0;
    }
    .user-reviews {
        display: block;
    }
}
@media (max-width: 575px) {
    .heroVideo .overlay h1 {
        font-size: 40px;
    }
    .social {
        padding: 32px;
    }
    .form-wrap form label {
        font-size: 12px;
        white-space: nowrap;
    }
    .startRating {
        margin-bottom: 8px;
    }
    .sec-heading {
        display: flex;
        align-items: center;
    }
    .address-actions {
        position: relative;
        flex-direction: column;
    }
    .address-card .address-actions {
        position: absolute;
    }
}
