:root {
    --color-base: #FF9CF3;
    --color-bg: #fff5fd;
    --color-surface: #ffffff;
    --color-primary: #FF9CF3;
    --color-primary-dark: #e88ae3;
    --color-accent: #ff6b9d;
    --color-accent-hover: #e85a8a;
    --color-pink: #ffb8f5;
    --color-pink-light: #ffe8fc;
    --color-orange: #ff9f43;
    --color-text: #3d2a3d;
    --color-text-muted: #7a5a7a;
    --color-border: #f5d8f2;
    --color-success: #e88ae3;
    --shadow-sm: 0 2px 12px rgba(255,156,243,0.15);
    --shadow-md: 0 4px 24px rgba(255,156,243,0.2);
    --shadow-lg: 0 8px 40px rgba(255,156,243,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

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

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-left: env(safe-area-inset-left);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--color-accent);
}

.cart-trigger {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none !important;
}

/* Intro */
.intro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff5fd 0%, #ffe8fc 50%, #ffd8f8 100%);
    z-index: 0;
}

.intro-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255,156,243,0.2) 0%, rgba(255,159,67,0.1) 40%, transparent 70%);
    pointer-events: none;
}

.intro_wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.intro_title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.intro_subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin: 0 0 2.5rem;
}

.intro_img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 3rem;
}

/* About */
.about {
    background: var(--color-surface);
}

.about_wrapper {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.about_text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.8;
}

/* Advantages */
.friends {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-pink-light) 100%);
}

.friends_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(255,156,243,0.3), rgba(255,159,67,0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.friend {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Products */
.projects {
    background: linear-gradient(180deg, var(--color-pink-light) 0%, var(--color-surface) 100%);
}

.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--color-pink);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-pink-light);
}

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

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0 0 1rem;
}

.btn-add {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: var(--color-primary);
    color: white;
    transition: background 0.2s;
}

.btn-add:hover {
    background: var(--color-primary-dark);
}

.btn-add.added {
    background: var(--color-success);
    pointer-events: none;
}

/* Map section */
.tools {
    background: linear-gradient(135deg, #e88ae3 0%, #FF9CF3 40%, #ff9f43 100%);
    color: white;
}

.tools .section-title {
    color: white;
}

.btn-map {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(255,255,255,0.95);
    color: var(--color-primary) !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-map:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Store Map */
.tools_wrapper--map {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    width: 100%;
}

.map-description {
    text-align: center;
    margin: -1rem 0 2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.store-map-wrapper {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 768px) {
    .store-map-canvas {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 640px) {
    .store-map-wrapper {
        flex-direction: column;
    }

    .store-map-sidebar {
        flex: none;
        order: 2;
        width: 100%;
    }

    .store-map-view {
        order: 1;
        min-width: 100%;
        min-height: 260px;
    }

    .store-map-canvas {
        transform: scale(0.75);
        transform-origin: center center;
    }
}

@media (max-width: 480px) {
    .store-map-canvas {
        transform: scale(0.6);
        transform-origin: center center;
    }

    .store-map-view {
        padding: 0.75rem;
        min-height: 220px;
    }
}

.store-map-sidebar {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-map-view {
    flex: 1;
    min-width: 200px;
    width: 100%;
    overflow: auto;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-overflow-scrolling: touch;
}

.store-map-canvas {
    position: relative;
    width: 504px;
    height: 672px;
    flex-shrink: 0;
}

.store-map-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -252px;
    margin-left: -336px;
    transform: rotate(-90deg);
    transform-origin: 336px 252px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
}

.store-cell {
    position: absolute;
    border-radius: 2px;
    cursor: default;
}

.store-cell.floor {
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.store-cell.floor:hover {
    background: rgba(255,255,255,0.6);
}

.store-cell.wall {
    background: rgba(0,0,0,0.4);
}

.store-product-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--color-orange);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.store-product-marker:hover {
    transform: scale(1.2);
}

.store-product-marker .marker-dot {
    width: 10px;
    height: 10px;
    background: var(--color-orange);
    border-radius: 50%;
}

.store-user-marker {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 11;
    pointer-events: none;
}

.store-user-marker .user-pin {
    display: block;
    width: 20px;
    height: 20px;
    margin: 4px;
    background: var(--color-orange);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.store-route {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}


.store-entrance-label {
    position: absolute;
    font-size: 10px;
    opacity: 0.8;
}

.route-info {
    background: rgba(0,0,0,0.25);
    padding: 1rem;
    border-radius: 8px;
    min-height: 80px;
    color: rgba(255,255,255,0.98);
}

.route-hint {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.route-hint-small {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.95;
}

.route-success {
    margin: 0 0 0.25rem;
}

.route-steps {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-reset-position {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.route-success,
.route-steps {
    color: rgba(255,255,255,0.98);
}

/* Footer */
.bottom {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    padding-bottom: calc(3rem + env(safe-area-inset-bottom));
}

.footer-inner {
    text-align: center;
}

.bottom_logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0 0 1rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-surface);
    z-index: 201;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    color: var(--color-text-muted);
}

.cart-close:hover {
    color: var(--color-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    color: var(--color-text-muted);
    text-align: center;
    padding: 2rem;
    margin: 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.cart-item-qty button:hover {
    background: var(--color-bg);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    line-height: 1;
}

.cart-item-remove:hover {
    color: #c33;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-1px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-content {
    padding: 2rem;
}

.checkout-form .form-group {
    margin-bottom: 1.25rem;
}

.checkout-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.payment-option:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(255,156,243,0.12);
}

.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.card-fields input {
    margin-bottom: 0;
}

.card-fields .form-group:last-child input {
    margin-bottom: 0;
}

.btn-pay {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-pay:hover {
    background: var(--color-primary-dark);
}

.success-content {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--color-primary);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.success-content p {
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
}

.order-number {
    margin-top: 1rem !important;
}

.btn-success {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-success:hover {
    background: var(--color-primary-dark);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .wrapper {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        margin-bottom: 2rem;
    }

    .friends_wrapper {
        gap: 2rem;
    }

    .products_grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 99;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s, opacity 0.3s;
    }

    .nav.open {
        max-height: 300px;
        opacity: 1;
    }

    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.1rem;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .products_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .header-inner {
        height: 64px;
    }

    .intro {
        padding-top: 64px;
        min-height: 90vh;
    }

    .intro_title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .intro_subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .intro_img {
        max-width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    .advantage-item {
        padding: 1.5rem 1rem;
    }

    .friend {
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .card-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 1rem;
    }

    .header-inner {
        height: 56px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav {
        top: 56px;
    }

    .intro {
        padding-top: 56px;
    }

    .intro_title {
        font-size: 1.75rem;
    }

    .intro_subtitle {
        font-size: 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about_text {
        font-size: 1rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .btn-add {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .map-description {
        font-size: 0.9rem;
        margin: -0.5rem 0 1.5rem;
    }

    .store-map-sidebar {
        flex: none;
        width: 100%;
    }

    .store-map-view {
        min-width: 100%;
        padding: 0.75rem;
    }

    .modal-overlay {
        padding: 1rem;
        align-items: flex-end;
    }

    .modal {
        max-height: 85vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-content {
        padding: 1.25rem;
    }

    .checkout-form .form-group {
        margin-bottom: 1rem;
    }

    .bottom {
        padding: 2rem 0;
    }

    .bottom_logo {
        font-size: 1.25rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .cart-header,
    .cart-footer {
        padding: 1rem 1.25rem;
    }

    .cart-items {
        padding: 1rem 1.25rem;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-image {
        width: 56px;
        height: 56px;
    }

    .cart-trigger,
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .btn-add,
    .btn-map,
    .btn-reset-position {
        min-height: 44px;
    }
}
