@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: "Montserrat", sans-serif;
    /* font-family: "Pacifico", cursive; */
    /* font-family: "Plus Jakarta Sans", sans-serif; */
    /* font-family: "Playfair", serif; */
    color: #111
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

ul {
    list-style-type: none;
}

input {
    outline: none
}

img {
    width: 100%;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #1c1c1c80;
    color: #fff;
    font-size: 13px;
    padding: 12px 0;
    text-align: center;
    backdrop-filter: blur(8px);
}

header.sticky .top-bar {
    display: none;
}

/* ================= HEADER ================= */
header {
    position: sticky;
    top: 0;
    background: #ffffff80;
    backdrop-filter: blur(8px);
    z-index: 1000;
}

/* HEADER MAIN */
.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

/* LOGO */
.logo {
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* SEARCH */
.search {
    max-width: 580px;
    width: 580px;
    position: relative;
}
.search ul li{
    font-size: 13px;
    padding: 5px 8px;
    border-bottom: 1px solid #ddd;
}


.search input {
    width: 100%;
    padding: 12px;
    background: #ffffff80;
    border: 1px solid #ddd;
    border-radius: 25px;
}

.search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* UTILS */
.utils {
    display: flex;
    gap: 26px;
    justify-content: flex-end;
    font-size: 12px;
    text-align: center;
}

.utils a {
    display: flex;
    row-gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.utils i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= NAV ================= */
.nav {
    background: #eeeeee80;
    backdrop-filter: blur(10px);
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.menu li {
    position: relative
}

.menu a {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.mbMn {
    display: none;
}

/* SUBMENU */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    display: none;
    z-index: 99;
}

.submenu .submenu {
    left: 100%;
    top: 0;
}

.dropdown a .caret {
    transition: 0.5s all ease;
}

.dropdown.open>a .caret {
    transform: rotate(90deg);
    transition: 0.5s all ease;
}

/* DESKTOP HOVER */
@media (hover:hover) {
    .dropdown:hover>.submenu {
        display: block
    }

    .dropdown:hover>a .caret {
        transform: rotate(180deg);
        transition: 0.5s all ease;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #fff;
    padding: 60px 80px 0;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    gap: 40px;
}

.ftinfo {
    width: 20%;
}

.contactUs {
    width: 20%;
}

.policy {
    width: 10%;
}

.category {
    width: 10%;
}

.information {
    width: 10%;
}

.news {
    width: 15%;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.ftinfo {
    line-height: 1.7;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.footer ul li i {
    color: #111;
    margin-right: 10px;
}

.footer a {
    color: #555;
    text-decoration: none;
}

.footer a:hover {
    color: #111;
}

/* Social Icons */
.social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.news p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.news button {
    margin-top: 20px;
    padding: 12px 26px;
    border: none;
    border-radius: 30px;
    background: #111;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.news button:hover {
    background: #163e8f;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 50px;
    background: #111;
    text-align: center;
    color: #fff;
    padding: 18px 0;
    font-size: 14px;
}


.footermenu {
    display: none;
}

.social a {
    border-radius: 50%;
    transition: .3s;
    font-size: 25px;
    display: inline-block;
    margin-right: 7px;
}

.social a .fa-facebook {
    color: #1877F2;
}

.social a .fa-square-instagram {
    color: #833AB4;
}

.social a .fa-x-twitter {
    color: #000;
}

.social a .fa-tiktok {
    color: #000;
}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
        padding: 10px;
        height: 50px;
    }

    .header-main.active {
        height: auto;
    }

    .hamburger {
        display: block;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        max-height: 73vh;
        overflow-y: scroll;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .submenu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown.open>.submenu {
        display: block;
    }

    .footer {
        padding: 50px 40px 0;
    }

}

/* MOBILE */
@media(max-width:767px) {

    .top-bar {
        display: none;
    }

    .header-main {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo burger"
            "search search"
            "utils utils";
        gap: 10px;
    }

    .utils {
        display: none;
    }

    .logo {
        grid-area: logo;
        font-size: 18px;
        font-weight: 700;
    }

    .hamburger {
        grid-area: burger
    }

    .search {
        display: none;
        max-width: 320px;
        width: 320px;
        position: relative;
        margin: 0 auto;
    }

    .search.active {
        display: inline-flex;
        grid-area: search
    }

    .submenu {
        background: transparent;
    }

    .nav ul li.dropdown>a .caret {
        transform: rotate(270deg);
        transition: 0.5s all ease;
    }

    .nav ul li.dropdown.open>a .caret {
        transform: rotate(360deg);
        transition: 0.5s all ease;
    }

    .nav ul li ul li.dropdown>a .caret {
        transform: rotate(0deg);
        transition: 0.5s all ease;
    }

    .nav ul li ul li.dropdown.open>a .caret {
        transform: rotate(90deg);
        transition: 0.5s all ease;
    }

    .utils {
        grid-area: utils;
        justify-content: center;
    }

    .footer {
        padding: 40px 20px 0;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .ftinfo {
        width: 27%;
    }

    .contactUs {
        width: 27%;
    }

    .policy {
        width: 27%;
    }

    .category {
        width: 27%;
    }

    .information {
        width: 27%;
    }

    .news {
        width: 27%;
    }

    .social {
        justify-content: center;
    }


    .footermenu {
        /* background: #ff7d0180; */
        background: #00000080;
        position: fixed;
        bottom: 0px;
        width: 100%;
        left: 0%;
        padding: 10px;
        /* border-radius: 10px 10px 0 0; */
        display: block;
        z-index: 9999999999999999;
        backdrop-filter: blur(10px);
    }

    .footermenu ul {
        display: flex;
        justify-content: space-around;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }

    .footermenu ul li {
        position: relative;
    }

    .footermenu ul li a {
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footermenu ul li a span {
        font-size: 10px;
    }

    .footermenu ul li a i {
        font-size: 16px;
        margin-bottom: 5px;
        color: #fff;
    }

    .footer-bottom {
        margin-bottom: 52px;
    }

    .mbMn {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .crt {
        display: flex;
        gap: 12px;
    }
}

@media(max-width:480px) {
    .ftinfo {
        width: 100%;
    }

    .contactUs {
        width: 100%;
    }

    .policy {
        width: 100%;
    }

    .category {
        width: 100%;
    }

    .information {
        width: 100%;
    }

    .news {
        width: 100%;
    }
}

/* PROMO STRIP */
.promo {
    background: #f4f2ef;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-size: 13px;
    padding: 18px 0;
}

.promo div {
    border-right: 1px solid #ddd;
}

.promo div:last-child {
    border: none
}

.promo span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(max-width:576px) {
    .promo {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .header-main {
        grid-template-columns: 1fr auto
    }

    .utils {
        display: none
    }
}


.hero-slider {
    overflow: hidden;
}

.heroSwiper {
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .25) 40%,
            rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

/* TEXT */
.hero-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-45%);
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    /* font-family: "Pacifico", cursive; */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(60px, 7vw, 120px);
    font-weight: 800;
    line-height: 1.2;
    font-weight: 600;
}

/* ARROWS */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 5;
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* PAGINATION */
.hero-pagination {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 5;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, .6);
    border-radius: 0;
    margin: 0 3px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
}



/* CATEGORY PILLS */
.hero-categories {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-categories button {
    background: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-categories .categories {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 40px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 16px;
    color: #000;
}

.hero-categories .categories img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hero-categories .categories:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}



@media (max-width: 1024px) {
    .heroSwiper {
        height: 70vh;
    }

    .hero-content {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 65vh;
    }

    .hero-content {
        left: 24px;
    }

    .hero-content h1 {
        font-size: clamp(60px, 10vw, 72px);
    }

    .hero-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .heroSwiper {
        height: 60vh;
    }
}





.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: #111;
}

/* CARD BASE */
.feature-card {
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

/* BACKGROUNDS */
/* .feature-card.beige {
    background-image: url("https://demo.theme-sky.com/cozycorner-modern/wp-content/uploads/2025/04/modern-banner1.jpg");
}

.feature-card.kitchen {
    background-image: url("https://demo.theme-sky.com/cozycorner-modern/wp-content/uploads/2025/04/modern-banner2.jpg");
} */

/* CONTENT */
.feature-inner {
    padding: 32px;
    color: #fff;
}

.feature-inner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.feature-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 13px;
    text-decoration: none;
}

/* HOVER (SUBTLE) */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    opacity: 0;
    transition: opacity .3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .features {
        padding: 30px 30px;
    }

    .feature-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }

    .feature-inner h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
        padding: 7px;
    }

    .feature-card {
        height: 260px;
        border-radius: 20px;
    }
}


.split {
    padding: 20px 10px;
}

.split1,
.split3,
.split5 {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    align-items: center;
    border-radius: 18px;
}

.split2,
.split4 {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    align-items: center;
    border-radius: 18px;
}




.split .left,
.split .right {
    width: 49%;
}

.split .left img {
    border-radius: 4px;
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.split .right h1 {
    font-family: "Playfair", serif;
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 500;

}

.split .right p {
    font-size: 16px;
    color: #767676;
    margin-bottom: 40px;
    line-height: 1.8;
}

.split1 h1,
.split3 h1,
.split5 h1,
.split1 p,
.split3 p,
.split5 p {
    text-align: left;
}

.split2 h1,
.split4 h1,
.split2 p,
.split4 p {
    text-align: right;
}

.split .right ul {
    margin-bottom: 40px;
    padding-left: 0;
}

.split .right ul li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #767676;
}

.split .right ul li i {
    color: #000;
    font-size: 19px;
}

.split .right .cartbtn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 40px 12px 40px;
    color: #000;
    border-radius: 25px;
    font-size: 15px;
    border: 1px solid #000;
    transition: 0.5s all ease;
}

.split .right .cartbtn:hover {
    transition: 0.5s all ease;
    color: #fff;
    background: #000;
}

@media (max-width: 768px) {
    .split .left img {
        border-radius: 10px;
        max-height: 300px;
    }

    .split .right h1 {
        font-size: 28px;
        margin-bottom: 10px;
        text-align: center;
    }

    .split .right p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.7;
        text-align: center;
    }

    .split .right ul {
        margin-bottom: 15px;
    }

    .split .right ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .split .right ul li i {
        font-size: 16px;
    }

    .split1 h1,
    .split2 h1,
    .split3 h1,
    .split4 h1,
    .split5 h1,
    .split1 p,
    .split2 p,
    .split3 p,
    .split4 p,
    .split5 p {
        text-align: center !important;
    }

}

@media (max-width: 480px) {

    .split {
        padding: 10px;
    }

    .split1,
    .split3,
    .split5,
    .split2,
    .split4 {
        flex-direction: column;
        row-gap: 10px;
        padding: 0px;
    }

    .split1 h1,
    .split2 h1,
    .split3 h1,
    .split4 h1,
    .split5 h1,
    .split1 p,
    .split2 p,
    .split3 p,
    .split4 p,
    .split5 p {
        text-align: center !important;
    }

    /* .split:nth-child(even) {
        background: #f1f1f1;
    } */

    .split .left,
    .split .right {
        width: 100%;
    }

    .split2 .left,
    .split4 .left {
        order: 1;
    }

    .split2 .right,
    .split4 .right {
        order: 2;
    }

    .split .left img {
        border-radius: 10px;
        max-height: 300px;
    }

    .split .right h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .split .right p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.7;
    }

    .split .right ul {
        margin-bottom: 15px;
    }

    .split .right ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .split .right ul li i {
        font-size: 16px;
    }


    .category-showcase {
        padding: 7px;
    }

}



.latest-collections {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
}

/* HEADER */
.lc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.lc-head h2 {
    font-size: 32px;
    font-weight: 400;
}

.lc-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lc-actions a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
}

.lc-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
}

/* SLIDER */
.latestSwiper .swiper-slide {
    width: 260px;
    border-right: 1px solid #e5e5e5;
}

/* ITEM */
.lc-item {
    position: relative;
    padding: 30px 20px;
    height: 100%;
}

.lc-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* BADGE */
.lc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
}

.lc-badge.sale {
    background: #f4b000;
}

.lc-badge.sold {
    background: #9a9a9a;
    color: #fff;
}

/* WISHLIST */
.lc-wish {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

/* INFO */
.lc-info small {
    color: #999;
    font-size: 12px;
}

.lc-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 4px 0 14px;
}

/* PRICE */
.lc-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-main {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
}

.price-main.yellow {
    background: #f4b000;
}

.price-outline {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

/* SOLD */
.lc-item.sold img {
    filter: grayscale(1);
    opacity: .6;
}






.category-showcase {
    padding: 10px;
    background: #111;
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    height: 520px;
}

/* CARD BASE */
.cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    text-decoration: none;
    height: 600px;
}

/* IMAGES */
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.cat-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #fff;
}

.cat-card.center .cat-content {
    color: #000;
}

.cat-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
}

/* BUTTON */
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
}

/* VARIANTS */
.cat-btn.light {
    background: #fff;
    color: #000;
}

.cat-btn.dark {
    background: #000;
    color: #fff;
}

/* SUBTLE POLISH (NO LIFT) */
.cat-card img {
    transition: transform .6s ease;
}

.cat-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .cat-card {
        height: 420px;
    }

    .cat-content h2 {
        font-size: 30px;
    }
}







/* MAIN CONTAINER */
.showcase {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.showcase img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOTSPOTS */
.hotspot {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .3);
    animation: pulse 1.8s infinite;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotspot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    background: #fff;
    /* box-shadow:0 0 0 8px rgba(255,255,255,.3); */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, .4)
    }

    100% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0)
    }
}

/* PRODUCT CARD */
.product-card {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    transition: .3s;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

.badge {
    background: #ffb703;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.price {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.price span {
    font-size: 18px;
    font-weight: bold;
    color: #ffb703;
}

.price del {
    color: #aaa;
}







/* ====== SPLIT SECTION ====== */