/*=====================================================
    IMPORT & ROOT
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --bg: #f6f8fb;
    --card: #ffffff;

    --text: #1f2937;
    --muted: #6b7280;

    --border: #e5e7eb;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .05);
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);

    --radius: 22px;

    --transition: .35s ease;

}

/*=====================================================
    RESET
=====================================================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;

    background: var(--bg);

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.7;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

button {

    border: none;

    outline: none;

    cursor: pointer;

    font-family: inherit;

}

ul {

    list-style: none;

}

/*=====================================================
    CONTAINER
=====================================================*/

.container {

    width: min(1320px, 92%);

    margin: auto;

}

/*=====================================================
    BACKGROUND
=====================================================*/

.bg-circle {

    position: fixed;

    border-radius: 50%;

    filter: blur(80px);

    z-index: -1;

    opacity: .25;

}

.bg-1 {

    width: 420px;

    height: 420px;

    background: #60a5fa;

    top: -120px;

    left: -120px;

}

.bg-2 {

    width: 350px;

    height: 350px;

    background: #34d399;

    right: -80px;

    bottom: -80px;

}

/*=====================================================
    NAVBAR
=====================================================*/

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, .9);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(229, 231, 235, .6);

}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 82px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 16px;

}

.logo-icon {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 24px;

    box-shadow: var(--shadow);

}

.logo h2 {

    font-size: 22px;

    font-weight: 700;

}

.logo span {

    font-size: 13px;

    color: var(--muted);

}

nav {

    display: flex;

    align-items: center;

    gap: 30px;

}

nav a {

    font-size: 15px;

    font-weight: 500;

    color: #374151;

    transition: var(--transition);

    position: relative;

}

nav a:not(.btn-login)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

nav a:hover {

    color: var(--primary);

}

nav a:hover::after {

    width: 100%;

}

.btn-login {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

    padding: 12px 24px;

    border-radius: 40px;

    font-weight: 600;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.btn-login:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}

/*=====================================================
    BUTTON
=====================================================*/

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    border-radius: 50px;

    color: #fff;

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    font-weight: 600;

    transition: var(--transition);

    box-shadow: var(--shadow);

}

.btn-primary:hover {

    transform: translateY(-5px);

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    border-radius: 50px;

    border: 2px solid var(--primary);

    color: var(--primary);

    font-weight: 600;

    transition: var(--transition);

}

.btn-outline:hover {

    background: var(--primary);

    color: #fff;

}

/*=====================================================
    HERO
=====================================================*/

.hero {

    padding: 90px 0 70px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 70px;

    align-items: center;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 30px;

    background: #dbeafe;

    color: var(--primary);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 24px;

}

.hero h1 {

    font-size: 58px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 22px;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    color: var(--muted);

    font-size: 18px;

    margin-bottom: 35px;

    max-width: 620px;

}

.hero-action {

    display: flex;

    gap: 18px;

    margin-bottom: 45px;

}

.hero-feature {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

}

.hero-feature div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--muted);

    font-size: 15px;

    font-weight: 500;

}

.hero-feature i {

    color: var(--secondary);

}

/*=====================================================
    DASHBOARD CARD
=====================================================*/

.dashboard-card {

    background: var(--card);

    padding: 35px;

    border-radius: 30px;

    box-shadow: var(--shadow);

}

.dashboard-card h3 {

    margin-bottom: 30px;

    font-size: 24px;

}

.dashboard-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}

.dashboard-grid div {

    padding: 28px;

    background: #f9fafb;

    border-radius: 20px;

    border: 1px solid var(--border);

    text-align: center;

    transition: var(--transition);

}

.dashboard-grid div:hover {

    transform: translateY(-8px);

    background: #eff6ff;

}

.dashboard-grid h2 {

    font-size: 34px;

    color: var(--primary);

    margin-bottom: 6px;

}

.dashboard-grid span {

    color: var(--muted);

    font-size: 14px;

}

/*=====================================================
    PROMO
=====================================================*/

.promo {

    padding: 30px 0 70px;

}

.promo-box {

    background: linear-gradient(135deg, #2563eb, #1d4ed8, #10b981);

    border-radius: 32px;

    padding: 55px 60px;

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    box-shadow: var(--shadow-lg);

}

.promo-box span {

    display: inline-block;

    background: rgba(255, 255, 255, .18);

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 16px;

}

.promo-box h2 {

    font-size: 42px;

    margin-bottom: 12px;

}

.promo-box p {

    opacity: .9;

    max-width: 520px;

}

.promo-box .btn-primary {

    background: #fff;

    color: var(--primary);

}



/*=====================================================
    SECTION TITLE
=====================================================*/

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.section-title span {

    display: inline-block;

    color: var(--primary);

    font-weight: 700;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 15px;

}

.section-title h2 {

    font-size: 42px;

    margin-bottom: 16px;

}

.section-title p {

    color: var(--muted);

    max-width: 650px;

    margin: auto;

}



/*=====================================================
    CATEGORY
=====================================================*/

.categories {

    padding: 90px 0;

}

.category-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));

    gap: 25px;

}

.category-card {

    background: var(--card);

    border-radius: 26px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    border: 1px solid var(--border);

    cursor: pointer;

}

.category-card i {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eff6ff;

    color: var(--primary);

    font-size: 30px;

    margin: auto;

    margin-bottom: 20px;

    transition: .35s;

}

.category-card h4 {

    font-size: 18px;

    font-weight: 600;

}

.category-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.category-card:hover i {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

}



/*=====================================================
    FEATURED PRODUCTS
=====================================================*/

.featured-products {

    padding: 100px 0;

}

.featured-slider {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));

    gap: 35px;

}

.featured-card {

    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    border: 1px solid var(--border);

}

.featured-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.featured-image {

    height: 270px;

    overflow: hidden;

    position: relative;

    background: #fff;

}

.featured-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.featured-card:hover img {

    transform: scale(1.08);

}

.favorite-tag {

    position: absolute;

    top: 18px;

    left: 18px;

    background: #ef4444;

    color: #fff;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

}

.featured-content {

    padding: 28px;

}

.featured-content h3 {

    font-size: 22px;

    margin-bottom: 10px;

    line-height: 1.4;

}

.featured-content h4 {

    color: var(--primary);

    font-size: 28px;

    margin-bottom: 22px;

}

.btn-detail {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    padding: 14px;

    border-radius: 16px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.btn-detail:hover {

    background: var(--primary-dark);

}



/*=====================================================
    PRODUCT
=====================================================*/

.products {

    padding: 100px 0;

}



/*=====================================================
    FILTER
=====================================================*/

.filter-category {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 55px;

}

.filter-btn {

    padding: 13px 26px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 40px;

    color: var(--muted);

    transition: var(--transition);

    font-weight: 500;

}

.filter-btn:hover {

    background: var(--primary);

    color: #fff;

}

.filter-btn.active {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

}



/*=====================================================
    PRODUCT GRID
=====================================================*/

.product-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));

    gap: 32px;

}

.product-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.product-image {

    height: 260px;

    overflow: hidden;

    position: relative;

    background: #fff;

}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.product-card:hover img {

    transform: scale(1.08);

}

.stock {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 8px 14px;

    border-radius: 25px;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

}

.stock.ready {

    background: #10b981;

}

.stock.empty {

    background: #ef4444;

}



/*=====================================================
    PRODUCT BODY
=====================================================*/

.product-body {

    padding: 28px;

}

.product-body h3 {

    font-size: 22px;

    margin-bottom: 10px;

    line-height: 1.4;

}

.product-body p {

    color: var(--muted);

    margin-bottom: 18px;

    min-height: 55px;

}

.product-price {

    color: var(--primary);

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 25px;

}

.product-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

}

.favorite-label {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #ef4444;

    font-size: 14px;

    font-weight: 600;

}

.btn-product {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

    padding: 12px 26px;

    border-radius: 14px;

    font-weight: 600;

    transition: .3s;

}

.btn-product:hover {

    transform: translateY(-3px);

}

/*=====================================================
    WHY US
=====================================================*/

.why-us {

    padding: 100px 0;

    background: #fff;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

}

.why-card {

    background: var(--card);

    padding: 40px 30px;

    border-radius: 28px;

    text-align: center;

    border: 1px solid var(--border);

    transition: var(--transition);

    box-shadow: var(--shadow-sm);

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

}

.why-card i {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #eff6ff;

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    margin-bottom: 25px;

    font-size: 34px;

}

.why-card h3 {

    margin-bottom: 15px;

    font-size: 22px;

}

.why-card p {

    color: var(--muted);

}



/*=====================================================
    BEST SELLING
=====================================================*/

.best-selling {

    padding: 100px 0;

}

.range-filter {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 40px;

}

.range-filter a {

    padding: 12px 25px;

    background: #fff;

    border-radius: 30px;

    border: 1px solid var(--border);

    transition: var(--transition);

    font-weight: 600;

}

.range-filter a.active {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

}

.table-wrapper {

    overflow: auto;

    background: #fff;

    border-radius: 25px;

    box-shadow: var(--shadow);

}

table {

    width: 100%;

    border-collapse: collapse;

}

thead {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

}

th {

    padding: 22px;

    text-align: left;

    font-size: 15px;

}

td {

    padding: 20px;

    border-bottom: 1px solid var(--border);

}

tbody tr {

    transition: .3s;

}

tbody tr:hover {

    background: #f8fbff;

}

.badge-top {

    margin-left: 10px;

    background: #f59e0b;

    color: #fff;

    padding: 4px 10px;

    border-radius: 20px;

    font-size: 11px;

}

.top-product-name {

    display: flex;

    align-items: center;

}



/*=====================================================
    STATISTICS
=====================================================*/

.statistics {

    padding: 100px 0;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.stat-card {

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    border: 1px solid var(--border);

    transition: var(--transition);

}

.stat-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.stat-card i {

    font-size: 36px;

    color: var(--primary);

    margin-bottom: 18px;

}

.stat-card h2 {

    font-size: 42px;

    color: var(--primary);

    margin-bottom: 8px;

}

.stat-card span {

    color: var(--muted);

}



/*=====================================================
    CTA
=====================================================*/

.cta {

    padding: 90px 0;

}

.cta-box {

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: #fff;

    text-align: center;

    border-radius: 35px;

    padding: 70px;

    box-shadow: var(--shadow-lg);

}

.cta-box h2 {

    font-size: 44px;

    margin-bottom: 20px;

}

.cta-box p {

    max-width: 700px;

    margin: auto;

    margin-bottom: 35px;

    opacity: .92;

}

.cta-box .btn-primary {

    background: #fff;

    color: var(--primary);

}



/*=====================================================
    FOOTER
=====================================================*/

footer {

    background: #111827;

    color: #fff;

    margin-top: 100px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding: 80px 0;

}

footer h3 {

    font-size: 28px;

    margin-bottom: 18px;

}

footer h4 {

    margin-bottom: 20px;

}

footer p {

    color: #cbd5e1;

    line-height: 1.8;

}

footer ul li {

    margin-bottom: 14px;

    color: #cbd5e1;

}

footer ul li a {

    transition: .3s;

}

footer ul li a:hover {

    color: #60a5fa;

}

.social {

    display: flex;

    gap: 15px;

}

.social a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #1f2937;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.social a:hover {

    background: var(--primary);

}

.copyright {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px 0;

    text-align: center;

    color: #94a3b8;

}



/*=====================================================
    FLOATING BUTTON
=====================================================*/

.floating-wa {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #25d366;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    box-shadow: var(--shadow);

    z-index: 999;

}

.back-to-top {

    position: fixed;

    right: 30px;

    bottom: 110px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 999;

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

}



/*=====================================================
    ANIMATION
=====================================================*/

section {

    opacity: 0;

    transform: translateY(60px);

    transition: all .8s ease;

}

section.show {

    opacity: 1;

    transform: translateY(0);

}



/*=====================================================
    RESPONSIVE
=====================================================*/

@media(max-width:1100px) {

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .promo-box {

        flex-direction: column;

        text-align: center;

    }

}



@media(max-width:768px) {

    nav {

        display: none;

    }

    .hero {

        padding-top: 60px;

    }

    .hero h1 {

        font-size: 40px;

    }

    .hero-action {

        flex-direction: column;

    }

    .dashboard-grid {

        grid-template-columns: 1fr;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .category-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .product-grid {

        grid-template-columns: 1fr;

    }

    .featured-slider {

        grid-template-columns: 1fr;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .promo-box {

        padding: 40px 30px;

    }

    .cta-box {

        padding: 50px 25px;

    }

    .cta-box h2 {

        font-size: 32px;

    }

}



@media(max-width:480px) {

    .container {

        width: 94%;

    }

    .hero h1 {

        font-size: 32px;

    }

    .category-grid {

        grid-template-columns: 1fr;

    }

    .filter-category {

        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 10px;

    }

    .filter-category::-webkit-scrollbar {

        display: none;

    }

    .btn-primary,

    .btn-outline {

        width: 100%;

    }

    .floating-wa {

        width: 58px;

        height: 58px;

        right: 20px;

        bottom: 20px;

    }

    .back-to-top {

        right: 20px;

        bottom: 90px;

    }

}

/*=====================================================
PRODUCT MODAL
=====================================================*/

.product-modal {

    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, .55);

    backdrop-filter: blur(8px);

    display: none;

    justify-content: center;

    align-items: center;

    padding: 30px;

    z-index: 9999;

}

.product-modal.show {

    display: flex;

}

.modal-content {

    position: relative;

    width: 1100px;

    max-width: 100%;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);

    transform: translateY(40px) scale(.95);

    opacity: 0;

    transition: .35s;

}

.product-modal.show .modal-content {

    transform: translateY(0);

    opacity: 1;

}

.modal-grid {

    display: grid;

    grid-template-columns: 45% 55%;

}

/*=====================================================
IMAGE
=====================================================*/

.modal-image {

    background: #f6f8fb;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 35px;

}

.modal-image img {

    width: 100%;

    aspect-ratio: 1/1;

    object-fit: cover;

    border-radius: 20px;

    transition: .35s;

}

.modal-image img:hover {

    transform: scale(1.04);

}

/*=====================================================
INFO
=====================================================*/

.modal-info {

    padding: 40px;

}

.modal-title {

    font-size: 38px;

    font-weight: 800;

    line-height: 1.2;

    margin: 20px 0 15px;

    color: #1f2937;

}

.modal-price {

    font-size: 42px;

    font-weight: 800;

    color: #0f766e;

    margin-bottom: 30px;

}

/*=====================================================
BADGES
=====================================================*/

.modal-badges {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.modal-badges span {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

}

.badge-category {

    background: #ecfeff;

    color: #0f766e;

}

.badge-stock {

    background: #eef2ff;

    color: #4338ca;

}

/*=====================================================
DESCRIPTION
=====================================================*/

.modal-description {

    margin: 25px 0;

    padding: 22px;

    background: #fafafa;

    border-radius: 18px;

    border: 1px solid #ededed;

}

.modal-description h4 {

    margin-bottom: 10px;

    font-size: 18px;

}

.modal-description p {

    color: #555;

    line-height: 1.8;

}

/*=====================================================
FEATURES
=====================================================*/

.modal-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;

}

.modal-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px;

    border-radius: 14px;

    background: #f8fafc;

    font-weight: 600;

}

.modal-features i {

    color: #16a34a;

}

/*=====================================================
BUTTON
=====================================================*/

.modal-action {

    margin-top: 35px;

}

.btn-whatsapp {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    width: 100%;

    height: 60px;

    border-radius: 18px;

    background: #25D366;

    color: #fff;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .3s;

}

.btn-whatsapp:hover {

    background: #1fb457;

    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);

}

/*=====================================================
CLOSE
=====================================================*/

.modal-close {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: #f3f4f6;

    cursor: pointer;

    transition: .25s;

    z-index: 10;

}

.modal-close:hover {

    background: #ef4444;

    color: #fff;

    transform: rotate(90deg);

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:992px) {

    .modal-grid {

        grid-template-columns: 1fr;

    }

    .modal-image {

        padding: 20px;

    }

    .modal-info {

        padding: 25px;

    }

    .modal-title {

        font-size: 28px;

    }

    .modal-price {

        font-size: 32px;

    }

    .modal-features {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .product-modal {

        padding: 15px;

    }

    .modal-content {

        border-radius: 20px;

    }

    .modal-image {

        padding: 15px;

    }

    .modal-title {

        font-size: 24px;

    }

    .modal-price {

        font-size: 28px;

    }

}
