/* =========================================================
   VELVETFUNS
   MOBILE FIRST ECOMMERCE DESIGN
========================================================= */


/* =========================
   ROOT
========================= */

:root {
    --red: #e7193f;
    --dark-red: #bd0929;
    --black: #171717;
    --text: #252525;
    --muted: #767676;
    --light: #f6f6f6;
    --border: #e9e9e9;
    --white: #ffffff;
}


/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0 0 76px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: #ffffff;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================
   HEADER
========================= */

.main-header {
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: var(--white);

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 100;
}


.header-left,
.header-right {
    width: 85px;

    display: flex;
    align-items: center;
}


.header-right {
    justify-content: flex-end;
    gap: 15px;
}


.menu-button {
    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;

    padding: 7px;

    cursor: pointer;
}


.menu-button span {
    display: block;

    width: 21px;
    height: 1.5px;

    margin: 5px 0;

    background: var(--black);
}


.main-logo {
    font-size: 20px;
    font-weight: 800;

    letter-spacing: -1px;
}


.main-logo span {
    color: var(--red);
}


.header-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}


.search-icon {
    width: 16px;
    height: 16px;

    border: 2px solid var(--black);
    border-radius: 50%;

    position: relative;
}


.search-icon::after {
    content: "";

    width: 7px;
    height: 2px;

    background: var(--black);

    position: absolute;

    right: -6px;
    bottom: -3px;

    transform: rotate(45deg);
}


.cart-count {
    width: 16px;
    height: 16px;

    position: absolute;

    top: -8px;
    right: -10px;

    background: var(--red);
    color: white;

    border-radius: 50%;

    font-size: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   SIDE MENU
========================= */

.menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;

    transition: 0.25s;

    z-index: 200;
}


.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}


.side-menu {
    width: 285px;

    height: 100vh;

    position: fixed;

    top: 0;
    left: -300px;

    background: var(--white);

    z-index: 300;

    transition: 0.3s ease;
}


.side-menu.open {
    left: 0;
}


.side-menu-header {
    height: 70px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}


.menu-logo {
    font-size: 19px;
    font-weight: 800;
}


.menu-logo span {
    color: var(--red);
}


.close-menu {
    border: 0;
    background: transparent;

    font-size: 32px;

    cursor: pointer;
}


.side-navigation {
    padding: 12px 0;
}


.side-navigation a {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 17px 23px;

    font-size: 15px;
    font-weight: 500;
}


.side-navigation a span {
    width: 22px;

    text-align: center;

    font-size: 18px;
}


.side-navigation a:hover {
    background: #fafafa;
}


.menu-bottom {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 25px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;
}


/* =========================
   HERO
========================= */

.hero-section {
    min-height: 470px;

    position: relative;

    overflow: hidden;

    padding: 52px 22px 35px;

    background:
        linear-gradient(
            135deg,
            #ec173d 0%,
            #cb092d 100%
        );

    color: white;
}


.hero-content {
    position: relative;

    z-index: 3;

    max-width: 270px;
}


.hero-small-title {
    margin: 0 0 15px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.6px;

    opacity: 0.85;
}


.hero-section h1 {
    margin: 0;

    font-size: 42px;

    line-height: 1.02;

    letter-spacing: -1.7px;
}


.hero-description {
    margin: 18px 0 24px;

    font-size: 14px;

    line-height: 1.6;

    opacity: 0.9;
}


.hero-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 19px;

    background: white;
    color: var(--black);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    border-radius: 3px;
}


.hero-button span {
    font-size: 17px;
}


.hero-background-shape {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;
}


.hero-shape-one {
    width: 320px;
    height: 320px;

    right: -160px;
    top: 30px;
}


.hero-shape-two {
    width: 500px;
    height: 500px;

    right: -330px;
    bottom: -230px;
}


.hero-product-visual {
    position: absolute;

    width: 220px;
    height: 330px;

    right: -55px;
    bottom: -30px;
}


.hero-circle {
    width: 210px;
    height: 210px;

    position: absolute;

    top: 20px;
    right: 5px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);
}


.hero-product-shape {
    width: 75px;
    height: 250px;

    position: absolute;

    right: 65px;
    bottom: 0;

    transform: rotate(25deg);
}


.product-shape-top {
    width: 78px;
    height: 78px;

    background: #efb5b9;

    border-radius: 50% 50% 45% 45%;

    position: absolute;

    top: 0;
}


.product-shape-body {
    width: 55px;
    height: 190px;

    position: absolute;

    top: 52px;
    left: 10px;

    background:
        linear-gradient(
            90deg,
            #e9969c,
            #f5c7ca
        );

    border-radius: 40px;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 17px 15px;

    background: #ffffff;

    border-bottom: 1px solid var(--border);
}


.trust-item {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 8px;
}


.trust-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--black);

    border-radius: 50%;

    font-size: 11px;
}


.trust-item strong {
    display: block;

    font-size: 10px;
}


.trust-item span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 8px;
}


.trust-divider {
    width: 1px;
    height: 30px;

    background: var(--border);

    margin: 0 8px;
}


.desktop-trust,
.desktop-divider {
    display: none;
}


/* =========================
   GENERAL SECTION
========================= */

.content-section {
    padding: 34px 16px;
}


.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 20px;
}


.section-label {
    margin: 0 0 7px;

    color: var(--red);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.section-heading h2 {
    margin: 0;

    font-size: 25px;

    letter-spacing: -0.7px;
}


.view-all-link {
    padding-bottom: 3px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


.view-all-link span {
    margin-left: 4px;

    font-size: 14px;
}


/* =========================
   PRODUCTS
========================= */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.product-card {
    overflow: hidden;

    background: white;

    border: 1px solid #eeeeee;

    border-radius: 2px;
}


.product-image-box {
    height: 215px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f4f4f4,
            #e4e4e4
        );

    display: flex;

    align-items: center;
    justify-content: center;
}


.product-image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: relative;

    z-index: 2;
}


.product-badge {
    position: absolute;

    top: 8px;
    left: 8px;

    z-index: 5;

    padding: 5px 7px;

    background: var(--red);
    color: white;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.placeholder-product {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}


.placeholder-product-shape {
    width: 55px;
    height: 130px;

    background:
        linear-gradient(
            135deg,
            #d3b0b5,
            #f3d1d4
        );

    border-radius: 40px;

    transform: rotate(28deg);

    position: relative;
}


.placeholder-product-shape::before {
    content: "";

    width: 63px;
    height: 63px;

    position: absolute;

    top: -22px;
    left: -3px;

    background: #efc5c8;

    border-radius: 50%;
}


.product-info {
    padding: 11px;
}


.product-info h3 {
    min-height: 34px;

    margin: 0;

    font-size: 12px;

    font-weight: 600;

    line-height: 1.4;
}


.product-rating {
    margin: 6px 0;
}


.stars {
    color: #f0a000;

    font-size: 9px;

    letter-spacing: -1px;
}


.rating-count {
    margin-left: 3px;

    color: var(--muted);

    font-size: 8px;
}


.price-row {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 10px;
}


.current-price {
    font-size: 14px;

    font-weight: 800;
}


.old-price {
    color: #999999;

    font-size: 9px;

    text-decoration: line-through;
}


.quick-add-button {
    width: 100%;

    padding: 9px 5px;

    border: 1px solid var(--black);

    background: transparent;

    color: var(--black);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition: 0.2s;
}


.quick-add-button:active {
    background: var(--black);
    color: white;
}


/* =========================
   PROMOTIONAL BANNER
========================= */

.promo-wrapper {
    padding: 0 16px 20px;
}


.promo-banner {
    min-height: 280px;

    position: relative;

    overflow: hidden;

    background: #151515;

    color: white;

    padding: 34px 24px;
}


.promo-content {
    position: relative;

    z-index: 4;

    width: 60%;
}


.promo-content p {
    margin: 0 0 10px;

    color: #ff6a81;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.promo-content h2 {
    margin: 0 0 20px;

    font-size: 29px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.promo-button {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 1px solid white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.promo-art {
    position: absolute;

    top: 0;
    right: 0;

    width: 55%;
    height: 100%;
}


.promo-big-circle {
    width: 210px;
    height: 210px;

    position: absolute;

    top: 35px;
    right: -75px;

    border-radius: 50%;

    background: var(--red);
}


.promo-small-circle {
    width: 60px;
    height: 60px;

    position: absolute;

    top: 35px;
    left: 20px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.4);
}


.promo-object {
    width: 55px;
    height: 180px;

    position: absolute;

    right: 70px;
    top: 55px;

    background:
        linear-gradient(
            90deg,
            #edc0c4,
            #ffffff,
            #d899a0
        );

    border-radius: 40px;

    transform: rotate(30deg);
}


/* =========================
   PRIVACY SECTION
========================= */

.privacy-section {
    position: relative;

    padding: 50px 20px;

    background: #f0f0f0;

    overflow: hidden;
}


.privacy-number {
    position: absolute;

    top: 15px;
    right: 15px;

    color: #dddddd;

    font-size: 100px;

    font-weight: 800;

    line-height: 1;
}


.privacy-content {
    position: relative;

    z-index: 2;
}


.light-label {
    color: var(--red);
}


.privacy-content h2 {
    max-width: 320px;

    margin: 0 0 14px;

    font-size: 34px;

    line-height: 1.03;

    letter-spacing: -1.2px;
}


.privacy-content p {
    max-width: 350px;

    color: #656565;

    font-size: 13px;

    line-height: 1.7;
}


.privacy-features {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.privacy-features div {
    padding-top: 12px;

    border-top: 1px solid #cccccc;
}


.privacy-features strong {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;
}


.privacy-features span {
    color: #777777;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 45px 20px 25px;

    background: #111111;

    color: white;
}


.footer-logo {
    font-size: 26px;

    font-weight: 800;

    letter-spacing: -1px;
}


.footer-logo span {
    color: var(--red);
}


.site-footer > p {
    max-width: 250px;

    margin: 12px 0 28px;

    color: #9b9b9b;

    font-size: 12px;

    line-height: 1.6;
}


.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    padding-bottom: 25px;

    border-bottom: 1px solid #2c2c2c;
}


.footer-links a {
    font-size: 11px;

    color: #dddddd;
}


.footer-bottom {
    padding-top: 18px;

    color: #666666;

    font-size: 9px;
}


/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-button {
    width: 48px;
    height: 48px;

    position: fixed;

    right: 16px;
    bottom: 90px;

    z-index: 80;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: white;

    font-size: 25px;

    box-shadow:
        0 5px 20px
        rgba(0,0,0,0.2);
}


/* =========================
   MOBILE BOTTOM NAV
========================= */

.mobile-bottom-nav {
    height: 68px;

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 150;

    display: flex;

    background: white;

    border-top: 1px solid var(--border);
}


.bottom-nav-item {
    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 4px;

    color: #777777;

    font-size: 9px;
}


.bottom-nav-item.active {
    color: var(--red);
}


.bottom-icon {
    position: relative;

    font-size: 19px;

    line-height: 1;
}


.bottom-cart-icon b {
    width: 14px;
    height: 14px;

    position: absolute;

    top: -7px;
    right: -10px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--red);
    color: white;

    font-size: 7px;
}


/* =========================
   TABLET
========================= */

@media (min-width: 600px) {

    body {
        padding-bottom: 0;
    }


    .mobile-bottom-nav {
        display: none;
    }


    .whatsapp-button {
        bottom: 25px;
    }


    .main-header {
        padding-left: 30px;
        padding-right: 30px;
    }


    .hero-section {
        min-height: 530px;

        padding-left: 8%;
    }


    .hero-content {
        max-width: 480px;
    }


    .hero-section h1 {
        font-size: 60px;
    }


    .hero-product-visual {
        width: 360px;
        height: 450px;

        right: 8%;
    }


    .products-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .product-image-box {
        height: 300px;
    }


    .content-section {
        padding-left: 30px;
        padding-right: 30px;
    }


    .promo-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* =========================
   DESKTOP
========================= */

@media (min-width: 1000px) {

    .main-header {
        height: 72px;

        padding-left:
            max(
                40px,
                calc((100% - 1250px) / 2)
            );

        padding-right:
            max(
                40px,
                calc((100% - 1250px) / 2)
            );
    }


    .content-section {
        max-width: 1250px;

        margin: auto;

        padding: 70px 20px;
    }


    .hero-section {
        padding-left:
            max(
                40px,
                calc((100% - 1250px) / 2)
            );

        padding-top: 100px;

        min-height: 620px;
    }


    .hero-section h1 {
        font-size: 76px;
    }


    .products-grid {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 18px;
    }


    .product-image-box {
        height: 360px;
    }


    .promo-wrapper {
        max-width: 1250px;

        margin: auto;

        padding: 0 20px 50px;
    }


    .promo-banner {
        min-height: 390px;

        padding: 70px;
    }


    .promo-content h2 {
        font-size: 50px;
    }


    .promo-art {
        width: 50%;
    }


    .promo-big-circle {
        width: 330px;
        height: 330px;

        right: -60px;
    }


    .promo-object {
        width: 80px;
        height: 260px;

        right: 150px;
    }


    .trust-strip {
        padding-left: 12%;
        padding-right: 12%;
    }


    .desktop-trust,
    .desktop-divider {
        display: flex;
    }


    .privacy-section {
        padding:
            100px
            max(
                40px,
                calc((100% - 1210px) / 2)
            );
    }


    .privacy-content h2 {
        font-size: 62px;

        max-width: 550px;
    }


    .privacy-features {
        max-width: 700px;

        margin-top: 50px;
    }


    .site-footer {
        padding-left:
            max(
                40px,
                calc((100% - 1210px) / 2)
            );

        padding-right:
            max(
                40px,
                calc((100% - 1210px) / 2)
            );
    }

}

/* =========================================================
   PRODUCT DETAILS PAGE
========================================================= */

.product-page-body {
    padding-bottom: 90px;
}

.product-header {
    position: sticky;
}

.back-button {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    font-size: 26px;
}

.product-page-main {
    max-width: 1250px;
    margin: auto;
}


/* GALLERY */

.product-gallery-section {
    background: #fff;
}

.product-main-image {
    height: 420px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f5f5f5,
            #e7e7e7
        );
}

.product-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: relative;
    z-index: 2;
}

.large-badge {
    top: 15px;
    left: 15px;

    padding: 7px 10px;

    font-size: 8px;
}

.main-product-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.large-placeholder-product {
    width: 110px;
    height: 280px;

    position: relative;

    transform: rotate(25deg);
}

.large-placeholder-head {
    width: 110px;
    height: 110px;

    position: absolute;

    top: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #e4b4b8,
            #f5d6d8
        );
}

.large-placeholder-body {
    width: 76px;
    height: 205px;

    position: absolute;

    left: 18px;
    top: 80px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #ce8e95,
            #f2c8cb
        );
}

.gallery-wishlist {
    width: 42px;
    height: 42px;

    position: absolute;

    z-index: 10;

    top: 15px;
    right: 15px;

    border: 0;

    border-radius: 50%;

    background: white;

    font-size: 25px;

    cursor: pointer;
}

.product-thumbnails {
    display: flex;

    gap: 10px;

    padding: 13px 15px;
}

.thumbnail {
    width: 58px;
    height: 58px;

    overflow: hidden;

    border: 1px solid #dddddd;

    background: #f5f5f5;

    cursor: pointer;
}

.thumbnail.active {
    border: 2px solid #171717;
}

.thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.placeholder-thumb {
    display: flex;

    align-items: center;
    justify-content: center;
}

.placeholder-thumb span {
    width: 20px;
    height: 35px;

    border-radius: 20px;

    background: #d8b2b5;

    transform: rotate(25deg);
}


/* PRODUCT DETAILS */

.product-details-section {
    padding: 20px 17px 25px;
}

.product-brand {
    margin: 0 0 8px;

    color: #e7193f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.product-title {
    margin: 0 0 12px;

    font-size: 27px;

    line-height: 1.2;

    letter-spacing: -0.8px;
}

.product-review-row {
    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 11px;
}

.product-stars {
    color: #efa100;

    font-size: 13px;

    letter-spacing: -1px;
}

.product-review-row a {
    text-decoration: underline;

    color: #555;
}

.review-divider {
    color: #cccccc;
}


/* PRICE */

.product-price-area {
    display: flex;

    align-items: flex-end;

    gap: 10px;

    margin-top: 20px;
}

.main-price {
    font-size: 29px;

    font-weight: 800;
}

.price-meta {
    padding-bottom: 4px;
}

.product-old-price {
    margin-right: 6px;

    color: #999999;

    font-size: 12px;

    text-decoration: line-through;
}

.discount-text {
    color: #e7193f;

    font-size: 10px;

    font-weight: 800;
}

.tax-text {
    margin-top: 4px;

    color: #888888;

    font-size: 10px;
}

.product-divider {
    height: 1px;

    margin: 22px 0;

    background: #eeeeee;
}


/* QUANTITY */

.product-option-row {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.product-option-row strong {
    font-size: 13px;
}

.product-option-row p {
    margin: 5px 0 0;

    color: #888888;

    font-size: 10px;
}

.quantity-selector {
    display: flex;

    align-items: center;

    border: 1px solid #dddddd;
}

.quantity-selector button {
    width: 38px;
    height: 35px;

    border: 0;

    background: #f7f7f7;

    font-size: 18px;

    cursor: pointer;
}

.quantity-selector span {
    width: 38px;

    text-align: center;

    font-size: 13px;

    font-weight: 700;
}


/* ACCORDION */

.product-description-box {
    border-bottom: 1px solid #eeeeee;
}

.accordion-button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 17px 0;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}

.accordion-button span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

.accordion-button b {
    font-size: 18px;

    font-weight: 400;
}

.accordion-content {
    display: none;

    padding-bottom: 18px;

    color: #666666;

    font-size: 12px;

    line-height: 1.7;
}

.accordion-content.open {
    display: block;
}

.accordion-content p {
    margin-top: 0;
}

.accordion-content ul {
    padding-left: 18px;

    margin-bottom: 0;
}

.accordion-content li {
    margin-bottom: 5px;
}


/* PINCODE */

.pincode-check-box {
    display: flex;

    gap: 12px;

    margin-top: 25px;

    padding: 16px;

    background: #f7f7f7;
}

.pincode-icon {
    font-size: 22px;
}

.pincode-content {
    flex: 1;
}

.pincode-content strong {
    display: block;

    margin-bottom: 11px;

    font-size: 12px;
}

.pincode-input-row {
    display: flex;
}

.pincode-input-row input {
    width: 100%;

    min-width: 0;

    height: 40px;

    padding: 0 10px;

    border: 1px solid #dddddd;

    background: white;

    outline: none;

    font-size: 11px;
}

.pincode-input-row button {
    padding: 0 13px;

    border: 0;

    background: #171717;

    color: white;

    font-size: 9px;

    font-weight: 800;

    cursor: pointer;
}

.pincode-content small {
    display: block;

    margin-top: 7px;

    font-size: 9px;
}


/* PRODUCT TRUST */

.product-trust-section {
    padding: 22px 17px;

    background: #f5f5f5;
}

.product-trust-section > div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}

.product-trust-section > div:last-child {
    margin-bottom: 0;
}

.product-trust-section > div > span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #222;

    border-radius: 50%;
}

.product-trust-section strong {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
}

.product-trust-section small {
    color: #777777;

    font-size: 9px;
}


/* REVIEWS */

.product-reviews-section {
    padding: 38px 17px;
}

.product-reviews-section h2 {
    margin: 0 0 22px;

    font-size: 25px;

    letter-spacing: -0.7px;
}

.review-summary {
    display: flex;

    align-items: center;

    gap: 15px;
}

.review-summary > strong {
    font-size: 42px;
}

.review-summary span {
    display: block;

    color: #f0a000;

    font-size: 15px;

    letter-spacing: -1px;
}

.review-summary small {
    display: block;

    margin-top: 5px;

    color: #888888;

    font-size: 9px;
}


/* STICKY BUY BAR */

.product-buy-bar {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 200;

    display: flex;

    gap: 9px;

    padding: 10px 12px;

    background: white;

    border-top: 1px solid #e6e6e6;
}

.product-buy-bar button {
    flex: 1;

    height: 48px;

    border: 0;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;
}

.product-add-cart {
    background: #f0f0f0;

    color: #171717;
}

.product-buy-now {
    background: #e7193f;

    color: white;
}


/* TABLET PRODUCT PAGE */

@media (min-width: 700px) {

    .product-page-main {
        display: grid;

        grid-template-columns: 1fr 1fr;

        column-gap: 45px;

        padding: 30px;
    }

    .product-gallery-section {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .product-main-image {
        height: 600px;
    }

    .product-details-section {
        grid-column: 2;
        padding: 10px 0;
    }

    .product-trust-section {
        grid-column: 2;
        background: transparent;
        padding: 20px 0;
    }

    .product-reviews-section {
        grid-column: 1 / -1;
        padding: 60px 0;
    }

    .product-buy-bar {
        left: auto;

        width: 50%;

        padding: 15px 30px;

        bottom: 0;
    }

}


/* DESKTOP PRODUCT PAGE */

@media (min-width: 1000px) {

    .product-page-main {
        grid-template-columns: 52% 48%;

        padding-top: 55px;
        padding-bottom: 100px;
    }

    .product-main-image {
        height: 700px;
    }

    .product-title {
        font-size: 38px;
    }

    .main-price {
        font-size: 36px;
    }

}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page-body {
    padding-bottom: 30px;
    background: #ffffff;
}

.cart-page-main {
    max-width: 900px;
    margin: 0 auto;
}


/* HEADER */

.secure-header-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* TITLE */

.cart-title-section {
    padding: 30px 17px 25px;
    border-bottom: 1px solid #eeeeee;
}

.cart-title-section h1 {
    margin: 6px 0 8px;
    font-size: 30px;
    letter-spacing: -0.8px;
}

.cart-item-text {
    margin: 0;
    color: #777777;
    font-size: 11px;
}


/* CART ITEMS */

.cart-items {
    padding: 0 17px;
}

.cart-product {
    display: flex;
    gap: 14px;
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}


/* PRODUCT IMAGE */

.cart-product-image {
    width: 105px;
    height: 125px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-image-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #aaaaaa;
}

.cart-product-image.image-error .cart-image-placeholder {
    display: flex;
}


/* PRODUCT INFO */

.cart-product-info {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-right: 25px;
}

.cart-product-brand {
    margin: 0 0 5px;
    color: #e7193f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cart-product-info h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.cart-product-price {
    margin-top: 9px;
    font-size: 16px;
    font-weight: 800;
}


/* REMOVE */

.cart-remove-button {
    position: absolute;
    top: -5px;
    right: 0;

    width: 25px;
    height: 25px;

    border: 0;
    background: transparent;

    font-size: 25px;
    line-height: 20px;
    color: #777777;

    cursor: pointer;
}


/* QUANTITY */

.cart-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    margin-top: 15px;
}

.cart-quantity {
    display: flex;
    align-items: center;

    border: 1px solid #dddddd;
}

.cart-quantity-button {
    width: 30px;
    height: 30px;

    border: 0;
    background: #fafafa;

    font-size: 17px;
    cursor: pointer;
}

.cart-quantity span {
    width: 32px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-item-total {
    font-size: 13px;
}


/* SUMMARY */

.cart-summary {
    margin: 20px 17px;
    padding: 20px 16px;

    background: #f7f7f7;
}

.cart-summary h2 {
    margin: 0 0 20px;
    font-size: 18px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;

    font-size: 12px;
}

.summary-row span:first-child {
    color: #666666;
}

.cart-summary-divider {
    height: 1px;
    margin: 18px 0;
    background: #dddddd;
}

.total-row {
    font-size: 17px;
}

.cart-tax-note {
    margin: 8px 0 20px;
    color: #888888;
    font-size: 9px;
}


/* CHECKOUT BUTTON */

.cart-checkout-button {
    width: 100%;
    height: 52px;

    border: 0;
    background: #e7193f;
    color: white;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;

    cursor: pointer;
}

.cart-checkout-button:active {
    transform: scale(0.99);
}

.cart-continue-link {
    display: block;
    margin-top: 17px;

    text-align: center;
    color: #333333;

    font-size: 10px;
    text-decoration: underline;
}


/* EMPTY CART */

.empty-cart {
    padding: 70px 20px;
    text-align: center;
}

.empty-cart-icon {
    margin-bottom: 18px;
    font-size: 45px;
}

.empty-cart h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.empty-cart p {
    margin: 0 0 25px;
    color: #777777;
    font-size: 11px;
}

.continue-shopping-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 45px;
    padding: 0 25px;

    background: #171717;
    color: white;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
}


/* TRUST SECTION */

.cart-trust-section {
    margin-top: 25px;
    padding: 25px 17px;

    background: #f5f5f5;
}

.cart-trust-section > div {
    display: flex;
    align-items: center;

    gap: 12px;
    margin-bottom: 20px;
}

.cart-trust-section > div:last-child {
    margin-bottom: 0;
}

.cart-trust-section > div > span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #222222;
    border-radius: 50%;
}

.cart-trust-section strong {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
}

.cart-trust-section small {
    color: #777777;
    font-size: 9px;
}


/* TABLET / DESKTOP */

@media (min-width: 700px) {

    .cart-page-main {
        padding: 30px;
    }

    .cart-title-section {
        padding-left: 0;
        padding-right: 0;
    }

    .cart-items {
        padding-left: 0;
        padding-right: 0;
    }

    .cart-summary {
        margin-left: 0;
        margin-right: 0;
    }

    .cart-product-image {
        width: 130px;
        height: 155px;
    }

    .cart-product-info h3 {
        font-size: 17px;
    }

    .cart-product-price {
        font-size: 19px;
    }

    .cart-trust-section {
        margin-left: -30px;
        margin-right: -30px;
        padding-left: 30px;
        padding-right: 30px;

        display: flex;
        justify-content: space-between;
    }

    .cart-trust-section > div {
        flex: 1;
        margin-bottom: 0;
    }

}


@media (min-width: 1000px) {

    .cart-page-main {
        max-width: 1050px;
    }

}

/* =========================================================
   ADDRESS PAGE
========================================================= */

.address-page-body {
    background: #ffffff;
    padding-bottom: 35px;
}

.address-page-main {
    max-width: 1100px;
    margin: 0 auto;
}


/* TITLE */

.address-title-section {
    padding: 30px 17px 20px;
    border-bottom: 1px solid #eeeeee;
}

.address-title-section h1 {
    margin: 6px 0 8px;
    font-size: 28px;
    letter-spacing: -0.7px;
}

.address-title-section p:last-child {
    margin: 0;
    color: #777777;
    font-size: 11px;
}


/* =========================================
   CHECKOUT STEPS
========================================= */

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px 17px;

    border-bottom: 1px solid #eeeeee;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    flex-shrink: 0;
}

.checkout-step span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d5d5d5;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;

    background: #ffffff;
}

.checkout-step small {
    font-size: 8px;
    font-weight: 700;
    color: #999999;
}

.checkout-step.active span {
    background: #e7193f;
    border-color: #e7193f;
    color: #ffffff;
}

.checkout-step.active small {
    color: #e7193f;
}

.checkout-step-line {
    width: 55px;
    height: 1px;

    margin: 0 8px 18px;

    background: #dddddd;
}


/* =========================================
   FORM
========================================= */

.address-form-section {
    padding: 25px 17px;
}

.address-form-section h2 {
    margin: 0 0 20px;
    font-size: 18px;
}

.address-section-heading {
    margin-top: 32px !important;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 800;
}

.form-group label span {
    color: #999999;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    height: 48px;

    box-sizing: border-box;

    padding: 0 13px;

    border: 1px solid #dddddd;
    border-radius: 0;

    outline: none;

    font-size: 12px;

    background: #ffffff;
}

.form-group input:focus {
    border-color: #e7193f;
}

.form-group input[readonly] {
    background: #f7f7f7;
    color: #777777;
}

.form-help {
    display: block;
    margin-top: 6px;
    color: #999999;
    font-size: 9px;
}


/* PHONE */

.phone-input-wrapper {
    display: flex;
    align-items: center;

    border: 1px solid #dddddd;
}

.phone-input-wrapper:focus-within {
    border-color: #e7193f;
}

.phone-input-wrapper span {
    height: 48px;
    display: flex;
    align-items: center;

    padding: 0 12px;

    border-right: 1px solid #dddddd;

    font-size: 12px;
    font-weight: 700;
}

.phone-input-wrapper input {
    border: 0 !important;
}


/* PINCODE */

.pincode-input-wrapper {
    display: flex;
}

.pincode-input-wrapper input {
    flex: 1;
}

.pincode-input-wrapper button {
    width: 75px;

    border: 0;
    background: #171717;
    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    cursor: pointer;
}

.pincode-status {
    display: block;
    margin-top: 7px;
    font-size: 9px;
}

.pincode-status.success {
    color: #168147;
}

.pincode-status.error {
    color: #e7193f;
}


/* FORM ROW */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


/* ERROR */

.checkout-form-error {
    display: none;

    margin-bottom: 15px;
    padding: 12px;

    background: #fff1f3;
    color: #d41034;

    font-size: 10px;
}

.checkout-form-error:not(:empty) {
    display: block;
}


/* CONTINUE */

.address-continue-button {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;

    background: #e7193f;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;

    cursor: pointer;
}

.address-continue-button span {
    font-size: 18px;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.address-order-summary {
    margin: 0 17px 25px;
    padding: 18px 15px;

    background: #f7f7f7;
}

.address-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.address-summary-header h2 {
    margin: 0;
    font-size: 17px;
}

.address-summary-header span {
    color: #777777;
    font-size: 9px;
}


/* PRODUCTS */

.checkout-product-item {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 0;
}

.checkout-product-image {
    width: 52px;
    height: 65px;

    flex-shrink: 0;

    background: #eeeeee;
    overflow: hidden;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-product-info {
    flex: 1;
    min-width: 0;
}

.checkout-product-info h3 {
    margin: 0 0 5px;

    font-size: 10px;
    line-height: 1.4;
}

.checkout-product-info small {
    color: #888888;
    font-size: 9px;
}

.checkout-product-item > strong {
    font-size: 11px;
}


/* SUMMARY */

.checkout-summary-divider {
    height: 1px;
    margin: 13px 0;

    background: #dddddd;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;

    margin-bottom: 11px;

    font-size: 11px;
}

.checkout-total-row span {
    color: #777777;
}

.free-shipping-text {
    color: #178447;
}

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
}

.checkout-grand-total strong {
    font-size: 19px;
}

.address-order-summary > p {
    margin: 9px 0 0;

    color: #999999;
    font-size: 8px;
}


/* EMPTY */

.checkout-empty-order {
    padding: 25px 0;
    text-align: center;
}

.checkout-empty-order p {
    margin-bottom: 10px;
}

.checkout-empty-order a {
    color: #e7193f;
    font-size: 10px;
}


/* =========================================
   SECURITY
========================================= */

.checkout-security-section {
    margin: 25px 17px 0;
    padding: 20px 15px;

    border: 1px solid #eeeeee;
}

.checkout-security-section > div {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.checkout-security-section > div:last-child {
    margin-bottom: 0;
}

.checkout-security-section > div > span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #f7f7f7;
    border-radius: 50%;
}

.checkout-security-section strong {
    display: block;
    margin-bottom: 4px;

    font-size: 10px;
}

.checkout-security-section small {
    color: #888888;
    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (min-width: 700px) {

    .address-page-main {
        padding: 30px;
    }

    .address-title-section {
        padding-left: 0;
        padding-right: 0;
    }

    .address-checkout-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 35px;

        align-items: start;
    }

    .address-form-section {
        padding: 30px 0;
    }

    .address-order-summary {
        margin: 30px 0 0;

        position: sticky;
        top: 20px;
    }

    .checkout-security-section {
        margin-left: 0;
        margin-right: 0;

        display: flex;
        gap: 30px;
    }

    .checkout-security-section > div {
        flex: 1;
        margin-bottom: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 380px) {

    .checkout-step-line {
        width: 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================================================
   PAYMENT PAGE
========================================================= */

.payment-page-body {
    background: #ffffff;
    padding-bottom: 40px;
}

.payment-page-main {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.payment-title-section {
    padding: 30px 17px 20px;
    border-bottom: 1px solid #eeeeee;
}

.payment-title-section h1 {
    margin: 6px 0 8px;
    font-size: 28px;
    letter-spacing: -0.7px;
}

.payment-title-section p:last-child {
    margin: 0;
    color: #777777;
    font-size: 11px;
}


/* =========================================
   CHECKOUT STEP COMPLETED
========================================= */

.checkout-step.completed span {
    background: #171717;
    border-color: #171717;
    color: #ffffff;
}

.checkout-step.completed small {
    color: #171717;
}

.checkout-step-line.active-line {
    background: #171717;
}


/* =========================================
   PAYMENT GRID
========================================= */

.payment-methods-section {
    padding: 25px 17px;
}

.payment-methods-section > h2 {
    margin: 0 0 18px;
    font-size: 18px;
}


/* =========================================
   PAYMENT METHOD CARD
========================================= */

.payment-method-card {
    margin-bottom: 13px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
}

.payment-method-card.selected {
    border-color: #e7193f;
}

.payment-method-card.disabled-payment {
    opacity: 0.6;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 72px;
    padding: 0 14px;

    cursor: pointer;
}

.payment-method-radio {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.payment-method-radio input {
    position: absolute;
    opacity: 0;
}

.payment-method-radio span {
    display: block;

    width: 16px;
    height: 16px;

    border: 1px solid #bbbbbb;
    border-radius: 50%;
}

.payment-method-radio input:checked + span {
    border-color: #e7193f;
    box-shadow: inset 0 0 0 4px #ffffff;
    background: #e7193f;
}

.payment-method-title {
    flex: 1;
}

.payment-method-title strong {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
}

.payment-method-title small {
    color: #888888;
    font-size: 9px;
}

.payment-method-icon {
    min-width: 38px;
    text-align: center;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   PAYMENT CONTENT
========================================= */

.payment-method-content {
    display: none;
    padding: 0 14px 18px;
    border-top: 1px solid #eeeeee;
}


/* =========================================
   UPI
========================================= */

.upi-payment-box {
    padding-top: 18px;
}

.upi-qr-section {
    text-align: center;
}

.upi-qr-image {
    width: 150px;
    height: 150px;

    margin: 0 auto 10px;

    border: 1px solid #eeeeee;
    background: #fafafa;
}

.upi-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-fallback {
    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;

    font-size: 30px;
    font-weight: 800;
    color: #bbbbbb;
}

.upi-qr-section p {
    margin: 0;
    color: #777777;
    font-size: 9px;
}

.upi-app-section {
    margin-top: 22px;
}

.upi-app-title {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
}

.upi-app-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.upi-app-button {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid #dddddd;
    background: #ffffff;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}

.upi-app-button span {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f2f2f2;

    font-size: 9px;
}

.upi-reference-section {
    margin-top: 20px;
}

.upi-reference-section label {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;
}

.upi-reference-section label span {
    color: #999999;
    font-weight: 400;
}

.upi-reference-section input {
    width: 100%;
    height: 45px;

    box-sizing: border-box;

    padding: 0 12px;

    border: 1px solid #dddddd;
    outline: none;

    font-size: 11px;
}

.upi-reference-section input:focus {
    border-color: #e7193f;
}


/* =========================================
   CARD
========================================= */

.card-demo-box {
    padding-top: 18px;
}

.card-demo-box p {
    margin: 0 0 8px;
    font-size: 10px;
    line-height: 1.6;
}

.payment-small-note {
    color: #888888;
}


/* =========================================
   COD
========================================= */

.cod-box {
    padding-top: 18px;
}

.cod-pincode-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px;

    background: #f7f7f7;
}

.cod-pincode-info span {
    color: #777777;
    font-size: 10px;
}

.cod-pincode-info strong {
    font-size: 13px;
}

.cod-box > p {
    margin: 12px 0 0;
    font-size: 10px;
    color: #555555;
}


/* =========================================
   UNAVAILABLE
========================================= */

.payment-unavailable {
    padding: 12px 14px;

    border-top: 1px solid #eeeeee;

    background: #fff5f6;
    color: #d41034;

    font-size: 9px;
}


/* =========================================
   ERROR
========================================= */

.payment-error {
    display: none;

    margin: 15px 0;
    padding: 12px;

    background: #fff1f3;
    color: #d41034;

    font-size: 10px;
}

.payment-error:not(:empty) {
    display: block;
}


/* =========================================
   PLACE ORDER
========================================= */

.place-order-button {
    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;

    background: #e7193f;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;

    cursor: pointer;
}

.place-order-button span {
    font-size: 18px;
}


/* =========================================
   ORDER SUMMARY
========================================= */

.payment-order-summary {
    margin: 0 17px 25px;
    padding: 18px 15px;

    background: #f7f7f7;
}

.payment-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.payment-summary-header h2 {
    margin: 0;
    font-size: 17px;
}

.payment-summary-header span {
    color: #777777;
    font-size: 9px;
}

.payment-delivery-address {
    margin-top: 18px;
    padding-top: 15px;

    border-top: 1px solid #dddddd;
}

.payment-delivery-address small {
    display: block;
    margin-bottom: 6px;

    color: #888888;
    font-size: 8px;
}

.payment-delivery-address strong {
    display: block;
    margin-bottom: 5px;

    font-size: 10px;
}

.payment-delivery-address p {
    margin: 0;

    color: #666666;

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   TABLET / DESKTOP
========================================= */

@media (min-width: 700px) {

    .payment-page-main {
        padding: 30px;
    }

    .payment-title-section {
        padding-left: 0;
        padding-right: 0;
    }

    .payment-checkout-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 35px;

        align-items: start;
    }

    .payment-methods-section {
        padding: 30px 0;
    }

    .payment-order-summary {
        margin: 30px 0 0;

        position: sticky;
        top: 20px;
    }

}
/* =========================================================
   ORDER SUCCESS PAGE
========================================================= */

.order-success-page-body {
    background: #ffffff;
    padding-bottom: 40px;
}

.order-success-main {
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================
   SUCCESS HERO
========================================= */

.order-success-hero {
    padding: 38px 20px 30px;
    text-align: center;
}

.success-check-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #171717;
    color: #ffffff;

    font-size: 27px;
    font-weight: 700;
}

.order-success-hero h1 {
    margin: 7px 0 8px;

    font-size: 29px;
    letter-spacing: -0.8px;
}

.order-success-hero p:last-child {
    margin: 0;

    color: #777777;
    font-size: 11px;
}


/* =========================================
   ORDER IDS
========================================= */

.order-id-section {
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin: 0 17px;

    border: 1px solid #e5e5e5;
}

.order-id-card {
    padding: 16px 12px;

    text-align: center;
}

.order-id-card:first-child {
    border-right: 1px solid #e5e5e5;
}

.order-id-card span {
    display: block;

    margin-bottom: 7px;

    color: #888888;

    font-size: 8px;
    font-weight: 700;
}

.order-id-card strong {
    display: block;

    font-size: 11px;
    word-break: break-word;
}

.order-id-card small {
    display: block;

    margin-top: 6px;

    color: #999999;
    font-size: 7px;
}


/* =========================================
   CURRENT STATUS
========================================= */

.order-status-card {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 22px 17px;
    padding: 18px;

    background: #f7f7f7;
}

.order-status-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;
}

.order-status-label {
    display: block;

    margin-bottom: 4px;

    color: #999999;

    font-size: 8px;
    font-weight: 700;
}

.order-status-card h2 {
    margin: 0 0 5px;

    font-size: 16px;
}

.order-status-card p {
    margin: 0;

    color: #777777;
    font-size: 9px;
}


/* =========================================
   ORDER PROGRESS
========================================= */

.order-progress-section {
    display: flex;
    align-items: flex-start;

    margin: 30px 17px;
}

.order-progress-item {
    position: relative;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.progress-dot {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    border: 1px solid #cccccc;
    border-radius: 50%;

    background: #ffffff;

    color: #999999;

    font-size: 9px;
    font-weight: 700;
}

.order-progress-item.active .progress-dot {
    border-color: #e7193f;
    background: #e7193f;
    color: #ffffff;
}

.progress-line {
    position: absolute;

    top: 13px;
    left: 50%;

    width: 100%;

    height: 1px;

    background: #dddddd;
}

.order-progress-item span {
    margin-top: 9px;

    color: #888888;

    font-size: 7px;
    line-height: 1.4;
}

.order-progress-item.active span {
    color: #171717;
    font-weight: 700;
}


/* =========================================
   PRODUCTS
========================================= */

.success-products-section {
    margin: 0 17px 22px;
}

.success-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}

.success-section-header h2 {
    margin: 0;

    font-size: 17px;
}

.success-section-header span {
    color: #888888;
    font-size: 9px;
}

.success-product-item {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;
}

.success-product-image {
    width: 52px;
    height: 65px;

    flex-shrink: 0;

    background: #f1f1f1;

    overflow: hidden;
}

.success-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.success-product-info {
    flex: 1;
    min-width: 0;
}

.success-product-info h3 {
    margin: 0 0 5px;

    font-size: 10px;
    line-height: 1.5;
}

.success-product-info small {
    color: #888888;
    font-size: 8px;
}

.success-product-item > strong {
    font-size: 11px;
}

.success-divider {
    height: 1px;

    margin: 15px 0;

    background: #dddddd;
}

.success-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.success-total-row span {
    font-size: 12px;
}

.success-total-row strong {
    font-size: 20px;
}


/* =========================================
   DETAILS
========================================= */

.success-details-section {
    margin: 0 17px;
}

.success-detail-box {
    padding: 17px;

    margin-bottom: 12px;

    border: 1px solid #e5e5e5;
}

.success-detail-box small {
    display: block;

    margin-bottom: 9px;

    color: #999999;

    font-size: 8px;
    font-weight: 700;
}

.success-detail-box strong {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
}

.success-detail-box p {
    margin: 0 0 4px;

    color: #666666;

    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   ACTIONS
========================================= */

.success-actions {
    margin: 30px 17px;
}

.track-order-button,
.continue-shopping-button {
    width: 100%;
    height: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.track-order-button {
    margin-bottom: 10px;

    background: #e7193f;
    color: #ffffff;
}

.continue-shopping-button {
    border: 1px solid #171717;

    color: #171717;
    background: #ffffff;
}


/* =========================================
   INFO
========================================= */

.order-success-info {
    margin: 0 17px;
    padding: 18px 15px;

    border: 1px solid #eeeeee;
}

.order-success-info > div {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.order-success-info > div:last-child {
    margin-bottom: 0;
}

.order-success-info > div > span {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #f6f6f6;
    border-radius: 50%;
}

.order-success-info strong {
    display: block;

    margin-bottom: 4px;

    font-size: 10px;
}

.order-success-info small {
    color: #888888;
    font-size: 8px;
    line-height: 1.5;
}


/* =========================================
   TABLET / DESKTOP
========================================= */

@media (min-width: 700px) {

    .order-success-main {
        padding: 35px;
    }

    .order-id-section {
        margin-left: 0;
        margin-right: 0;
    }

    .order-status-card {
        margin-left: 0;
        margin-right: 0;
    }

    .order-progress-section {
        margin-left: 0;
        margin-right: 0;
    }

    .success-content-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);

        gap: 40px;

        align-items: start;
    }

    .success-products-section {
        margin: 0;
    }

    .success-details-section {
        margin: 0;
    }

    .success-actions {
        display: flex;
        gap: 12px;

        margin-left: 0;
        margin-right: 0;
    }

    .track-order-button,
    .continue-shopping-button {
        flex: 1;
    }

    .track-order-button {
        margin-bottom: 0;
    }

    .order-success-info {
        display: flex;
        gap: 25px;

        margin-left: 0;
        margin-right: 0;
    }

    .order-success-info > div {
        flex: 1;
        margin-bottom: 0;
    }

}
/* =========================================================
   TRACK ORDER PAGE
========================================================= */

.track-order-page-body {
    background: #ffffff;
    padding-bottom: 40px;
}

.track-order-main {
    max-width: 950px;
    margin: 0 auto;
}


/* =========================================
   SEARCH
========================================= */

.track-search-section {
    padding: 35px 17px 30px;
    text-align: center;
}

.track-search-section h1 {
    margin: 7px 0 8px;
    font-size: 28px;
}

.track-search-section > p:last-of-type {
    max-width: 350px;
    margin: 0 auto 22px;
    color: #777777;
    font-size: 11px;
    line-height: 1.6;
}

.tracking-search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.tracking-search-form input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 13px;
    border: 1px solid #dddddd;
    outline: none;
    font-size: 11px;
}

.tracking-search-form input:focus {
    border-color: #e7193f;
}

.tracking-search-form button {
    height: 50px;
    padding: 0 15px;
    border: 0;
    background: #e7193f;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

.tracking-error {
    max-width: 500px;
    margin: 10px auto 0;
    color: #d41034;
    font-size: 10px;
}

.tracking-error:empty {
    display: none;
}


/* =========================================
   EMPTY STATE
========================================= */

.tracking-empty-state {
    margin: 10px 17px 0;
    padding: 45px 20px;
    text-align: center;
    background: #f7f7f7;
}

.tracking-empty-state > div {
    font-size: 32px;
}

.tracking-empty-state h2 {
    margin: 14px 0 8px;
    font-size: 17px;
}

.tracking-empty-state p {
    max-width: 300px;
    margin: 0 auto;
    color: #777777;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   RESULT
========================================= */

.tracking-result {
    margin: 0 17px;
}


/* =========================================
   ORDER HEADER
========================================= */

.tracking-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 18px;

    border: 1px solid #e5e5e5;
}

.tracking-order-header small {
    display: block;
    margin-bottom: 5px;
    color: #999999;
    font-size: 8px;
}

.tracking-order-header strong {
    display: block;
    font-size: 12px;
}

.tracking-status-badge {
    padding: 7px 9px;
    background: #171717;
    color: #ffffff;
    font-size: 7px;
    font-weight: 800;
    text-align: center;
}


/* =========================================
   CURRENT STATUS
========================================= */

.tracking-current-status {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 18px;
    padding: 20px;

    background: #f7f7f7;
}

.tracking-status-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;
    background: #ffffff;
    font-size: 21px;
}

.tracking-current-status small {
    display: block;
    margin-bottom: 5px;
    color: #999999;
    font-size: 8px;
}

.tracking-current-status h2 {
    margin: 0 0 5px;
    font-size: 18px;
}

.tracking-current-status p {
    margin: 0;
    color: #777777;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================
   DELIVERY INFO
========================================= */

.tracking-delivery-info {
    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 15px;

    border: 1px solid #e5e5e5;
}

.tracking-delivery-info > div {
    padding: 15px 12px;
}

.tracking-delivery-info > div:first-child {
    border-right: 1px solid #e5e5e5;
}

.tracking-delivery-info small {
    display: block;
    margin-bottom: 6px;
    color: #999999;
    font-size: 7px;
    font-weight: 700;
}

.tracking-delivery-info strong {
    display: block;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================
   TIMELINE
========================================= */

.tracking-timeline-section {
    margin-top: 28px;
    padding: 20px 17px;
    border: 1px solid #eeeeee;
}

.tracking-timeline-section h2 {
    margin: 0 0 23px;
    font-size: 17px;
}

.timeline-item {
    display: flex;
    min-height: 75px;
    opacity: 0.45;
}

.timeline-item.completed,
.timeline-item.current {
    opacity: 1;
}

.timeline-left {
    position: relative;
    width: 35px;
    flex-shrink: 0;
}

.timeline-dot {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    border: 1px solid #cccccc;
    border-radius: 50%;

    background: #ffffff;
    color: #888888;

    font-size: 8px;
    font-weight: 700;
}

.timeline-line {
    position: absolute;

    top: 24px;
    left: 12px;

    width: 1px;
    height: calc(100% - 24px);

    background: #dddddd;
}

.timeline-item.completed .timeline-dot,
.timeline-item.current .timeline-dot {
    background: #e7193f;
    border-color: #e7193f;
    color: #ffffff;
}

.timeline-item.completed .timeline-line {
    background: #e7193f;
}

.timeline-content {
    padding: 2px 0 18px;
}

.timeline-content h3 {
    margin: 0 0 5px;
    font-size: 11px;
}

.timeline-content p {
    margin: 0 0 5px;
    color: #777777;
    font-size: 9px;
    line-height: 1.5;
}

.timeline-content small {
    color: #999999;
    font-size: 8px;
}


/* =========================================
   ORDER DETAILS
========================================= */

.tracking-details-grid {
    margin-top: 25px;
}

.tracking-products-box {
    margin-bottom: 20px;
}

.tracking-products-box h2 {
    margin: 0 0 14px;
    font-size: 17px;
}

.tracking-product-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 0;

    border-bottom: 1px solid #eeeeee;
}

.tracking-product-image {
    width: 48px;
    height: 60px;

    flex-shrink: 0;

    background: #f1f1f1;
    overflow: hidden;
}

.tracking-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tracking-product-info {
    flex: 1;
    min-width: 0;
}

.tracking-product-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
}

.tracking-product-info small {
    color: #888888;
    font-size: 8px;
}

.tracking-product-item > span {
    font-size: 10px;
    font-weight: 700;
}

.tracking-total-row {
    display: flex;
    justify-content: space-between;

    margin-top: 16px;
    padding-top: 16px;

    border-top: 1px solid #dddddd;
}

.tracking-total-row span {
    font-size: 12px;
}

.tracking-total-row strong {
    font-size: 19px;
}


/* =========================================
   ADDRESS
========================================= */

.tracking-address-box {
    padding: 18px;
    background: #f7f7f7;
}

.tracking-address-box > small,
.tracking-payment-info small {
    display: block;
    margin-bottom: 8px;
    color: #999999;
    font-size: 8px;
    font-weight: 700;
}

.tracking-address-box > strong {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
}

.tracking-address-box > p {
    margin: 0;
    color: #666666;
    font-size: 9px;
    line-height: 1.6;
}

.tracking-payment-info {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #dddddd;
}

.tracking-payment-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
}

.tracking-payment-info p {
    margin: 0;
    color: #777777;
    font-size: 9px;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 700px) {

    .track-order-main {
        padding: 35px;
    }

    .track-search-section {
        padding-left: 0;
        padding-right: 0;
    }

    .tracking-empty-state {
        margin-left: 0;
        margin-right: 0;
    }

    .tracking-result {
        margin-left: 0;
        margin-right: 0;
    }

    .tracking-details-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 35px;

        align-items: start;
    }

    .tracking-products-box {
        margin-bottom: 0;
    }

}
/* =========================================
   REAL ORDER SUCCESS PAGE
========================================= */

.order-success-page-body {
    background: #ffffff;
    padding-bottom: 40px;
}

.order-success-main {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 17px;
}


/* SUCCESS HERO */

.order-success-hero {
    text-align: center;
    padding: 25px 0 35px;
}

.success-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #e7193f;
    color: #ffffff;

    font-size: 28px;
    font-weight: 700;
}

.order-success-hero h1 {
    margin: 7px 0 10px;
    font-size: 28px;
}

.success-message {
    max-width: 330px;

    margin: 0 auto;

    color: #777777;

    font-size: 11px;
    line-height: 1.7;
}


/* ORDER CARD */

.success-order-card {
    border: 1px solid #e5e5e5;
}

.success-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 15px;

    border-bottom: 1px solid #eeeeee;
}

.success-info-row:last-child {
    border-bottom: 0;
}

.success-info-row span {
    color: #888888;
    font-size: 8px;
    font-weight: 700;
}

.success-info-row strong {
    text-align: right;
    font-size: 10px;
}

.status-text {
    color: #e7193f;
}


/* TRACK BUTTON */

.track-order-main-button {
    display: block;

    width: 100%;

    margin: 18px 0 35px;

    padding: 16px;

    background: #e7193f;
    color: #ffffff;

    text-align: center;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* PRODUCTS */

.success-products-section {
    margin-bottom: 30px;
}

.success-products-section h2,
.success-address-section h2 {
    margin: 0 0 15px;
    font-size: 18px;
}

.success-product-item {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;
}

.success-product-image {
    width: 50px;
    height: 62px;

    flex-shrink: 0;

    background: #f2f2f2;

    overflow: hidden;
}

.success-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.success-product-info {
    flex: 1;
}

.success-product-info strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
}

.success-product-info small {
    color: #888888;
    font-size: 9px;
}

.success-product-price {
    font-size: 10px;
}

.success-total-row {
    display: flex;
    justify-content: space-between;

    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid #dddddd;
}

.success-total-row span {
    font-size: 12px;
}

.success-total-row strong {
    font-size: 20px;
}


/* ADDRESS */

.success-address-section {
    margin-bottom: 30px;
}

.success-address-box {
    padding: 18px;

    background: #f7f7f7;
}

.success-address-box strong {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;
}

.success-address-box p {
    margin: 0 0 10px;

    color: #666666;

    font-size: 10px;
    line-height: 1.7;
}

.success-address-box small {
    color: #777777;
    font-size: 9px;
}


/* CONTINUE SHOPPING */

.continue-shopping-button {
    display: block;

    width: 100%;

    padding: 16px;

    border: 1px solid #111111;

    color: #111111;

    text-align: center;
    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
}


/* DESKTOP */

@media (min-width: 700px) {

    .order-success-main {
        padding: 45px 35px;
    }

    .success-order-card {
        padding: 5px 25px;
    }

}