/* Reset and base styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    font-family: 'Manrope', sans-serif;
}

button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}

a {
    text-decoration: none;
}

/* Main Container */
.element-light {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 67px;
    background: #f4f4f4;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 61px;
    height: 51px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link.active {
    color: #ef233c;
    font-weight: 600;
}

.nav-link:hover {
    color: #ef233c;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher {
    display: flex;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-right: 10px;
}

.lang-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: #a9b0c3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 40px;
}

.lang-btn:hover {
    background: rgba(239, 35, 60, 0.1);
    color: #ef233c;
}

.lang-btn.active {
    background: #ef233c;
    color: white;
}

.lang-btn.active:hover {
    background: #d11a2b;
}

.cart-btn {
    background: #ef233c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cart-btn:hover {
    background: #d11a2b;
}

.login-btn {
    background: white;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background: #f8fafc;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #000;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.mobile-logo {
    width: 50px;
    height: 42px;
    object-fit: contain;
}


.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(239, 35, 60, 0.1);
    color: #ef233c;
}

.mobile-menu-actions {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.mobile-language-switcher {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-language-label {
    font-size: 16px;
    color: #64748b;
}

.mobile-language-buttons {
    display: flex;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-lang-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn.active {
    background: #ef233c;
    color: white;
}

.mobile-cart-btn {
    background: #ef233c;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-cart-btn:hover {
    color: white;
}

.mobile-login-btn {
    background: transparent;
    color: #000;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 91px 20px 0;
}

/* Override conflicting styles from screenshots */
.main.main {
    position: static;
    width: auto;
    height: auto;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
}

.heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    text-align: left;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 40px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-link {
    color: #666;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #ef233c;
}

.breadcrumb-separator {
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #000;
    font-weight: 500;
}

/* Cart Content - Модульная структура */
.cart-content {
    min-height: 400px;
}

/* Cart Grid - основная сетка корзины */
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.empty-cart-description {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.empty-cart-btn {
    display: inline-block;
    background: #ef233c;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.empty-cart-btn:hover {
    background: #d11a2b;
    transform: translateY(-1px);
}

/* Cart Items Section - левая колонка */
.cart-items-section {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
}

.cart-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Cart Items List - список товаров */
.cart-items-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Cart Item Card - модульная Grid карточка товара */
.cart-item-card {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "image name name remove"
        "image options price remove"
        "image quantity price remove";
    gap: 12px 16px;
    padding: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
    align-items: center;
}

.cart-item-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Grid Areas */
.cart-item-image {
    grid-area: image;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-name {
    grid-area: name;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.cart-item-options {
    grid-area: options;
    display: flex;
    gap: 8px;
}

.cart-item-option {
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-item-option.active {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

.cart-item-option:hover {
    border-color: #cbd5e1;
}

.cart-item-price {
    grid-area: price;
    font-size: 18px;
    font-weight: 700;
    color: #ef233c;
}

.cart-item-quantity {
    grid-area: quantity;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-remove {
    grid-area: remove;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 4px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.remove-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: #fecaca;
}

/* Cart Summary Section - правая колонка */
.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.cart-summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Summary Items */
.cart-summary-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cart-summary-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.cart-summary-label {
    font-size: 16px;
    color: #64748b;
}

.cart-summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    text-align: right;
}

.cart-summary-total {
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.cart-summary-total .cart-summary-label {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.cart-summary-total .cart-summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #ef233c;
}

/* Checkout Button */
.cart-checkout-btn {
    width: 100%;
    background: #ef233c;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-checkout-btn:hover {
    background: #d11a2b;
    transform: translateY(-1px);
}

.cart-checkout-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

/* Footer styles are now imported from index.css */

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 18px;
    right: 20px;
    width: 136px;
    height: 46px;
    background: #ef233c;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    cursor: pointer;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s;
    z-index: 1000;
}

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

.whatsapp-icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.whatsapp-button span {
    color: white;
    font-size: 16px;
    font-weight: 400;
}

/* Product Suggestions Section - Full Width */
.product-suggestions {
    margin: 0 -20px 30px -20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 0 20px 0;
}

.product-suggestions__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.product-suggestions__title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.product-suggestions__divider {
    width: 40px;
    height: 2px;
    background-color: #ef233c;
    border-radius: 1px;
}

.product-suggestions__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.product-suggestions__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 28px;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-suggestions__arrow:hover {
    background: #ef233c;
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 35, 60, 0.3);
}

.product-suggestions__arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.product-suggestions__arrow--left {
    left: -20px;
}

.product-suggestions__arrow--right {
    right: -20px;
}

.product-suggestions__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.product-suggestions__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 10px 0;
    flex: 1;
}

.product-suggestions__grid::-webkit-scrollbar {
    display: none;
}

.product-suggestions__card {
    background-color: #f4f4f4;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100px;
    min-width: 280px;
    flex-shrink: 0;
    padding: 10px;
    gap: 12px;
}

.product-suggestions__image {
    width: 121px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

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

.product-suggestions__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    height: 100%;
    padding: 5px 0;
}

.product-suggestions__name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 19.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

.product-suggestions__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-suggestions__price {
    font-size: 16px;
    font-weight: 700;
    color: #ef233c;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.product-suggestions__btn {
    width: 30px;
    height: 30px;
    background-color: #ef233c;
    border: none;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.product-suggestions__btn:hover {
    background-color: #d11a2b;
}

.product-suggestions__cross {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

/* Styles from screenshots - commented out to prevent conflicts with cart layout */
/* .main {
    position: relative;
    width: 1232px;
    height: 964px;
} */

.main .nav {
    position: absolute;
    width: calc(100% - 32px);
    top: 76px;
    left: 16px;
    height: 19px;
    display: flex;
}

.main .link {
    width: 53.42px;
    align-self: center;
    display: flex;
}

.main .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53.78px;
    height: 19px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.main .div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.75px;
    height: 19px;
    margin-left: 8px;
    opacity: 0.5;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-2 {
    width: 55.53px;
    height: 19px;
    margin-left: 7.7px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .background-border {
    position: absolute;
    width: calc(100% - 453px);
    top: 127px;
    left: 16px;
    height: 837px;
    background-color: #f4f4f4;
    border-radius: 12px;
    border: 1px solid;
    border-color: #ffffff14;
}

/* .main .heading стиль убран, так как конфликтовал с основным .heading */

.main .horizontal-border {
    position: absolute;
    width: calc(100% - 50px);
    top: 98px;
    left: 25px;
    height: 143px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.main .heineken-premium {
    flex: 1;
    width: 80px;
    display: flex;
    overflow: hidden;
    background-image: url(./img/heineken-premium-0-5.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .image {
    margin-top: -0.3px;
    width: 145px;
    height: 83px;
    margin-left: -28px;
    aspect-ratio: 1.75;
    object-fit: cover;
}

.main .text-wrapper-3 {
    position: absolute;
    top: 20px;
    left: 96px;
    width: 235px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-4 {
    top: 50px;
    left: 96px;
    width: 74px;
    position: absolute;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-Bold", Helvetica;
    font-weight: 700;
    color: #ef233c;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.main .border {
    top: calc(50.00% + 10px);
    left: 96px;
    position: absolute;
    width: 128px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid;
    border-color: #ffffff14;
}

.main .button {
    all: unset;
    box-sizing: border-box;
    height: 36px;
    width: 36px;
    margin-left: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #151923;
}

.main .text-wrapper-5 {
    height: 24px;
    margin-left: 0.4px;
    width: 7.92px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #e8ebf2;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .input {
    height: 38px;
    width: 54px;
    display: flex;
}

.main .div-wrapper {
    margin-top: 10px;
    height: 18px;
    margin-left: 2px;
    margin-right: 17px;
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: scroll;
}

.main .div-wrapper::-webkit-scrollbar {
    width: 0;
    display: none;
}

.main .text-wrapper-6 {
    height: 17px;
    margin-left: 0.2px;
    width: 9.11px;
    font-family: "Inter-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.main .button-2 {
    all: unset;
    box-sizing: border-box;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #151923;
}

.main .text-wrapper-7 {
    height: 24px;
    margin-left: 0.3px;
    width: 10.71px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #e8ebf2;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .button-3 {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: calc(50.00% + 10px);
    left: 236px;
    width: 107px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #ffffff14;
}

.main .icon {
    position: absolute;
    top: 12px;
    left: 13px;
    width: 16px;
    height: 16px;
}

.main .vector {
    position: absolute;
    width: 81.33%;
    height: 93.67%;
    top: 0;
    left: 9.33%;
}

.main .text-wrapper-8 {
    position: absolute;
    top: calc(50.00% - 11px);
    left: calc(50.00% - 25px);
    width: 66px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #a9b0c3;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .horizontal-border-2 {
    top: 241px;
    position: absolute;
    width: calc(100% - 50px);
    left: 25px;
    height: 143px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .corona-extra {
    flex: 1;
    width: 80px;
    display: flex;
    overflow: hidden;
    background-image: url(./img/corona-extra-0-33.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .img {
    margin-top: -2.3px;
    width: 151px;
    height: 85px;
    margin-left: -35px;
    aspect-ratio: 1.77;
    object-fit: cover;
}

.main .p {
    position: absolute;
    top: 20px;
    left: 96px;
    width: 351px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-9 {
    top: 50px;
    left: 96px;
    width: 88px;
    position: absolute;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-Bold", Helvetica;
    font-weight: 700;
    color: #ef233c;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.main .horizontal-border-3 {
    top: 384px;
    position: absolute;
    width: calc(100% - 50px);
    left: 25px;
    height: 143px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .budweiser {
    flex: 1;
    width: 80px;
    display: flex;
    overflow: hidden;
    background-image: url(./img/budweiser-0-5.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .image-2 {
    margin-top: -0.3px;
    width: 139px;
    height: 80px;
    margin-left: -29px;
    aspect-ratio: 1.75;
    object-fit: cover;
}

.main .text-wrapper-10 {
    position: absolute;
    top: 20px;
    left: 96px;
    width: 291px;
    height: 22px;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-11 {
    position: absolute;
    top: 50px;
    left: 96px;
    width: 91px;
    height: 24px;
    font-family: "Manrope-Bold", Helvetica;
    font-weight: 700;
    color: #ef233c;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .horizontal-border-4 {
    top: 527px;
    position: absolute;
    width: calc(100% - 50px);
    left: 25px;
    height: 143px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffff0f;
}

.main .stella-artois {
    flex: 1;
    width: 80px;
    display: flex;
    overflow: hidden;
    background-image: url(./img/stella-artois-0-5.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .image-3 {
    margin-top: -3.3px;
    width: 152px;
    height: 86px;
    margin-left: -33px;
    aspect-ratio: 1.78;
    object-fit: cover;
}

.main .text-wrapper-12 {
    position: absolute;
    top: 20px;
    left: 96px;
    width: 621px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-13 {
    top: 50px;
    left: 96px;
    width: 114px;
    position: absolute;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-Bold", Helvetica;
    font-weight: 700;
    color: #ef233c;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.main .carlsberg-wrapper {
    position: absolute;
    top: 690px;
    left: 25px;
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.main .carlsberg {
    flex: 1;
    width: 80px;
    display: flex;
    overflow: hidden;
    background-image: url(./img/carlsberg-0-5.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .image-4 {
    margin-top: -9.3px;
    width: 174px;
    height: 98px;
    margin-left: -47px;
    aspect-ratio: 1.78;
    object-fit: cover;
}

.main .text-wrapper-14 {
    position: absolute;
    top: 690px;
    left: 121px;
    width: 304px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-15 {
    top: 720px;
    left: 121px;
    width: 60px;
    position: absolute;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope-Bold", Helvetica;
    font-weight: 700;
    color: #ef233c;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.main .border-2 {
    top: calc(50.00% + 333px);
    left: 121px;
    position: absolute;
    width: 128px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid;
    border-color: #ffffff14;
}

.main .button-4 {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: calc(50.00% + 333px);
    left: 261px;
    width: 107px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid;
    border-color: #ffffff14;
}

.main .background-border-2 {
    position: absolute;
    width: calc(100% - 843px);
    top: 127px;
    left: 827px;
    height: 334px;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    border-radius: 12px;
    border: 1px solid;
    border-color: #ffffff14;
}

.main .heading-2 {
    margin-left: 25px;
    width: 58.47px;
    height: 27px;
    margin-top: 45px;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    letter-spacing: 0;
    line-height: normal;
}

.main .paragraph {
    margin-left: 25px;
    margin-right: 25px;
    flex: 1;
    max-height: 47px;
    margin-top: 20px;
    display: flex;
    gap: 230.5px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .text-wrapper-16 {
    margin-top: 12px;
    width: 60.55px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-17 {
    margin-top: 12px;
    width: 48.78px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .paragraph-2 {
    gap: 212.1px;
    margin-left: 25px;
    margin-right: 25px;
    flex: 1;
    max-height: 47px;
    display: flex;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .text-wrapper-18 {
    margin-top: 12px;
    width: 77.09px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-19 {
    margin-top: 12px;
    width: 50.7px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .paragraph-3 {
    gap: 171.8px;
    margin-left: 25px;
    margin-right: 25px;
    flex: 1;
    max-height: 47px;
    display: flex;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ffffffef;
}

.main .text-wrapper-20 {
    margin-top: 12px;
    width: 118.72px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .text-wrapper-21 {
    margin-top: 12px;
    width: 49.36px;
    height: 22px;
    font-family: "Manrope-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

.main .button-5 {
    all: unset;
    box-sizing: border-box;
    margin-left: 25px;
    margin-right: 25px;
    flex: 1;
    max-height: 56px;
    position: relative;
    margin-top: 20px;
    background-color: #ef233c;
    border-radius: 12px;
}

.main .vector-wrapper {
    position: absolute;
    top: 19px;
    left: 87px;
    width: 18px;
    height: 18px;
}

.main .vector-2 {
    position: absolute;
    width: 100%;
    height: 75.00%;
    top: 12.33%;
    left: 0;
}

.main .text-wrapper-22 {
    position: absolute;
    top: calc(50.00% - 12px);
    left: calc(50.00% - 65px);
    width: 148px;
    height: 24px;
    font-family: "Manrope-SemiBold", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: normal;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }
    
    .cart-grid {
        grid-template-columns: 1fr 340px;
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .product-suggestions__arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .product-suggestions__arrow--left {
        left: -18px;
    }
    
    .product-suggestions__arrow--right {
        right: -18px;
    }
}

@media (max-width: 768px) {
    .main {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        margin-top: 0;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    
    .product-suggestions {
        margin: 0 -15px 20px -15px;
        padding: 0 0 15px 0;
    }
    
    .product-suggestions__header {
        padding: 0 15px;
    }
    
    .product-suggestions__wrapper {
        padding: 0 15px;
    }
    
    .product-suggestions__arrow {
        display: none;
    }
    
    .product-suggestions__grid {
        gap: 10px;
    }
    
    .product-suggestions__card {
        min-width: 250px;
        height: 90px;
        padding: 8px;
        gap: 10px;
    }
    
    .product-suggestions__image {
        width: 100px;
        height: 70px;
    }
    
    .product-suggestions__name {
        font-size: 14px;
    }
    
    .product-suggestions__price {
        font-size: 15px;
    }
    
    .product-suggestions__btn {
        width: 26px;
        height: 26px;
    }
    
    .product-suggestions__cross {
        font-size: 16px;
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-section-title {
        font-size: 20px;
    }
    
    .cart-item-card {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "image name"
            "image options"
            "quantity price"
            "quantity remove";
        gap: 8px 12px;
        padding: 12px;
    }
    
    .cart-item-name {
        font-size: 14px;
    }
    
    .cart-item-price {
        font-size: 16px;
        justify-self: end;
    }
    
    .cart-item-remove {
        justify-self: end;
    }
    
    /* Footer styles are now imported from index.css */
    
    .header-content {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .header-content .logo {
        flex: none;
    }
    
    .header-content .header-actions {
        flex: none;
        margin-left: auto;
    }
    
    .header-actions {
        display: flex;
        gap: 0;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        flex: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    .login-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        margin-left: 10px;
    }
    
    .cart-btn {
        margin: 0;
        white-space: nowrap;
        margin-right: 0;
        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    .language-switcher {
        margin-right: 5px;
    }
    
    .lang-btn {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 32px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 0 10px;
        margin-top: 0;
    }
    
    .mobile-menu {
        width: 280px;
        right: -280px;
        padding: 15px;
    }
    
    .mobile-menu-close {
        font-size: 32px;
        width: 36px;
        height: 36px;
    }
    
    .product-suggestions {
        margin: 0 -10px 20px -10px;
    }
    
    .product-suggestions__header {
        padding: 0 10px;
    }
    
    .product-suggestions__wrapper {
        padding: 0 10px;
    }
    
    .product-suggestions__grid {
        gap: 8px;
    }
    
    .product-suggestions__card {
        min-width: 220px;
        height: 85px;
        padding: 6px;
        gap: 8px;
    }
    
    .product-suggestions__image {
        width: 85px;
        height: 65px;
    }
    
    .product-suggestions__name {
        font-size: 13px;
        line-height: 16px;
    }
    
    .product-suggestions__price {
        font-size: 14px;
    }
    
    .product-suggestions__btn {
        width: 24px;
        height: 24px;
    }
    
    .product-suggestions__cross {
        font-size: 14px;
    }
    
    .cart-section-title {
        font-size: 18px;
    }
    
    .cart-item-card {
        grid-template-columns: 70px 1fr;
        padding: 10px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-name {
        font-size: 13px;
    }
    
    .cart-item-option {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .cart-item-price {
        font-size: 14px;
    }
    
    .cart-summary-card {
        padding: 16px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    /* Footer styles are now imported from index.css */
}

/* Extra Small Mobile (up to 300px) - 1 column */
@media (max-width: 330px) {
    .product-suggestions {
        margin: 0 -10px 15px -10px;
        padding: 0 0 10px 0;
    }
    
    .product-suggestions__header {
        padding: 0 10px;
    }
    
    .product-suggestions__wrapper {
        gap: 5px;
        padding: 0 10px;
    }
    
    .product-suggestions__grid {
        gap: 6px;
        padding: 0 0 8px 0;
    }
    
    .product-suggestions__card {
        min-width: 180px;
        height: 75px;
        padding: 5px;
        gap: 6px;
    }
    
    .product-suggestions__image {
        width: 65px;
        height: 55px;
        flex-shrink: 0;
    }
    
    .product-suggestions__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-suggestions__content {
        padding: 2px 0;
        gap: 4px;
    }
    
    .product-suggestions__name {
        font-size: 11px;
        line-height: 14px;
    }
    
    .product-suggestions__price-row {
        gap: 6px;
    }
    
    .product-suggestions__price {
        font-size: 12px;
    }
    
    .product-suggestions__btn {
        width: 20px;
        height: 20px;
        border-radius: 10px;
    }
    
    .product-suggestions__cross {
        font-size: 12px;
    }
}

@media (max-width: 300px) {
    .main {
        margin-top: 0;
    }
    
    .cart-section-title {
        font-size: 16px;
    }
    
    .cart-item-card {
        grid-template-columns: 60px 1fr;
        padding: 8px;
        gap: 6px 8px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 12px;
    }
    
    .cart-item-option {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    .cart-item-price {
        font-size: 13px;
    }
    
    .cart-summary-card {
        padding: 12px;
    }
    
    .quantity-selector {
        padding: 0px;
        gap: 0px;
        min-height: 20px;
    }
    
    .quantity-btn {
        width: 14px;
        height: 14px;
        font-size: 7px;
        flex-shrink: 0;
    }
    
    .quantity-display {
        font-size: 7px;
        min-width: 10px;
        text-align: center;
        flex: 1;
    }
    
    /* Footer styles are now imported from index.css */
}

/* Very Small Mobile (up to 450px) - Extra compact quantity selector */
@media (max-width: 450px) {
    .quantity-selector {
        padding: 0px;
        gap: 0px;
        min-height: 24px;
    }
    
    .quantity-btn {
        width: 18px;
        height: 18px;
        font-size: 9px;
        flex-shrink: 0;
    }
    
    .quantity-display {
        font-size: 9px;
        min-width: 14px;
        text-align: center;
        flex: 1;
    }
}
