:root {
    --purple: #7c3aed;
    --pink: #ec4899;
    --orange: #f97316;
    --yellow: #facc15;
    --green: #22c55e;
    --blue: #2563eb;
    --dark: #111827;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --soft: #fff7ed;
    --border: #f3e8ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, .12), transparent 30%),
        radial-gradient(circle at top right, rgba(124, 58, 237, .14), transparent 35%),
        #fff7ed;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-campaign {
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange), var(--yellow));
    color: white;
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 800;
}

.site-header {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(236, 72, 153, .15);
    box-shadow: 0 12px 30px rgba(124, 58, 237, .12);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-image {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.brand strong {
    display: block;
    font-size: 19px;
    color: var(--dark);
}

.brand small {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
}

.menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.menu a:hover {
    color: var(--pink);
}

.admin-link {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white !important;
    padding: 10px 15px;
    border-radius: 999px;
}

.cart-link {
    background: #111827;
    color: white !important;
    padding: 10px 15px;
    border-radius: 999px;
}

.cart-link span {
    background: var(--yellow);
    color: #111827;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 5px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 95px 0;
}

.hero-fancy {
    background:
        linear-gradient(135deg, #7c3aed 0%, #ec4899 45%, #f97316 100%);
}

.blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(3px);
    opacity: .55;
}

.blob-1 {
    width: 280px;
    height: 280px;
    background: #facc15;
    top: -70px;
    right: 8%;
}

.blob-2 {
    width: 220px;
    height: 220px;
    background: #22c55e;
    bottom: -70px;
    left: 6%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 38px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.38);
    color: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.03;
    margin: 0 0 18px;
    text-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.hero p {
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-sale-card {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 34px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.sale-label {
    background: var(--yellow);
    color: #111827;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.hero-sale-card h3 {
    font-size: 30px;
    margin: 22px 0 10px;
}

.sale-price {
    margin-top: 20px;
    background: white;
    color: var(--pink);
    padding: 14px;
    border-radius: 18px;
    font-weight: 900;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: 16px;
    padding: 13px 19px;
    font-weight: 900;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--yellow);
    color: #111827;
    box-shadow: 0 14px 35px rgba(250, 204, 21, .35);
}

.btn-glow {
    background: white;
    color: var(--purple);
    box-shadow: 0 14px 35px rgba(255,255,255,.22);
}

.btn-secondary {
    background: #f3f4f6;
    color: #111827;
}

.btn-small {
    padding: 10px 14px;
    border-radius: 12px;
    background: #111827;
    color: white;
    font-size: 13px;
}

.btn-cart {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    box-shadow: 0 12px 28px rgba(236, 72, 153, .28);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.btn-big {
    margin-right: 8px;
}

.btn-full {
    width: 100%;
    margin-top: 12px;
}

.category-strip {
    margin-top: -28px;
    position: relative;
    z-index: 3;
}

.strip-grid {
    background: white;
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(124, 58, 237, .18);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.strip-grid div {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    padding: 14px;
    border-radius: 18px;
    text-align: center;
    font-weight: 900;
    color: #7c2d12;
}

.section {
    padding: 68px 0;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mini-title {
    color: var(--pink);
    font-weight: 900;
}

.section-title h2 {
    font-size: 36px;
    margin: 6px 0 0;
    color: #111827;
}

.section-title a {
    color: var(--purple);
    font-weight: 900;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    position: relative;
    background: white;
    border: 1px solid rgba(236,72,153,.12);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(124, 58, 237, .12);
}

.fancy-card {
    transition: .25s;
}

.fancy-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(236, 72, 153, .22);
}

.ribbon {
    position: absolute;
    z-index: 4;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #111827;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.product-image {
    height: 260px;
    background:
        radial-gradient(circle at top right, rgba(236,72,153,.22), transparent 35%),
        linear-gradient(135deg, #fdf2f8, #fff7ed);
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 46px;
    font-weight: 900;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 21px;
}

.category {
    display: inline-block;
    background: #fdf2f8;
    color: var(--pink);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.product-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.product-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--purple);
    margin: 0 0 18px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.colorful-features {
    background:
        linear-gradient(135deg, #111827, #581c87);
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-grid div {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 25px;
    border-radius: 24px;
}

.feature-grid p {
    color: rgba(255,255,255,.78);
}

.page-head {
    color: white;
    padding: 64px 0;
}

.fancy-page-head {
    background:
        radial-gradient(circle at right, rgba(250,204,21,.34), transparent 25%),
        linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
}

.page-head h1 {
    font-size: 46px;
    margin: 12px 0 10px;
}

.page-head p {
    color: rgba(255,255,255,.9);
}

.category-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.category-bar a {
    background: white;
    border: 1px solid rgba(236,72,153,.14);
    padding: 11px 17px;
    border-radius: 999px;
    color: var(--dark);
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(124,58,237,.08);
}

.category-bar a.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.detail-image {
    min-height: 470px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 70px;
    font-weight: 900;
    box-shadow: 0 18px 55px rgba(124,58,237,.15);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    background: white;
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(236,72,153,.12);
}

.colorful-detail {
    border: 2px solid rgba(236,72,153,.12);
}

.detail-info h1 {
    font-size: 40px;
    margin: 14px 0;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 18px;
}

.detail-info p {
    color: var(--muted);
    line-height: 1.8;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 24px;
    align-items: start;
}

.cart-box,
.cart-summary {
    background: white;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(124,58,237,.12);
    padding: 24px;
}

.cart-summary {
    position: sticky;
    top: 110px;
}

.cart-summary h2 {
    margin-top: 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3e8ff;
    padding: 15px 0;
}

.summary-line.total {
    font-size: 22px;
    color: var(--purple);
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3e8ff;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    background: #fdf2f8;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-weight: 900;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    margin: 0 0 6px;
}

.cart-item-info p {
    margin: 0;
    color: var(--purple);
    font-weight: 900;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff7ed;
    padding: 8px;
    border-radius: 999px;
}

.qty-box button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: var(--pink);
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total button {
    margin-top: 6px;
    border: 0;
    background: #fee2e2;
    color: #991b1b;
    padding: 7px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.empty-cart,
.empty {
    background: white;
    border: 2px dashed #f9a8d4;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    color: var(--muted);
}

.contact-box,
.form-card,
.table-card,
.stat-card {
    background: white;
    border-radius: 26px;
    box-shadow: 0 18px 55px rgba(124,58,237,.12);
    padding: 30px;
}

.footer {
    background: #111827;
    color: white;
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer p {
    color: #d1d5db;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 15px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(34,197,94,.35);
    z-index: 30;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 86px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(124,58,237,.28);
    transform: translateY(20px);
    opacity: 0;
    transition: .25s;
    z-index: 50;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.flash-area {
    margin-top: 20px;
}

.flash {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
}

.flash-danger {
    background: #fee2e2;
    color: #991b1b;
}

.admin-login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
    display: grid;
    place-items: center;
}

.login-card {
    width: min(430px, calc(100% - 32px));
    background: white;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.login-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 18px;
}

.login-card label,
.form-card label {
    display: block;
    margin: 14px 0 8px;
    font-weight: 900;
}

.login-card input,
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #f3e8ff;
    border-radius: 14px;
    outline: none;
}

.login-card button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.admin-head {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 36px 0;
}

.admin-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card span {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    font-size: 38px;
    margin-top: 8px;
    color: var(--purple);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid #f3e8ff;
    text-align: left;
}

th {
    background: #fdf2f8;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.status.active {
    background: #dcfce7;
    color: #166534;
}

.status.passive {
    background: #fee2e2;
    color: #991b1b;
}

.current-image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
}

.check-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.check-label input {
    width: auto;
}

@media (max-width: 900px) {
    .hero-inner,
    .product-grid,
    .feature-grid,
    .detail-grid,
    .cart-layout,
    .stats-grid,
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .qty-box,
    .cart-item-total {
        grid-column: span 2;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-inner,
    .admin-head-inner,
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

.btn-buy {
    background: linear-gradient(135deg, #111827, #7c3aed);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .28);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.product-actions .btn-buy {
    flex: 1;
}

.product-actions .btn-cart {
    flex: 1;
}


/* =========================================================
   FULL MOBILE RESPONSIVE FIX
   ========================================================= */

.mobile-menu-btn {
    display: none;
    border: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #ffffff;
    font-size: 24px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 900;
}

img {
    max-width: 100%;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 28px, 980px);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-campaign {
        font-size: 12px;
        line-height: 1.5;
        padding: 9px 14px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .nav {
        height: auto;
        min-height: 78px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        position: relative;
    }

    .brand {
        max-width: calc(100% - 60px);
        gap: 9px;
    }

    .brand-image {
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
    }

    .brand strong {
        font-size: 16px;
        white-space: nowrap;
    }

    .brand small {
        font-size: 11px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        width: 100%;
        background: #ffffff;
        border: 1px solid rgba(236,72,153,.15);
        border-radius: 0 0 24px 24px;
        box-shadow: 0 18px 48px rgba(17,24,39,.18);
        padding: 14px;
        z-index: 99;
    }

    .menu.menu-open {
        display: grid;
        gap: 10px;
    }

    .menu a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 13px 14px;
        border-radius: 14px;
        background: #fff7ed;
        color: #111827;
    }

    .cart-link {
        background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
        color: #ffffff !important;
    }

    .hero {
        padding: 58px 0 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-sale-card {
        padding: 24px;
        border-radius: 26px;
    }

    .hero-sale-card h3 {
        font-size: 24px;
    }

    .category-strip {
        margin-top: -22px;
    }

    .strip-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .section {
        padding: 46px 0;
    }

    .section-title {
        display: block;
        margin-bottom: 22px;
    }

    .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-image {
        height: 230px;
    }

    .product-body {
        padding: 18px;
    }

    .product-body h3 {
        font-size: 19px;
    }

    .product-price {
        font-size: 22px;
    }

    .product-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .product-actions .btn {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-head {
        padding: 44px 0;
    }

    .page-head h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .page-head p {
        font-size: 15px;
    }

    .category-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .category-bar a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .detail-image {
        min-height: 300px;
        border-radius: 24px;
    }

    .detail-info {
        padding: 24px;
        border-radius: 24px;
    }

    .detail-info h1 {
        font-size: 30px;
    }

    .price {
        font-size: 28px;
    }

    .detail-info .btn {
        width: 100%;
        margin: 6px 0;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cart-summary {
        position: static;
        order: -1;
    }

    .cart-item {
        grid-template-columns: 76px 1fr;
        gap: 12px;
        align-items: start;
        padding: 14px 0;
    }

    .cart-item-img {
        width: 76px;
        height: 76px;
        border-radius: 16px;
    }

    .cart-item-info h3 {
        font-size: 16px;
    }

    .qty-box {
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: 88px;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: left;
        margin-left: 88px;
    }

    .summary-line.total {
        font-size: 20px;
    }

    .footer {
        padding-bottom: 86px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
        font-size: 14px;
    }

    .toast {
        left: 14px;
        right: 14px;
        bottom: 78px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 22px);
    }

    .brand-image {
        width: 50px;
        height: 50px;
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 10px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .menu {
        top: 72px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 14px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .product-image {
        height: 210px;
    }

    .page-head h1 {
        font-size: 29px;
    }

    .detail-image {
        min-height: 260px;
    }

    .cart-box,
    .cart-summary {
        padding: 18px;
        border-radius: 22px;
    }
}
