body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.top-bar {
    background: linear-gradient(90deg, #0f0f14, #1b1b25);
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #0d6efd;
}

.top-left span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-icons a {
    margin-left: 14px;
    font-size: 16px;
}

@media(max-width:768px) {
    .top-left {
        justify-content: center;
        text-align: center;
        margin-bottom: 6px;
    }
    .social-icons {
        justify-content: center;
    }
}


/************************************************************/

.main-nav {
    padding: 0px !important;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
}

.brand-text {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 38px;
    letter-spacing: -1px;
    color: #0a8f3d;
    text-decoration: none;
    line-height: 1;
}


/* links */

.nav-link {
    font-weight: 600;
    color: #111 !important;
    padding: 22px 16px !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #f4a400 !important;
}

.nav-link.active {
    color: #f4a400 !important;
}


/* ✅ replace bootstrap caret with lucide */

.dropdown-toggle::after {
    display: none !important;
}

.dd-ico {
    width: 16px;
    height: 16px;
    opacity: .75;
    margin-top: 1px;
}


/* Dropdown */

.dropdown-menu {
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    min-width: 220px;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item:hover {
    background: #fff6df;
    color: #111;
}

.menu-ico {
    width: 18px;
    height: 18px;
    color: #0a8f3d;
}


/* Right call box */

.call-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    margin-right: 10px;
    white-space: nowrap;
}

.call-ico {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px dotted #0a8f3d;
    background: #f1fff6;
    color: #0a8f3d;
}

.call-txt {
    line-height: 1.1;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.call-num {
    display: block;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 800;
    color: #f4a400;
    letter-spacing: .2px;
}


/* Icon buttons */

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    /* border: 1px solid #eaeaea; */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #111;
    transition: .2s;
}

.icon-btn:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.badge-dot {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f4a400;
    color: #111;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 7px;
    border-radius: 999px;
    border: 2px solid #fff;
    min-width: 26px;
    text-align: center;
}


/* Toggler */

.navbar-toggler {
    border: 1px solid #eaeaea;
    box-shadow: none !important;
    border-radius: 12px;
    padding: 8px 10px;
}


/* ✅ Desktop collapse only */

@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
    .brand-text {
        font-size: 34px;
    }
    .desk-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mob-only {
        display: none !important;
    }
    .navbar .dropdown {
        position: relative;
    }
    /* ✅ FIX: stable dropdown position (no jump) */
    .navbar .dropdown-menu {
        position: absolute !important;
        inset: auto !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        transform: none !important;
        margin-top: 10px;
    }
    /* ✅ remove focus blue box */
    .nav-link:focus,
    .nav-link:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }
}


/* ===== Offcanvas Premium UI ===== */

.offcanvas-header {
    border-bottom: 1px solid #f0f0f0;
}

.oc-brand {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #0a8f3d;
}

.oc-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    color: #111;
    text-decoration: none;
    font-weight: 650;
}

.oc-menu a:hover {
    background: #f7f7f7;
}

.oc-sub {
    padding-left: 8px;
    margin-top: 6px;
}

.oc-sub a {
    font-weight: 550;
    padding: 10px 10px;
}

.oc-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 12px 0;
}

.oc-call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    background: #fffdf7;
}

.oc-call .num {
    font-weight: 900;
    color: #f4a400;
    font-size: 18px;
    letter-spacing: .2px;
}


/* ✅ colorful social icons */

.soc-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.soc {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    transition: .2s;
}

.soc:hover {
    transform: translateY(-2px);
}

.soc.fb {
    background: #1877F2;
}

.soc.tw {
    background: #1DA1F2;
}

.soc.ig {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.soc.yt {
    background: #FF0000;
}

.soc.li {
    background: #0A66C2;
}

.soc.wp {
    background: #21759B;
}


/*************************/

.menu-pack-sec {
    padding: 0px 0 70px;
    margin-top: -36px;
}

.menu-pack-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: -1px;
    color: #0a8f3d;
    margin: 0 0 22px;
}


/* slider shell */

.menu-swiper {
    position: relative;
    padding-top: 10px
}

.menu-swiper .swiper {
    padding: 10px 6px 10px
}

.menu-swiper .swiper-wrapper {
    align-items: stretch
}


/* nav buttons (top-right like screenshot) */

.menu-nav {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.menu-nav .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 2px solid #e6e6e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfbfbf;
    transition: .2s;
    cursor: pointer;
    user-select: none;
}

.menu-nav .nav-btn:hover {
    border-color: #dcdcdc;
    color: #9e9e9e;
    transform: translateY(-1px);
}

.menu-nav .nav-btn.swiper-button-disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}


/* card */

.menu-card {
    height: 100%;
    background: #fff6df;
    /* warm cream like screenshot */
    border-radius: 30px;
    padding: 0px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: .2s;
}

.menu-card:hover {
    transform: translateY(-2px);
    background: #ffc222;
    transition: 0.9s;
}

.menu-img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 18px;
    overflow: hidden;
}

.menu-img-wrap img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .12));
}

.menu-name {
    font-weight: 800;
    letter-spacing: .6px;
    font-size: 18px;
    color: #111;
    margin: 0;
}

.menu-count {
    margin-top: 10px;
    color: #8a8a8a;
    /*font-size: 15px;*/
    font-size:9px;
    font-weight: 500;
}


/* responsive title */

@media (max-width:991.98px) {
    .menu-pack-title {
        font-size: 44px
    }
    .menu-nav {
        top: -46px
    }
}

@media (max-width:575.98px) {
    .menu-pack-title {
        font-size: 34px
    }
    .menu-nav {
        top: -44px
    }
    .menu-card {
        border-radius: 26px
    }
    .menu-img-wrap {
        width: 140px;
        height: 140px
    }
    .menu-img-wrap img {
        width: 122px;
        height: 122px
    }
}

.feat-sec {
    padding: 36px 0 56px
}

.feat-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    border: 2px dashed #e6e6e6;
    transition: .25s;
    position: relative;
}

.feat-card:hover {
    transform: translateY(-2px);
    border-color: #ffc107;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .06);
}


/* ICON STYLE — same as reference */

.feat-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffc107;
    color: #ffc107;
    background: #fff;
    flex-shrink: 0;
}

.feat-ico i {
    width: 34px;
    height: 34px;
    stroke-width: 2;
}


/* TEXT */

.feat-title {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #111;
}

.feat-desc {
    margin: 0;
    font-size: 15px;
    color: #7b7b7b;
    line-height: 1.55;
}


/* responsive */

@media(max-width:991px) {
    .feat-title {
        font-size: 18px
    }
    .feat-ico {
        width: 58px;
        height: 58px
    }
}


/* Section */

.tp-sec {
    padding: 80px 0px;
    margin-top: -137px;
}

.tp-head {
    text-align: center;
    margin-bottom: 50px
}

.tp-title {
    font-family: Sora, sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: #0a8f3d;
}

.tp-sub {
    max-width: 620px;
    margin: 12px auto 0;
    color: #7b7b7b;
    font-size: 16px;
    line-height: 1.6;
}


/* Card */

.p-card {
    border: 1px solid #ececec;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    transition: .25s;
    position: relative;
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .08);
}


/* Wishlist */

.p-like {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    z-index: 2;
}


/* Image */

.p-media {
    padding: 18px
}

.p-cream {
    background: #fff6df;
    border-radius: 22px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .15));
}


/* Body */

.p-body {
    padding: 0px 20px 20px 20px;
}

.p-cat {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #eee;
    margin-bottom: 12px;
}

.p-cat i {
    width: 15px;
    height: 15px;
    color: #f4a400
}

.p-name {
    font-family: Sora, sans-serif;
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 10px;
}

.p-desc {
    font-size: 14px;
    color: #7b7b7b;
    line-height: 1.6;
    margin-bottom: 18px;
}


/* Footer */

.p-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-price {
    font-weight: 900;
    font-size: 17px;
    color: #f4a400;
}

.p-old {
    text-decoration: line-through;
    color: #bbb;
    margin-right: 10px;
    font-size: 16px;
}

.p-cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #f4a400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-cart i {
    color: #111;
    width: 22px;
    height: 22px
}

@media(max-width:768px) {
    .tp-title {
        font-size: 36px
    }
    .p-cream {
        height: 200px
    }
}

.hero-wrap {
    background: #fbf7f2;
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
}


/* faint pattern images (svg doodles) */

.hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='240' viewBox='0 0 320 240'%3E%3Cg fill='none' stroke='%23cfc7bd' stroke-width='3' opacity='.25'%3E%3Cpath d='M30 50c40-20 70-20 110 0'/%3E%3Cpath d='M45 80c35-18 60-18 95 0'/%3E%3Cpath d='M60 110c30-16 50-16 80 0'/%3E%3C/g%3E%3C/svg%3E") left 30px top 30px/320px 240px no-repeat, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='320' viewBox='0 0 420 320'%3E%3Cg fill='none' stroke='%23cfc7bd' stroke-width='4' opacity='.22'%3E%3Cpath d='M90 220c60-70 180-70 240 0'/%3E%3Cpath d='M120 240c45-52 135-52 180 0'/%3E%3Cpath d='M150 260c30-35 90-35 120 0'/%3E%3C/g%3E%3C/svg%3E") left 240px bottom 10px/420px 320px no-repeat, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23cfc7bd' stroke-width='4' opacity='.22'%3E%3Cpath d='M60 160c40-20 90-20 130 0'/%3E%3Cpath d='M80 185c25-12 60-12 85 0'/%3E%3Cpath d='M135 70c25 20 25 100 0 120'/%3E%3C/g%3E%3C/svg%3E") right 70px center/260px 260px no-repeat;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1
}

.hero-kicker {
    font-family: "Dancing Script", cursive;
    font-size: 54px;
    font-weight: 300;
    color: #f4a400;
    letter-spacing: .2px;
    margin: 0 0 8px;
}

.hero-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    font-size: 72px;
    line-height: 1.02;
    letter-spacing: -1.4px;
    margin: 0 0 18px;
}

.hero-desc {
    color: #7c7c7c;
    max-width: 520px;
    line-height: 1.8;
    margin: 0 0 28px;
    font-size: 15.5px;
}

.hero-btn {
    background: #ffc107;
    border: none;
    color: #111;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: .4px;
    box-shadow: 0 14px 28px rgba(244, 164, 0, .20);
    transition: .2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(244, 164, 0, .26);
}


/* right collage */

.collage {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: start;
}

.big-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    height: 460px;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.small-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    height: 220px;
}

.big-img img,
.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 58px
    }
    .hero-kicker {
        font-size: 44px
    }
    .big-img {
        height: 420px
    }
    .small-img {
        height: 200px
    }
}

@media (max-width: 991.98px) {
    .hero-wrap {
        padding: 56px 0 70px
    }
    .hero-title {
        font-size: 52px
    }
    .hero-kicker {
        font-size: 40px
    }
    .hero-desc {
        max-width: 100%
    }
    .collage {
        margin-top: 34px;
        grid-template-columns: 1fr 1fr;
    }
    .big-img {
        height: 360px
    }
    .small-img {
        height: 170px
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 40px
    }
    .hero-kicker {
        font-size: 34px
    }
    .collage {
        grid-template-columns: 1fr;
        gap: 16px
    }
    .stack {
        gap: 16px
    }
    .big-img {
        height: 320px
    }
    .small-img {
        height: 220px
    }
}

.svc-sec {
    position: relative;
    padding: 70px 0;
    color: #fff;
    overflow: hidden;
    /* ✅ BG COLOR + BG IMAGE BOTH */
    background-color: #572319;
    background-image: url(./assets/images/shape.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* soft dark overlay (same look as reference) */

.svc-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 500px at 30% 50%, rgba(255, 255, 255, .06), transparent 60%), radial-gradient(900px 500px at 75% 60%, rgba(0, 0, 0, .35), transparent 60%);
    pointer-events: none;
}

.svc-inner {
    position: relative;
    z-index: 2;
}


/* ================= LEFT CONTENT ================= */

.svc-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.svc-desc {
    max-width: 520px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.85;
    font-size: 15.5px;
    margin-bottom: 26px;
}

.svc-btn {
    background: #ffc107;
    border: none;
    color: #111;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 10px;
    letter-spacing: .3px;
    box-shadow: 0 18px 40px rgba(255, 193, 7, .25);
    transition: .25s;
}

.svc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(255, 193, 7, .35);
}


/* ================= CENTER BURGER ================= */

.burger-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.burger-img {
    width: min(520px, 92%);
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .45));
    animation: floaty 4.5s ease-in-out infinite;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-12px)
    }
}


/* ================= RIGHT SERVICES ================= */

.svc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 34px;
}

.svc-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.svc-ico {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
}

.svc-ico i {
    width: 26px;
    height: 26px;
    color: #fff;
}

.svc-name {
    margin: 0;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
}


/* ================= RESPONSIVE ================= */

@media(max-width:991px) {
    .svc-title {
        font-size: 44px
    }
    .burger-wrap {
        min-height: 420px
    }
}

@media(max-width:575px) {
    .svc-title {
        font-size: 36px
    }
    .svc-list {
        grid-template-columns: 1fr
    }
    .burger-wrap {
        min-height: 340px
    }
}


/* ===== SECTION ===== */

.ts2-sec {
    padding: 86px 0 72px
}

.ts2-left {
    padding-right: 18px
}

.ts2-kicker {
    font-family: "Dancing Script", cursive;
    font-size: 64px;
    font-weight: 300;
    color: #f4a400;
    margin: 0 0 12px;
    letter-spacing: .2px;
}

.ts2-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -1.6px;
    margin: 0 0 18px;
    color: #111;
}

.ts2-desc {
    color: #7c7c7c;
    line-height: 1.9;
    margin: 0 0 34px;
    max-width: 560px;
    font-size: 14px;
}

.ts2-metrics {
    display: flex;
    gap: 40px;
    /* flex-wrap: wrap; */
    align-items: flex-end;
    margin-top: 18px;
}

.ts2-metrics .m-num {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #0a8f3d;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 10px;
}

.ts2-metrics .m-lbl {
    font-weight: 900;
    color: #111;
    margin: 0;
    font-size: 18px;
}


/* ===== RIGHT SLIDER WRAP ===== */

.ts2-wrap {
    position: relative
}

.ts2-nav {
    position: absolute;
    top: -32px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ts2-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #e6e6e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdbdbd;
    transition: .2s;
}

.ts2-btn:hover {
    border-color: #f4a400;
    color: #f4a400;
    transform: translateY(-1px)
}

.ts2-btn i {
    width: 18px;
    height: 18px
}

.ts2-swiper {
    padding: 30px 0 10px;
}


/* show partial next card like screenshot */

.ts2-swiper .swiper-wrapper {
    align-items: stretch
}

.ts2-swiper .swiper-slide {
    width: 560px;
    /* ✅ matches ref */
    max-width: 560px;
    height: auto;
}


/* ===== CARD (alignment + same height) ===== */

.ts2-card {
    height: 260px;
    /* ✅ fixed same height (desktop) */
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 28px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}


/* top header inside card */

.ts2-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.ts2-user {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ts2-avatarWrap {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
}

.ts2-avatar {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    border: 2px solid #fff;
    display: block;
}


/* green quote badge attached to avatar */

.ts2-quoteBadge {
    position: absolute;
    right: -6px;
    bottom: -6px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #0a8f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 22px rgba(10, 143, 61, .22);
}

.ts2-quoteBadge i {
    width: 16px;
    height: 16px
}

.ts2-name {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin: 0;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

.ts2-role {
    margin: 4px 0 0;
    color: #8b8b8b;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
    font-size: 15px;
}


/* stars (gold outline like ref) */

.ts2-stars {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex: 0 0 auto;
}

.ts2-stars i {
    width: 22px;
    height: 22px;
    color: #f4a400;
    fill: #f4a400;
}

.ts2-stars .empty {
    color: #cfcfcf;
    fill: none;
    stroke: #cfcfcf;
    stroke-width: 2.2;
}

.ts2-quote {
    color: #7c7c7c;
    line-height: 1.9;
    font-size: 16px;
    margin: 0;
    max-width: 92%;
}

.ts2-kicker {
    font-size: 25px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1399.98px) {
    .ts2-title {
        font-size: 68px
    }
    .ts2-kicker {
        font-size: 58px
    }
    .ts2-swiper .swiper-slide {
        width: 520px;
        max-width: 520px
    }
}

@media (max-width: 1199.98px) {
    .ts2-title {
        font-size: 60px
    }
    .ts2-kicker {
        font-size: 52px
    }
    .ts2-metrics {
        gap: 60px
    }
    .ts2-swiper .swiper-slide {
        width: 480px;
        max-width: 480px
    }
}

@media (max-width: 991.98px) {
    .ts2-sec {
        padding: 62px 0
    }
    .ts2-left {
        padding-right: 0
    }
    .ts2-title {
        font-size: 48px
    }
    .ts2-kicker {
        font-size: 44px
    }
    .ts2-metrics {
        gap: 44px
    }
    .ts2-wrap {
        margin-top: 18px
    }
    .ts2-swiper {
        padding-top: 20px
    }
    .ts2-swiper .swiper-slide {
        width: 90vw;
        max-width: 90vw
    }
    .ts2-card {
        height: auto
    }
}

@media (max-width: 575.98px) {
    .ts2-title {
        font-size: 40px
    }
    .ts2-kicker {
        font-size: 38px
    }
    .ts2-metrics .m-num {
        font-size: 54px
    }
}

.green-strip {
    background: #0aa14b;
    padding: 36px 0;
}


/* ITEM */

.strip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}


/* ICON */

.strip-icon {
    min-width: 46px;
    color: #ffb400;
}

.strip-icon i {
    width: 38px;
    height: 38px;
}


/* TEXT */

.strip-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.strip-desc {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #eaf6ef;
    line-height: 1.6;
    max-width: 260px;
}


/* RESPONSIVE */

@media(max-width:991px) {
    .strip-item {
        align-items: flex-start
    }
    .strip-title {
        font-size: 18px
    }
    .strip-desc {
        font-size: 14px;
        max-width: 100%
    }
}

.poco-footer {
    background: linear-gradient(180deg, #1d1d24 0%, #18181f 100%);
    color: #cfcfd6;
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.poco-foot-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    font-size: 18px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.poco-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poco-links a {
    color: #9a9aa4;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
    font-size: 14px;
}

.poco-links a:hover {
    color: #f4a400;
}

.poco-muted {
    color: #9a9aa4;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 10px;
}

.poco-store {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 4px;
    display: inline-block;
}

.poco-store:hover {
    color: #f4a400;
    border-color: #f4a400;
}

.poco-phone {
    margin-top: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #f4a400;
    letter-spacing: .2px;
    text-decoration: none;
    display: inline-block;
}

.poco-email {
    color: #f4a400;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

.poco-strong {
    color: #fff;
    font-weight: 700;
}


/* ===== DIVIDER LINE WITH CENTER LOGO ===== */

.poco-midline {
    position: relative;
    margin-top: 70px;
    padding: 24px 0 8px;
}

.poco-midline:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, .10);
    transform: translateY(-50%);
}

.poco-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poco-brand {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: -3px -3px 0 #0a8f3d, 3px -3px 0 #0a8f3d, -3px 3px 0 #0a8f3d, 3px 3px 0 #0a8f3d;
    padding: 0 28px;
    background: transparent;
}


/* ===== BOTTOM BAR ===== */

.poco-bottom {
    padding: 0px 0 46px;
}

.socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .2s;
}

.soc:hover {
    transform: translateY(-2px);
    color: #111;
}

.soc i {
    width: 20px;
    height: 20px;
}

.copy {
    color: #8f8f98;
    text-align: center;
    font-weight: 500;
}

.copy a {
    color: #f4a400;
    text-decoration: none;
    font-weight: 700;
}

.copy a:hover {
    text-decoration: underline;
}

.payments {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pay {
    height: 26px;
    background: #fff;
    border-radius: 4px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.pay img {
    height: 18px;
    display: block;
}

.pay.cod {
    background: #444;
    color: #fff;
    border-color: #444;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 10px;
    height: auto;
    border-radius: 4px;
}


/* responsive */

@media (max-width: 991.98px) {
    .poco-footer {
        padding-top: 56px;
    }
    .poco-midline {
        margin-top: 44px;
    }
    .poco-brand {
        font-size: 46px;
    }
    .copy {
        text-align: left;
        margin-top: 18px;
    }
    .payments {
        justify-content: flex-start;
        margin-top: 18px;
    }
}

@media (max-width: 575.98px) {
    .poco-brand {
        font-size: 40px;
    }
    .soc {
        width: 46px;
        height: 46px;
    }
}

.sevsecond {
    padding: 90px 0 80px;
    background: #fff;
    font-family: "Poppins", sans-serif;
}


/* top heading */

.sevsecond-top {
    text-align: center;
    margin-bottom: 48px;
}

.sevsecond-kicker {
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    font-size: 54px;
    color: #f4a400;
    margin-bottom: 10px;
}

.sevsecond-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: #1b1b1b;
    line-height: 1.1;
}


/* grid */

.sevsecond-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}


/* item */

.sevsecond-item {
    text-align: center;
    padding: 10px;
}

.sevsecond-ico {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    border: 6px solid #fff;
}

.sevsecond-ico i {
    width: 44px;
    height: 44px;
    color: #fff;
}

.sevsecond-h {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f1f1f;
}

.sevsecond-p {
    color: #8a8a8a;
    font-size: 15px;
    line-height: 1.9;
    max-width: 240px;
    margin: 0 auto;
}


/* colors */

.c1second {
    background: #7fb287;
}

.c2second {
    background: #49a8ad;
}

.c3second {
    background: #b26b6b;
}

.c4second {
    background: #a8926e;
}

.c5second {
    background: #6b7f4b;
}


/* responsive */

@media(max-width:1199px) {
    .sevsecond-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sevsecond-title {
        font-size: 46px;
    }
}

@media(max-width:767px) {
    .sevsecond-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sevsecond-title {
        font-size: 36px;
    }
    .sevsecond-ico {
        width: 105px;
        height: 105px;
    }
}

@media(max-width:420px) {
    .sevsecond-grid {
        grid-template-columns: 1fr;
    }
}

.faqsec {
    padding: 80px 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.faqsec-head {
    text-align: center;
    margin-bottom: 40px;
}

.faqsec-head h2 {
    font-family: "Sora", sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1b1b1b;
}

.faqsec-head p {
    margin-top: 8px;
    color: #888;
    font-size: 16px;
}


/* wrapper */

.faqsec-wrap {
    max-width: 900px;
    margin: 0 auto;
}


/* item */

.faqsec-item {
    margin-bottom: 12px;
}

.faqsec-q {
    width: 100%;
    background: #fbf6e6;
    border: none;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faqsec-icon {
    font-size: 24px;
    font-weight: 800;
    transition: transform .25s ease;
}


/* ✅ animated answer */

.faqsec-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
    padding: 0 22px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.faqsec-item.active .faqsec-a {
    max-height: 220px;
    /* enough for 2-4 lines */
    opacity: 1;
    transform: translateY(0);
    padding: 16px 22px;
}

.faqsec-item.active .faqsec-icon {
    transform: rotate(45deg);
}

.banner-header-sec {
    background: #fff;
    padding: 2px 0 28px;
}

.banner-header-swiper {
    width: 100%;
    padding-bottom: 32px;
}


/* slide */

.banner-header-slide {
    /* border-radius: 22px; */
    overflow: hidden;
}


/* ✅ DESKTOP IMAGE HEIGHT */

.banner-header-slide img {
    width: 100%;
    height: 80vh;
    /* 🔥 desktop height */
    display: block;
    object-fit: cover;
}


/* pagination dots */

.banner-header-swiper .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.banner-header-swiper .swiper-pagination-bullet-active {
    background: #f4a400;
}


/* ✅ arrows */

.banner-header-swiper .swiper-button-next,
.banner-header-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.banner-header-swiper .swiper-button-next:after,
.banner-header-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
    color: #111;
}


/* 🔥 MOBILE – NO CHANGE */

@media(max-width:768px) {
    .banner-header-sec {
        padding: 12px 0 22px;
    }
    .banner-header-slide {
        border-radius: 18px;
    }
    .banner-header-slide img {
        height: 220px;
    }
    /* same as before */
}


/* arrows – desktop */

.banner-header-swiper .swiper-button-next,
.banner-header-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.banner-header-swiper .swiper-button-next:after,
.banner-header-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
    color: #111;
}


/* ✅ MOBILE – arrows HIDE */

@media(max-width:768px) {
    .banner-header-swiper .swiper-button-next,
    .banner-header-swiper .swiper-button-prev {
        display: none !important;
    }
    /* mobile image height same as before */
    .banner-header-slide img {
        height: 220px;
    }
}


/******************************************** Login*/

.auth-sec {
    margin: 2rem 0rem;
}

.auth-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.auth-card {
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.auth-left {
    padding: 34px 28px;
    height: 100%;
    background: linear-gradient(180deg, rgba(244, 164, 0, .10), rgba(0, 168, 80, .08));
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.brand-badge i {
    width: 22px;
    height: 22px;
    color: #f4a400;
}

.auth-left h2 {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    margin: 10px 0 8px;
    line-height: 1.15;
}

.auth-left p {
    color: #666;
    margin: 0;
    line-height: 1.7;
    max-width: 360px;
}

.trust-row {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    background: rgba(255, 255, 255, .7);
    font-weight: 700;
    color: #111;
    font-size: 13px;
}

.trust-pill i {
    width: 18px;
    height: 18px;
    color: #00A850;
}

.auth-right {
    padding: 34px 60px;
}

.auth-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    margin: 0 0 6px;
}

.auth-sub {
    color: #777;
    margin: 0 0 18px;
    line-height: 1.7;
    font-size: 13px;
}

.f-label {
    font-weight: 600;
    color: #111;
    margin: 12px 0 8px;
    font-size: 13px;
}

.f-wrap {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    transition: .2s;
}

.f-wrap:focus-within {
    border-color: #f4a400;
    box-shadow: 0 0 0 3px rgba(244, 164, 0, .12);
}

.f-wrap i {
    width: 18px;
    height: 18px;
    color: #f4a400;
    flex: 0 0 auto;
}

.f-inp {
    border: none;
    outline: none;
    width: 100%;
    color: #111;
    background: transparent;
    font-size: 13px;
}

.f-inp::placeholder {
    color: #aaa;
}

.pw-toggle {
    /* border: 1px solid rgba(0, 0, 0, .06); */
    border: none;
    background: #fff;
    border-radius: 12px;
    /* width: 44px;
    height: 38px; */
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .2s;
    flex: 0 0 auto;
}

.pw-toggle:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.pw-toggle i {
    width: 18px;
    height: 18px;
    color: #111;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.chk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 700;
    font-size: 14px;
}

.chk input {
    width: 18px;
    height: 18px;
    accent-color: #00A850;
}

.link2 {
    color: #f4a400;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.link2:hover {
    text-decoration: underline;
    text-decoration-color: #f4a400;
}

.btn2 {
    height: 48px;
    border-radius: 14px;
    border: none;
    padding: 0 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00A850;
    color: #fff;
    box-shadow: 0 16px 30px rgba(0, 168, 80, .16);
    width: 100%;
    margin-top: 16px;
    transition: .2s;
}

.btn2:hover {
    transform: translateY(-1px);
    filter: brightness(.98);
}

.btn2 i {
    width: 18px;
    height: 18px;
}

.or {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    margin: 16px 0 12px;
}

.or:before,
.or:after {
    content: "";
    height: 1px;
    flex: 1;
    background: #eee;
}

.mini-btn {
    height: 50px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .2s;
    color: #111;
}

.mini-btn:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.mini-btn i {
    width: 18px;
    height: 18px;
    color: #f4a400;
}

.foot {
    text-align: center;
    margin-top: 14px;
    color: #777;
    font-weight: 600;
    font-size: 13px;
}

.foot a {
    color: #00A850;
    font-weight: 600;
    font-size: 13px;
}

.foot a:hover {
    text-decoration: underline;
}

.otp-row {
    display: flex;
    gap: 10px;
}

.otp {
    /* width: 64px;*/
    height: 54px;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    outline: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .04);
    transition: .2s;
}

.row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.msg {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 13px;
    display: none;
    border: 1px solid #eee;
    background: #fff
}

.msg.ok {
    display: block;
    border-color: rgba(0, 168, 80, .25);
    background: rgba(0, 168, 80, .06);
    color: #0a6b39
}

.msg.bad {
    display: block;
    border-color: rgba(244, 164, 0, .35);
    background: rgba(244, 164, 0, .10);
    color: #7a4d00
}


/***************************************************** Products */

.prod2-sec {
    padding: 42px 0 60px;
}

.prod2-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: #111;
    margin: 0;
    text-align: center;
}

.prod2-sub {
    color: #777;
    text-align: center;
    margin: 10px auto 0;
    max-width: 720px;
    line-height: 1.7;
}

.card2 {
    top: 15px;
    position: sticky;
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.card2-h {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
}

.card2-h i {
    width: 18px;
    height: 18px;
    color: #f4a400;
}

.card2-b {
    padding: 16px;
}


/* Filter UI only */

.f2-label {
    font-weight: 900;
    color: #111;
    margin: 10px 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 14px;
}

.f2-inp {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 11px 12px;
    width: 100%;
    outline: none;
}

.f2-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 10px;
}

.f2-range {
    width: 100%;
    accent-color: #00A850;
}

.btn2 {
    height: 44px;
    border-radius: 14px;
    border: none;
    padding: 0 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00A850;
    color: #fff;
    box-shadow: 0 16px 30px rgba(0, 168, 80, .16);
}

.btn2 i {
    width: 18px;
    height: 18px;
}


/* Product card */

.p2-item {
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    overflow: hidden;
    height: 100%;
    transition: .2s;
}

.p2-item:hover {
    transform: translateY(-3px);
    border-color: #f4a400;
}

.p2-img {
    height: 210px;
    background: #fbf6e6;
    overflow: hidden;
}

.p2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p2-body {
    padding: 14px;
}

.p2-cat {
    font-size: 12px;
    font-weight: 800;
    color: #777;
}

.p2-name {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    margin: 6px 0 8px;
    line-height: 1.15;
}

.p2-price {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    font-size: 18px;
    margin: 0;
}

.p2-price span {
    color: #00A850;
}


/* Easy pagination */

.pg2 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 18px;
}

.pg2 button {
    min-width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    transition: .2s;
    padding: 0 14px;
}

.pg2 button:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.pg2 button.active {
    background: #f4a400;
    border-color: #f4a400;
}

.pg2 button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media(max-width:991.98px) {
    .prod2-title {
        font-size: 32px;
    }
}


/*********************************** Products details */

.pd-gallery {
    padding: 18px;
    border-right: 1px solid #f1f1f1;
}

.pd-main {
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    /* background: #fbf6e6; */
    padding: 5px;
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
}

.pd-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
}

.pd-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-wish i {
    width: 18px;
    height: 18px;
}

.pd-thumbs {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    /* justify-content: center; */
}

.pd-thumb {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    border: 1px solid #ececec;
    background: #fff;
    padding: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.pd-thumb.active {
    border-color: #f4a400;
    box-shadow: 0 10px 18px rgba(244, 164, 0, .18);
    transform: translateY(-1px);
}


/* RIGHT details */

.pd-info {
    padding: 24px 24px 18px;
}

.pd-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #121212;
}

.pd-desc {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 520px;
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.pd-price .now {
    font-size: 20px;
    font-weight: 900;
    color: #f4a400;
}

.pd-price .old {
    font-size: 13px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.pd-meta {
    font-size: 14px;
    color: #888;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pd-meta b {
    color: #111;
    font-weight: 700;
}

.pd-share {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-size: 13px;
    margin: 10px 0 16px;
}

.pd-share a {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
}

.pd-share a i {
    width: 16px;
    height: 16px;
}


/* quantity + add to cart row */

.pd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 0 16px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 14px;
}

.qty {
    display: flex;
    align-items: center;
    gap: 8px;
    /* border: 1px solid #eee; */
    border-radius: 14px;
    /* padding: 8px 10px; */
    background: #fff;
}

.qty button {
    width: 37px;
    height: 37px;
    border-radius: 21px;
    border: 1px solid #f7f4ef;
    background: #f7f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty button i {
    width: 16px;
    height: 16px;
}

.qty input {
    width: 44px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 800;
    color: #111;
}

.btn-add {
    height: 55px;
    min-width: 220px;
    border: none;
    border-radius: 14px;
    background: #FFC222;
    color: #202020;
    font-weight: 900;
    letter-spacing: .3px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.btn-add i {
    width: 18px;
    height: 18px;
}

.btn-dd {
    height: 44px;
    width: 44px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-bullets {
    margin: 10px 0 6px;
    color: #7a7a7a;
    font-size: 13px;
    line-height: 1.9;
}

.pd-bullets li {
    margin: 4px 0;
}

.pd-safe {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #666;
    font-size: 13px;
}

.pd-safe b {
    color: #111;
}

.pay-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}


/* Tabs area */

.pd-tabs {
    padding: 22px 0 40px;
}

.pd-tabbar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pd-tabbtn {
    border: none;
    background: #FFC222;
    color: #111;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    min-width: 140px;
}

.pd-tabbtn.ghost {
    background: #fff;
    border: 1px solid #eee;
    color: #111;
}

.pd-tabpanel {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid #f1f1f1;
    padding-top: 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}


/* responsive */

@media (max-width: 991.98px) {
    .pd-gallery {
        border-right: none;
        border-bottom: 1px solid #f1f1f1;
    }
    .pd-main img {
        height: 260px;
    }
    .pd-title {
        font-size: 28px;
    }
    .btn-add {
        min-width: 200px;
        flex: 1;
    }
}

@media (max-width: 576px) {
    .pd-gallery {
        padding: 18px 0px;
    }
    .pd-main {
        /* '0' is the most common way to reset a min-height */
        min-height: 0 !important;
    }
    .pd-info {
        padding: 10px 0px;
    }
    .btn-add {
        width: 100%;
        margin-bottom: 15px;
    }
    .poco-breadcrumb {
        margin-bottom: 15px;
    }
}


/* responsive */

.poco-breadcrumb {
    background-image: url('../images/breadcrumb1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 20px 0px;
    margin-bottom: 42px;
}

.poco-breadcrumb ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.poco-breadcrumb ul li {
    display: inline-block;
    font-size: 14px;
}

.poco-breadcrumb ul li a {
    color: #202020;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

@media (max-width: 576px) {
    .poco-breadcrumb {
        margin-bottom: 15px;
    }
}

.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
    z-index: 9999;
}

.cart-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 44px;
    height: 44px;
    background: #00A850;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.toast-text strong {
    display: block;
    font-size: 15px;
}

.toast-text span {
    font-size: 13px;
    opacity: .85;
}

@media(max-width:576px) {
    .cart-toast {
        left: 16px;
        right: 16px;
        bottom: 20px;
    }
}


/*************************** Checkout */

.ck2-wrap {
    padding: 42px 0 60px;
}

.ck2-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #111;
    letter-spacing: -1px;
    margin: 0 0 6px;
    font-size: 35px;
}

.ck2-sub {
    color: #777;
    margin: 0 0 22px;
    line-height: 1.7;
}

.ck2-card {
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.ck2-card-h {
    padding: 16px 18px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
}

.ck2-card-h i {
    width: 18px;
    height: 18px;
    color: #f4a400;
}

.ck2-card-b {
    padding: 18px;
}


/* ===== Premium Table ===== */

.ck2-table-wrap {
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.ck2-table {
    margin: 0;
}

.ck2-table thead th {
    background: #fbf6e6;
    border-bottom: 1px solid #f0ece0 !important;
    color: #222;
    font-weight: 900;
    font-size: 13px;
    padding: 14px 14px;
    white-space: nowrap;
}

.ck2-table tbody td {
    padding: 14px 14px;
    border-bottom: 1px solid #f6f6f6;
    vertical-align: middle;
}

.ck2-prod {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.ck2-thumb {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    overflow: hidden;
    background: #fbf6e6;
    border: 1px solid #f0f0f0;
    flex: 0 0 auto;
}

.ck2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ck2-pname {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin: 0;
}

.ck2-pmeta {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}

.ck2-price {
    font-weight: 900;
    color: #111;
    white-space: nowrap;
}

.ck2-subtotal {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    color: #111;
    white-space: nowrap;
}


/* qty */

.ck2-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 7px 9px;
    background: #fff;
    width: max-content;
}

.ck2-qty button {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    border: 1px solid #efefef;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ck2-qty button i {
    width: 16px;
    height: 16px;
}

.ck2-qty input {
    width: 42px;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 900;
    color: #111;
    background: transparent;
}


/* remove */

.ck2-remove {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s;
}

.ck2-remove:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.ck2-remove i {
    width: 18px;
    height: 18px;
    color: #111;
}


/* summary */

.ck2-sum-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    color: #666;
    font-weight: 600;
}

.ck2-sum-row b {
    color: #111;
}

.ck2-divider {
    height: 1px;
    background: #f1f1f1;
    margin: 10px 0;
}

.ck2-total {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #111;
}


/* payment cards */

.ck2-pay {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}

.ck2-payopt {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 14px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: .15s;
    background: #fff;
}

.ck2-payopt:hover {
    border-color: #f4a400;
    transform: translateY(-1px);
}

.ck2-payopt input {
    margin-top: 4px;
}

.ck2-payopt b {
    display: block;
    font-weight: 900;
}

.ck2-payopt span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 2px;
    line-height: 1.6;
}

.ck2-btn {
    height: 52px;
    border-radius: 16px;
    border: none;
    background: #00A850;
    color: #fff;
    font-weight: 900;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 34px rgba(0, 168, 80, .18);
    transition: .2s;
}

.ck2-btn:hover {
    transform: translateY(-2px);
}

.ck2-btn i {
    width: 18px;
    height: 18px;
}


/* toast */

.ck2-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
}

.ck2-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.ck2-tico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #00A850;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck2-tico i {
    width: 20px;
    height: 20px;
}

.ck2-ttxt strong {
    display: block;
    font-size: 15px;
}

.ck2-ttxt span {
    display: block;
    font-size: 13px;
    opacity: .85;
    margin-top: 2px;
}

@media(max-width:991.98px) {
    .ck2-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .ck2-toast {
        left: 16px;
        right: 16px;
        bottom: 20px;
    }
    .ck2-prod {
        min-width: 220px;
    }
}


/**************************************** Order success */

.os-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}


/* soft blobs */

.os-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: .35;
    z-index: 0;
}

.os-blob.one {
    background: #fff4dd;
    top: -120px;
    left: -120px;
}


/* .os-blob.two {
            background: #00A850;
            bottom: -260px;
            right: -260px;
        } */

.os-card {
    position: relative;
    z-index: 2;
    border: 1px solid #efefef;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.os-top {
    padding: 26px 26px 14px;
    /* background: linear-gradient(180deg, rgba(244, 164, 0, .14), rgba(255, 255, 255, 0)); */
    border-bottom: 1px solid #f1f1f1;
}

.os-title {
    font-family: "Sora", sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #111;
    letter-spacing: -1px;
    margin: 10px 0 6px;
    animation: fadeUp .6s ease both;
}

.os-sub {
    color: #777;
    margin: 0;
    line-height: 1.7;
    animation: fadeUp .7s ease both;
}


/* ✅ check animation */

.os-check {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: #00A850;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 35px rgba(0, 168, 80, .20);
    animation: pop .55s ease both;
}

.os-check svg {
    width: 46px;
    height: 46px;
    stroke: #fff;
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw 0.8s .25s ease forwards;
}

.os-body {
    padding: 18px 26px 26px;
}

.os-pillrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.os-pill {
    border: 1px solid #eee;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 13px;
    color: #111;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp .85s ease both;
}

.os-pill i {
    width: 16px;
    height: 16px;
    color: #f4a400;
}

.os-details {
    margin-top: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    overflow: hidden;
    animation: fadeUp .95s ease both;
}

.os-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #f6f6f6;
    color: #666;
    font-weight: 600;
    background: #fff;
}

.os-row:last-child {
    border-bottom: none;
}

.os-row b {
    color: #111;
    font-family: "Sora", sans-serif;
    font-weight: 900;
}

.os-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    animation: fadeUp 1.05s ease both;
}

.os-btn {
    height: 52px;
    border-radius: 16px;
    border: none;
    padding: 0 18px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: .2s;
}

.os-btn i {
    width: 18px;
    height: 18px;
}

.os-btn.primary {
    background: #f4a400;
    color: #111;
    box-shadow: 0 18px 35px rgba(244, 164, 0, .18);
    flex: 1;
    min-width: 210px;
}

.os-btn.primary:hover {
    transform: translateY(-2px);
}

.os-btn.ghost {
    background: #fff;
    color: #111;
    border: 1px solid #eee;
    min-width: 180px;
}

.os-btn.ghost:hover {
    border-color: #f4a400;
    transform: translateY(-2px);
}


/* confetti canvas */

#confetti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}


/* small note */

.os-note {
    margin-top: 12px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

@keyframes pop {
    0% {
        transform: scale(.75);
        opacity: 0
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(12px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

@media(max-width:576px) {
    .os-title {
        font-size: 30px;
    }
    .os-top,
    .os-body {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/*************************************************** My Account ---*/

.pageWrap {
    padding: 26px 0 60px;
}

.panel {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .06);
}

.sidebar {
    padding: 18px;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
    border-right: 1px solid #eef2fb;
    height: 100%;
}

.userCard {
    padding: 14px;
    border: 1px solid #eef2fb;
    border-radius: 18px;
    background: #fff;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #e9fff0;
    border: 1px solid #cdf6da;
    display: grid;
    place-items: center;
    color: #0ea34a;
    flex: 0 0 auto;
}

.userCard .meta small {
    display: block;
    color: #6b7280;
    font-weight: 600;
    line-height: 1.15;
}

.userCard .meta b {
    display: block;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.sideNav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.sideBtn {
    width: 100%;
    border: 1px solid #eef2fb;
    background: #fff;
    border-radius: 16px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: .15s;
}

.sideBtn:hover {
    background: #f3f6ff;
}

.sideBtn.active {
    background: #0aa24a;
    border-color: #0aa24a;
    color: #fff;
}

.sideBtn .ic {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #f5f7fb;
    border: 1px solid #eef2fb;
    color: #111827;
    flex: 0 0 auto;
}

.sideBtn.active .ic {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .18);
    color: #ffe08a;
}

.logoutBtn {
    margin-top: 10px;
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.logoutBtn:hover {
    background: #0b1220;
    border-color: #0b1220;
    color: #fff;
}

.content {
    padding: 22px 22px 26px;
}

.contentHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.contentHead h4 {
    margin: 0;
    font-weight: 900;
    letter-spacing: .2px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f7ff;
    border: 1px solid #e8eeff;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.miniCard {
    border: 1px solid #eef2fb;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .05);
    height: 100%;
}

.miniTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.miniTop .badgeIcon {
    width: 42px;
    height: 42px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #e9fff0;
    border: 1px solid #cdf6da;
    color: #0ea34a;
}

.miniCard h6 {
    margin: 0;
    font-weight: 900;
}

.miniCard p {
    margin: 6px 0 0;
    color: #6b7280;
    font-weight: 600;
    font-size: 13px;
}

.count {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .2px;
    margin-top: 10px;
}

.primaryBtn {
    background: #0aa24a;
    border-color: #0aa24a;
    color: #fff;
    font-weight: 800;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 16px 34px rgba(10, 162, 74, .22);
}

.primaryBtn:hover {
    background: #089142;
    border-color: #089142;
    color: #fff;
}

.softBtn {
    background: #f4f7ff;
    border: 1px solid #e8eeff;
    border-radius: 16px;
    font-weight: 800;
    padding: 8px 14px;
}

@media (max-width:991px) {
    .sidebar {
        border-right: 0;
        border-bottom: 1px solid #eef2fb;
    }
    .content {
        padding: 18px;
    }
}


/*---------------------- Profile */


/* ===== Header Profile Dropdown (Premium) ===== */

.hdr-profile {
    position: relative;
    display: inline-flex;
}

.prof-btn {
    position: relative;
}

.prof-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 310px;
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(17, 24, 39, .12);
    padding: 12px;
    display: none;
    z-index: 99999;
}

.prof-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 18px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #e9edf5;
    border-top: 1px solid #e9edf5;
    transform: rotate(45deg);
}

.prof-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 10px;
}

.prof-avatar {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #e9fff0;
    border: 1px solid #cdf6da;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
    position: relative;
}

.prof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof-fallback {
    font-weight: 900;
    color: #0ea34a;
    letter-spacing: .5px;
}

.prof-meta {
    min-width: 0;
}

.prof-hello {
    font-size: 12px;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 2px;
}

.prof-name {
    font-size: 14px;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
}

.prof-mail {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

.prof-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #eef2fb, transparent);
    margin: 8px 0;
}

.prof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    transition: .15s;
}

.prof-item i {
    width: 18px;
    height: 18px;
    color: #111827;
    opacity: .85;
}

.prof-item:hover {
    background: #f4f7ff;
}

.prof-item.danger {
    color: #dc2626;
}

.prof-item.danger i {
    color: #dc2626;
    opacity: 1;
}


/* ===== Mobile dropdown positioning fix ===== */

@media (max-width: 991px) {
    .hdr-profile .prof-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: min(92vw, 320px);
    }
    .hdr-profile .prof-menu::before {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) rotate(45deg);
    }
}

.form-label {
    font-weight: 800;
    color: #111827;
    font-size: 13px;
}

.form-control {
    border-radius: 14px;
    border: 1px solid #e9edf5;
    padding: 12px 12px;
    font-weight: 600;
}

.form-control:focus {
    box-shadow: none;
    border-color: #b7e7c8;
}

.inputIcon {
    position: relative;
}

.inputIcon .left {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6b7280;
}

.inputIcon .form-control {
    padding-left: 42px;
}

.passToggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: none;
    background: #fff;
    display: grid;
    place-items: center;
    color: #111827;
}

.passToggle:hover {
    background: #f7f9ff;
}

.primaryBtn {
    background: #0aa24a;
    border-color: #0aa24a;
    color: #fff;
    font-weight: 800;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 16px 34px rgba(10, 162, 74, .22);
}

.primaryBtn:hover {
    background: #089142;
    border-color: #089142;
    color: #fff;
}

.softBtn {
    background: #f4f7ff;
    border: 1px solid #e8eeff;
    border-radius: 16px;
    font-weight: 800;
    padding: 12px 14px;
}

@media (max-width:991px) {
    .sidebar {
        border-right: 0;
        border-bottom: 1px solid #eef2fb;
    }
    .content {
        padding: 18px;
    }
}


/* ===== Add Address Modal (Theme) ===== */

.addr-modal {
    border: 1px solid #e9edf5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(17, 24, 39, .12);
}

.addr-head {
    padding: 18px 18px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border-bottom: 1px solid #eef2fb;
}

.addr-title {
    font-weight: 900;
    letter-spacing: .2px;
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.addr-sub {
    margin-top: 4px;
    font-weight: 600;
    color: #6b7280;
    font-size: 13px;
}

.addr-close {
    opacity: .8;
}

.addr-close:hover {
    opacity: 1;
}

.addr-body {
    padding: 18px;
    background: #fff;
}

.addr-label {
    font-weight: 800;
    color: #111827;
    font-size: 13px;
    margin-bottom: 6px;
}

.addr-inp {
    border-radius: 14px;
    border: 1px solid #e9edf5;
    padding: 12px 12px;
    font-weight: 600;
    color: #111827;
    font-size: 13px;
}

.addr-inp::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.addr-inp:focus {
    box-shadow: none;
    border-color: #b7e7c8;
}

.addr-foot {
    padding: 14px 18px 18px;
    background: #fff;
    border-top: 1px solid #eef2fb;
    gap: 10px;
}

.addr-btn {
    border-radius: 16px;
    padding: 11px 16px;
    font-weight: 900;
    border: 1px solid transparent;
}

.addr-btn.soft {
    background: #f4f7ff;
    border-color: #e8eeff;
    color: #111827;
}

.addr-btn.primary {
    background: #0aa24a;
    border-color: #0aa24a;
    color: #fff;
    box-shadow: 0 16px 34px rgba(10, 162, 74, .22);
}

.addr-btn.primary:hover {
    background: #089142;
    border-color: #089142;
    color: #fff;
}


/* Mobile padding */

@media (max-width:576px) {
    .addr-body {
        padding: 14px;
    }
    .addr-head {
        padding: 16px;
    }
    .addr-foot {
        padding: 12px 16px 16px;
    }
}


/* ✅ Premium Delete Modal (theme match) */

.delModal {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .18);
    overflow: hidden;
}

.delHead {
    border: 0;
    padding: 18px 18px 10px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.delIcon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #ffe5e7;
    border: 1px solid #ffd0d6;
    color: #b42318;
    flex: 0 0 auto;
}

.delTitleWrap {
    flex: 1;
    min-width: 0;
}

.delTitle {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    color: #101828;
}

.delSub {
    font-size: 13px;
    margin-top: 2px;
    color: #667085;
}

.delClose {
    opacity: .6;
}

.delClose:hover {
    opacity: 1;
}

.delBody {
    padding: 10px 18px 18px;
}

.delNote {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: #344054;
}

.delFoot {
    border: 0;
    padding: 0 18px 18px;
    gap: 10px;
}

.delCancel {
    background: #fff;
    border: 1px solid #e4e7ec;
    color: #344054;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
}

.delCancel:hover {
    background: #f9fafb;
}

.delConfirm {
    background: #ef4444;
    border: 1px solid #ef4444;
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(239, 68, 68, .22);
}

.delConfirm:hover {
    filter: brightness(.96);
    color: #fff;
    background: #ef4444;
}


/* =========================
   CHECKOUT - ADDRESS PICKER
========================= */

.ck2-addr-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.ck2-addr-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ck2-addr-note {
    font-size: 13px;
    color: #6b7280;
}

.ck2-addr-addbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    text-decoration: none;
    color: #111827;
    font-size: 13px;
    background: #fff;
}

.ck2-addr-addbtn i {
    width: 16px;
    height: 16px;
}

.ck2-addr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ck2-addr-opt {
    display: block;
    cursor: pointer;
    margin: 0;
}

.ck2-addr-opt input {
    display: none;
}

.ck2-addr-box {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    padding: 14px 14px;
    transition: .18s ease;
}

.ck2-addr-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ck2-addr-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ck2-addr-tag {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    color: #111827;
}

.ck2-addr-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    color: #111827;
}

.ck2-addr-chip i {
    width: 14px;
    height: 14px;
    opacity: .85;
}

.ck2-addr-body {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 10px;
}

.ck2-addr-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.ck2-addr-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

.ck2-addr-small i {
    width: 14px;
    height: 14px;
}

.ck2-addr-opt:hover .ck2-addr-box {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.ck2-addr-opt input:checked+.ck2-addr-box {
    border: 2px solid #0aa24a;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

@media (min-width: 992px) {
    .ck2-addr-grid {
        grid-template-columns: 1fr;
    }
}