<!doctype html>
<html class="no-js" lang="ka" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="#171717">
<meta name="google-site-verification" content="wVyl8RZzK1xyyLxjH9dbyGN0a8Tepqco0zmfwQmGu7g" />
<link rel="canonical" href="https://www.meama.ge/">
<link rel="preconnect" href="https://cdn.shopify.com" crossorigin>
<link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
<link rel="dns-prefetch" href="https://ajax.googleapis.com">
<link rel="dns-prefetch" href="https://maps.googleapis.com">
<link rel="dns-prefetch" href="https://maps.gstatic.com">
<link rel="shortcut icon" href="//www.meama.ge/cdn/shop/files/meama-fav.png?crop=center&height=32&v=1725974587&width=32" type="image/png" /> <script>
(function () {
function injectRaffleStyle() {
// Avoid adding it twice
if (document.getElementById('raffle-link-style')) return;
const style = document.createElement('style');
style.id = 'raffle-link-style';
style.innerHTML = `
a[href="/pages/meama-raffle-1"] .btn-text {
color: rgb(179, 2, 2) !important;
font-weight: 700;
}
`;
document.head.appendChild(style);
}
document.addEventListener("DOMContentLoaded", injectRaffleStyle);
document.addEventListener("shopify:section:load", injectRaffleStyle);
})();
</script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/livecaller.js?v=39120420058573440601769936463" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/forbiddenProduct.js?v=68124864926097752761769936459" defer></script>
<script>
(() => {
const soldOutText =
(window.theme && theme.variantStrings && theme.variantStrings.soldOut)
? theme.variantStrings.soldOut
: 'Sold out';
const createSoldOutQuickAddButton = () => {
const button = document.createElement('button');
button.type = 'button';
button.className = 'button button--secondary button--blur pointer-events-auto md:opacity-0';
button.setAttribute('disabled', '');
button.textContent = soldOutText;
return button;
};
const applySoldOutToQuickAdd = (quickAdd) => {
if (!quickAdd || quickAdd.dataset.meamaOutOfStock === 'true') return;
quickAdd.dataset.meamaOutOfStock = 'true';
Array.from(quickAdd.children).forEach((child) => {
child.dataset.meamaHiddenByMeama = 'true';
child.hidden = true;
});
const soldOutButton = createSoldOutQuickAddButton();
soldOutButton.dataset.meamaOutOfStockButton = 'true';
quickAdd.appendChild(soldOutButton);
};
const replaceQuickAddWithSoldOut = (variantId = null) => {
if (typeof document === 'undefined') return;
const quickAddContainers = new Set();
const collectContainer = (node) => {
if (!node) return;
const quickAdd = node.closest('.quick-add');
if (!quickAdd) return;
quickAddContainers.add(quickAdd);
};
if (variantId) {
document.querySelectorAll(`[data-variant-id="${variantId}"]`).forEach(collectContainer);
}
if (!quickAddContainers.size) {
document.querySelectorAll('.quick-add form[is="product-form"]').forEach(collectContainer);
}
quickAddContainers.forEach((quickAdd) => {
applySoldOutToQuickAdd(quickAdd);
});
};
const restoreQuickAddUI = () => {
if (typeof document === 'undefined') return;
document.querySelectorAll('.quick-add[data-meama-out-of-stock="true"]').forEach((quickAdd) => {
delete quickAdd.dataset.meamaOutOfStock;
quickAdd.querySelectorAll('[data-meama-hidden-by-meama="true"]').forEach((child) => {
child.hidden = false;
delete child.dataset.meamaHiddenByMeama;
});
const soldOutButton = quickAdd.querySelector('[data-meama-out-of-stock-button="true"]');
if (soldOutButton) soldOutButton.remove();
});
};
const getPrimaryVariantIdFromProductForm = () => {
const input = document.querySelector('form[is="product-form"] input[name="id"]');
return input ? input.value : null;
};
const handleCollectionQuickAdds = () => {
document.querySelectorAll('.quick-add[data-meama-collection-out-of-stock="true"]').forEach((quickAdd) => {
applySoldOutToQuickAdd(quickAdd);
});
};
/* ------------------------------------------------------------
✅ VARIANT → PRODUCT ID (FETCH) + CACHE
------------------------------------------------------------ */
const __meamaVariantProductCache = {};
const resolveProductIdFromVariant = async (variantId) => {
if (__meamaVariantProductCache[variantId]) return __meamaVariantProductCache[variantId];
try {
const res = await fetch(`/variants/${variantId}.json`, { credentials: 'same-origin' });
if (!res.ok) return null;
const data = await res.json();
const productId = data?.variant?.product_id || null;
if (productId) __meamaVariantProductCache[variantId] = productId;
return productId;
} catch (e) {
return null;
}
};
/* ------------------------------------------------------------
✅ COLLECTION APPLY (FIXED)
- was using window.Shopify.variants (not present)
- now uses resolveProductIdFromVariant()
------------------------------------------------------------ */
let __meamaApplyInFlight = false;
const applyCollectionOutOfStockFromWindow = async () => {
if (__meamaApplyInFlight) return;
__meamaApplyInFlight = true;
try {
// Support both formats:
// - window.meamaOutOfStock.products[productId] = true (collection)
// - window.meamaOutOfStock.product / variants (product page)
const productsMap = window.meamaOutOfStock?.products;
if (!productsMap) return;
const quickAdds = document.querySelectorAll('.quick-add');
for (const quickAdd of quickAdds) {
if (quickAdd.dataset.meamaOutOfStock === 'true') continue;
const buttons = quickAdd.querySelectorAll('[data-variant-id]');
let shouldDisable = false;
for (const btn of buttons) {
const variantId = btn.getAttribute('data-variant-id');
if (!variantId) continue;
const productId = await resolveProductIdFromVariant(variantId);
if (productId && productsMap[productId]) {
shouldDisable = true;
break;
}
}
if (shouldDisable) {
applySoldOutToQuickAdd(quickAdd);
}
}
} finally {
__meamaApplyInFlight = false;
}
};
const observeCollectionQuickAdds = () => {
if (typeof MutationObserver === 'undefined') return;
const observer = new MutationObserver(() => {
applyCollectionOutOfStockFromWindow();
});
observer.observe(document.body, { childList: true, subtree: true });
};
/* ------------------------------------------------------------
PRODUCT PAGE LOGIC (UNCHANGED)
------------------------------------------------------------ */
/* ------------------------------------------------------------
BOOT
------------------------------------------------------------ */
const boot = () => {
handleCollectionQuickAdds();
// ✅ Collection pages (and anywhere product cards exist)
applyCollectionOutOfStockFromWindow();
observeCollectionQuickAdds();
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', boot);
} else {
boot();
}
})();
</script><script>
(function () {
if (typeof window === 'undefined' || !window.location) return;
var flagKey = 'meamaPartialPayVisited';
var partialPayPath = '/pages/partial-pay';
var isPartialPayPage = window.location.pathname.startsWith(partialPayPath);
try {
if (isPartialPayPage) {
sessionStorage.setItem(flagKey, '1');
return;
}
if (!sessionStorage.getItem(flagKey)) return;
sessionStorage.removeItem(flagKey);
var dispatchCartRefresh = function () {
document.documentElement.dispatchEvent(new CustomEvent('cart:refresh', { bubbles: true }));
};
var fallbackClearCart = function () {
fetch('/cart/clear.js', {
method: 'POST',
credentials: 'same-origin'
})
.then(function () {
dispatchCartRefresh();
})
.catch(function () {
dispatchCartRefresh();
});
};
var tryInvokeClearCart = function (remainingAttempts) {
if (typeof window.clearCart === 'function') {
window.clearCart();
return;
}
if (remainingAttempts <= 0) {
fallbackClearCart();
return;
}
window.setTimeout(function () {
tryInvokeClearCart(remainingAttempts - 1);
}, 100);
};
tryInvokeClearCart(20);
} catch (error) {
// sessionStorage unavailable; nothing to do
}
})();
</script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/webview-optimizer.js?v=58564754573846849921769936477" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/otp-email-hider.js?v=102475863007820646911769936472" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/clearFranchiser.js?v=74324989928198180281769936458" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/playButtonWatcher.js?v=37051099944550358501769936472" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/setSaleSource.js?v=47675510915500817861769936475" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/hideTierPoints.js?v=133661185681615019561769936462" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/urlClear.js?v=162874855063742320531769936477" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/dropperLoader.js?v=41573876582521825011769936459" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/meama-theme.js?v=111603181540343972631769936468" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/wisepop-bell.js?v=30965049927113956461769936477" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/recent-products.js?v=26857756565501187281769936524" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/meama-personalization-tracking.js?v=39598962655280606411769936467" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/meama-home-personalization.js?v=85394213899578820031769936465" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/detect-user.js?v=67654015535079778421769936524" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/hide-footer-on-selected-pages.js?v=63030616650765823621769936461" defer></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/meama-out-of-stock.js?v=173989403394140089911769936467" defer></script>
<link href="//www.meama.ge/cdn/shop/t/123/assets/meama-theme.css?v=152816651566415429861769936468" rel="stylesheet" type="text/css" media="all" />
<title>ყავის, ჩაის და ჯანსაღი სასმელების კაფსულები – MEAMA</title><meta name="description" content="Meama ქმნის კაფსულური სასმელების ახალ გამოცდილებას — ყავა, ჩაი, ფუნქციური და ჯანსაღი სასმელები ერთ სისტემაში.">
<meta property="og:site_name" content="MEAMA">
<meta property="og:url" content="https://www.meama.ge/">
<meta property="og:title" content="ყავის, ჩაის და ჯანსაღი სასმელების კაფსულები">
<meta property="og:type" content="website">
<meta property="og:description" content="Meama ქმნის კაფსულური სასმელების ახალ გამოცდილებას — ყავა, ჩაი, ფუნქციური და ჯანსაღი სასმელები ერთ სისტემაში."><meta property="og:image" content="http://www.meama.ge/cdn/shop/files/3230ad4d-9790-4337-8147-574027b0aec1.png?v=1720311061">
<meta property="og:image:secure_url" content="https://www.meama.ge/cdn/shop/files/3230ad4d-9790-4337-8147-574027b0aec1.png?v=1720311061">
<meta property="og:image:width" content="1600">
<meta property="og:image:height" content="1200"><meta name="twitter:site" content="@">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="ყავის, ჩაის და ჯანსაღი სასმელების კაფსულები">
<meta name="twitter:description" content="Meama ქმნის კაფსულური სასმელების ახალ გამოცდილებას — ყავა, ჩაი, ფუნქციური და ჯანსაღი სასმელები ერთ სისტემაში.">
<style>@font-face {
font-family: Inter;
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("//www.meama.ge/cdn/fonts/inter/inter_n4.b2a3f24c19b4de56e8871f609e73ca7f6d2e2bb9.woff2") format("woff2"),
url("//www.meama.ge/cdn/fonts/inter/inter_n4.af8052d517e0c9ffac7b814872cecc27ae1fa132.woff") format("woff");
}
@font-face {
font-family: Inter;
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("//www.meama.ge/cdn/fonts/inter/inter_n5.d7101d5e168594dd06f56f290dd759fba5431d97.woff2") format("woff2"),
url("//www.meama.ge/cdn/fonts/inter/inter_n5.5332a76bbd27da00474c136abb1ca3cbbf259068.woff") format("woff");
}
@font-face {
font-family: Inter;
font-weight: 700;
font-style: normal;
font-display: swap;
src: url("//www.meama.ge/cdn/fonts/inter/inter_n7.02711e6b374660cfc7915d1afc1c204e633421e4.woff2") format("woff2"),
url("//www.meama.ge/cdn/fonts/inter/inter_n7.6dab87426f6b8813070abd79972ceaf2f8d3b012.woff") format("woff");
}
@font-face {
font-family: Inter;
font-weight: 400;
font-style: italic;
font-display: swap;
src: url("//www.meama.ge/cdn/fonts/inter/inter_i4.feae1981dda792ab80d117249d9c7e0f1017e5b3.woff2") format("woff2"),
url("//www.meama.ge/cdn/fonts/inter/inter_i4.62773b7113d5e5f02c71486623cf828884c85c6e.woff") format("woff");
}
@font-face {
font-family: Inter;
font-weight: 700;
font-style: italic;
font-display: swap;
src: url("//www.meama.ge/cdn/fonts/inter/inter_i7.b377bcd4cc0f160622a22d638ae7e2cd9b86ea4c.woff2") format("woff2"),
url("//www.meama.ge/cdn/fonts/inter/inter_i7.7c69a6a34e3bb44fcf6f975857e13b9a9b25beb4.woff") format("woff");
}
:root {
/*! General */
--color-base-text: 23 23 23;
--color-base-highlight: 255 221 191;
--color-base-background: 255 255 255;
--color-base-button: 23 23 23;
--color-base-button-gradient: #171717;
--color-base-button-text: 255 255 255;
--color-keyboard-focus: 11 97 205;
--color-shadow: 168 232 226;
--color-price: 23 23 23;
--color-sale-price: 225 29 72;
--color-sale-tag: 225 29 72;
--color-sale-tag-text: 255 255 255;
--color-rating: 245 158 11;
--color-placeholder: 250 250 250;
--color-success-text: 77 124 15;
--color-success-background: 247 254 231;
--color-error-text: 190 18 60;
--color-error-background: 255 241 242;
--color-info-text: 180 83 9;
--color-info-background: 255 251 235;
/*! Menu and drawers */
--color-drawer-text: 23 23 23;
--color-drawer-background: 255 255 255;
--color-drawer-button-background: 23 23 23;
--color-drawer-button-gradient: #171717;
--color-drawer-button-text: 255 255 255;
--color-drawer-overlay: 23 23 23;
/*! Product card */
--card-radius: var(--rounded-card);
--card-border-width: 0.1rem;
--card-border-opacity: 0.0;
--card-shadow-opacity: 0.1;
--card-shadow-horizontal-offset: 0.0rem;
--card-shadow-vertical-offset: 0.0rem;
/*! Buttons */
--buttons-radius: var(--rounded-button);
--buttons-border-width: 2px;
--buttons-border-opacity: 1.0;
--buttons-shadow-opacity: 0.0;
--buttons-shadow-horizontal-offset: 0px;
--buttons-shadow-vertical-offset: 0px;
/*! Inputs */
--inputs-radius: var(--rounded-input);
--inputs-border-width: 0px;
--inputs-border-opacity: 0.65;
/*! Spacing */
--sp-0d5: 0.125rem;
--sp-1: 0.25rem;
--sp-1d5: 0.375rem;
--sp-2: 0.5rem;
--sp-2d5: 0.625rem;
--sp-3: 0.75rem;
--sp-3d5: 0.875rem;
--sp-4: 1rem;
--sp-4d5: 1.125rem;
--sp-5: 1.25rem;
--sp-5d5: 1.375rem;
--sp-6: 1.5rem;
--sp-6d5: 1.625rem;
--sp-7: 1.75rem;
--sp-7d5: 1.875rem;
--sp-8: 2rem;
--sp-8d5: 2.125rem;
--sp-9: 2.25rem;
--sp-9d5: 2.375rem;
--sp-10: 2.5rem;
--sp-10d5: 2.625rem;
--sp-11: 2.75rem;
--sp-12: 3rem;
--sp-13: 3.25rem;
--sp-14: 3.5rem;
--sp-15: 3.875rem;
--sp-16: 4rem;
--sp-18: 4.5rem;
--sp-20: 5rem;
--sp-23: 5.625rem;
--sp-24: 6rem;
--sp-28: 7rem;
--sp-32: 8rem;
--sp-36: 9rem;
--sp-40: 10rem;
--sp-44: 11rem;
--sp-48: 12rem;
--sp-52: 13rem;
--sp-56: 14rem;
--sp-60: 15rem;
--sp-64: 16rem;
--sp-68: 17rem;
--sp-72: 18rem;
--sp-80: 20rem;
--sp-96: 24rem;
--sp-100: 32rem;
/*! Font family */
--font-heading-family: Inter, sans-serif;
--font-heading-style: normal;
--font-heading-weight: 700;
--font-heading-line-height: 1;
--font-heading-letter-spacing: -0.03em;
--font-body-family: Inter, sans-serif;
--font-body-style: normal;
--font-body-weight: 400;
--font-body-line-height: 1.2;
--font-body-letter-spacing: 0.0em;
--font-navigation-family: var(--font-body-family);
--font-navigation-size: clamp(0.875rem, 0.748rem + 0.3174vw, 1.125rem);
--font-navigation-weight: 500;
--font-button-family: var(--font-body-family);
--font-button-size: clamp(0.875rem, 0.8115rem + 0.1587vw, 1.0rem);
--font-button-weight: 500;
--font-product-family: var(--font-body-family);
--font-product-size: clamp(1.0rem, 0.873rem + 0.3175vw, 1.25rem);
--font-product-weight: 500;
/*! Font size */
--text-3xs: 0.625rem;
--text-2xs: 0.6875rem;
--text-xs: 0.75rem;
--text-2sm: 0.8125rem;
--text-sm: 0.875rem;
--text-base: 1.0rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
--text-5xl: 3.0rem;
--text-6xl: 3.75rem;
--text-7xl: 4.5rem;
--text-8xl: 6.0rem;
/*! Layout */
--page-width: 1900px;
--gap-padding: clamp(var(--sp-5), 2.526vw, var(--sp-12));
--grid-gap: clamp(40px, 20vw, 60px);
--page-padding: var(--sp-5);
--page-container: min(calc(100vw - var(--scrollbar-width, 0px) - var(--page-padding) * 2), var(--page-width));
--rounded-button: 3.75rem;
--rounded-input: 0.375rem;
--rounded-card: clamp(var(--sp-2d5), 1.053vw, var(--sp-5));
--rounded-block: clamp(var(--sp-2d5), 1.053vw, var(--sp-5));
/*! Other */
--icon-weight: 1.5px;
}
@media screen and (min-width: 1024px) {
:root {
--page-padding: var(--sp-9);
}
}
@media screen and (min-width: 1280px) {
:root {
--gap-padding: var(--sp-12);
--page-padding: var(--sp-12);
--page-container: min(calc(100vw - var(--scrollbar-width, 0px) - var(--page-padding) * 2), max(var(--page-width), 1280px));
}
}
@media screen and (min-width: 1536px) {
:root {
--page-padding: max(var(--sp-12), 50vw - var(--scrollbar-width, 0px)/2 - var(--page-width)/2);
}
}
</style>
<link rel="preload" as="font" href="//www.meama.ge/cdn/fonts/inter/inter_n4.b2a3f24c19b4de56e8871f609e73ca7f6d2e2bb9.woff2" type="font/woff2" crossorigin>
<link rel="preload" as="font" href="//www.meama.ge/cdn/fonts/inter/inter_n7.02711e6b374660cfc7915d1afc1c204e633421e4.woff2" type="font/woff2" crossorigin>
<link href="//www.meama.ge/cdn/shop/t/123/assets/theme.css?v=182224300236261252791769936441" rel="stylesheet" type="text/css" media="all" /><link rel="stylesheet" href="//www.meama.ge/cdn/shop/t/123/assets/apps.css?v=162097722211979372921769936428" media="print" fetchpriority="low" onload="this.media='all'">
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="mrdlNYBm2Z72Q8wS09gFgIbLdrSjBCGvMIuSz6WkTjo">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/65216217280/digital_wallets/dialog">
<link rel="alternate" hreflang="x-default" href="https://www.meama.ge/">
<link rel="alternate" hreflang="ka-GE" href="https://www.meama.ge/">
<link rel="alternate" hreflang="ru-GE" href="https://www.meama.ge/ru">
<link rel="alternate" hreflang="en-GE" href="https://www.meama.ge/en">
<script async="async" src="/checkouts/internal/preloads.js?locale=ka-GE"></script>
<script id="shopify-features" type="application/json">{"accessToken":"cf910ad4ee028614de6c3825c5b577a6","betas":["rich-media-storefront-analytics"],"domain":"www.meama.ge","predictiveSearch":false,"shopId":65216217280,"locale":"ka"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "meama-georgia.myshopify.com";
Shopify.locale = "ka";
Shopify.currency = {"active":"GEL","rate":"1.0"};
Shopify.country = "GE";
Shopify.theme = {"name":"B2C-v4\/main (DS)","id":150452601024,"schema_name":"Concept","schema_version":"5.3.0","theme_store_id":2412,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "www.meama.ge/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_BN7fPSNr.en.esm.js"></script>
<script defer="defer" async type="module" src="//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/chunk.common_Cbph3Kss.esm.js"></script>
<script defer="defer" async type="module" src="//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/chunk.modal_DKumMAJ1.esm.js"></script>
<script type="module">
await import("//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/client.init-shop-cart-sync_BN7fPSNr.en.esm.js");
await import("//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/chunk.common_Cbph3Kss.esm.js");
await import("//www.meama.ge/cdn/shopifycloud/shop-js/modules/v2/chunk.modal_DKumMAJ1.esm.js");
window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});
</script>
<script>(function() {
var isLoaded = false;
function asyncLoad() {
if (isLoaded) return;
isLoaded = true;
var urls = ["https:\/\/chimpstatic.com\/mcjs-connected\/js\/users\/c3046391e9e46c2b1b1272797\/eebe490297aae3e30b91b462b.js?shop=meama-georgia.myshopify.com","https:\/\/cdn.adtrace.ai\/facebook-track.js?shop=meama-georgia.myshopify.com","https:\/\/wisepops.net\/loader.js?v=3\u0026h=KdZEBtMGmA\u0026shop=meama-georgia.myshopify.com","\/\/cdn.shopify.com\/proxy\/acf07e801e53bbd67eb29d7ffa2ce4d78343eb0a76b4328d82c9162be5d1a253\/api.goaffpro.com\/loader.js?shop=meama-georgia.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('load', asyncLoad, false);
}
})();</script>
<script id="__st">var __st={"a":65216217280,"offset":14400,"reqid":"8c56aa74-6228-424d-98f7-bd410a94a6ea-1770151094","pageurl":"www.meama.ge\/?srsltid=AfmBOoqsrgCOqUOHsmfAxlyvnQTBEgxrw870yRRmnWst3864777cK5xS","u":"741a539a4fdc","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="form-persister">!function(){'use strict';const t='contact',e='new_comment',n=[[t,t],['blogs',e],['comments',e],[t,'customer']],o='password',r='form_key',c=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',o],s=()=>{try{return window.sessionStorage}catch{return}},i='__shopify_v',u=t=>t.elements[r],a=function(){const t=[...n].map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(',');var e;return e=t,()=>e?[...document.querySelectorAll(e)].map((t=>t.form)):[]}();function m(t){const e=u(t);a().includes(t)&&(!e||!e.value)&&function(t){try{if(!s())return;!function(t){const e=s();if(!e)return;const n=u(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){u(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:r})),t.elements[r].value=e}(t,e),function(t,e){const n=s();if(!n)return;const r=[...t.querySelectorAll(`input[type='${o}']`)].map((({name:t})=>t)),u=[...c,...r],a={};for(const[o,c]of new FormData(t).entries())u.includes(o)||(a[o]=c);n.setItem(e,JSON.stringify({[i]:1,action:t.action,data:a}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(t)}const f=t=>{if('true'===t.dataset.persistBound)return;const e=function(t,e){const n=function(t){return'function'==typeof t.submit?t.submit:HTMLFormElement.prototype.submit}(t).bind(t);return function(){let t;return()=>{t||(t=!0,(()=>{try{e(),n()}catch(t){(t=>{console.error('form submit failed',t)})(t)}})(),setTimeout((()=>t=!1),250))}}()}(t,(()=>{m(t)}));!function(t,e){if('function'==typeof t.submit&&'function'==typeof e)try{t.submit=e}catch{}}(t,e),t.addEventListener('submit',(t=>{t.preventDefault(),e()})),t.dataset.persistBound='true'};!function(){function t(t){const e=(t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form})(t);e&&m(e)}document.addEventListener('submit',t),document.addEventListener('DOMContentLoaded',(()=>{const e=a();for(const t of e)f(t);var n;n=document.body,new window.MutationObserver((t=>{for(const e of t)if('childList'===e.type&&e.addedNodes.length)for(const t of e.addedNodes)1===t.nodeType&&'FORM'===t.tagName&&a().includes(t)&&f(t)})).observe(n,{childList:!0,subtree:!0,attributes:!1}),document.removeEventListener('submit',t)}))}()}();</script>
<script integrity="sha256-4kQ18oKyAcykRKYeNunJcIwy7WH5gtpwJnB7kiuLZ1E=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//www.meama.ge/cdn/shopifycloud/storefront/assets/storefront/load_feature-a0a9edcb.js" crossorigin="anonymous"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://www.meama.ge/cdn/shopifycloud/portable-wallets/latest/portable-wallets.ka.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/vendor.js?v=83836565987576270061769936442" defer="defer"></script>
<script src="//www.meama.ge/cdn/shop/t/123/assets/theme.js?v=33297675971792465821769936441" defer="defer"></script><script>
document.documentElement.classList.replace('no-js', 'js');
window.theme = window.theme || {};
theme.routes = {
shop_url: 'https://www.meama.ge',
root_url: '/',
cart_url: '/cart',
cart_add_url: '/cart/add',
cart_change_url: '/cart/change',
cart_update_url: '/cart/update',
search_url: '/search',
predictive_search_url: '/search/suggest'
};
theme.variantStrings = {
preOrder: "წინასწარი შეკვეთა",
addToCart: "კალათაში დამატება",
soldOut: "არ არის მარაგში",
unavailable: "მიუწვდომელია",
addToBundle: "",
backInStock: "შემატყობინე მარაგში რომ დაბრუნდება"
};
theme.shippingCalculatorStrings = {
error: "მიწოდების ტარიფების მიღებისას მოხდა ერთი ან მეტი შეცდომა:",
notFound: "უკაცრავად, ჩვენ არ ვაგზავნით თქვენს მისამართზე.",
oneResult: "თქვენი მისამართისთვის არის ერთი გადაზიდვის ტარიფი:",
multipleResults: "არსებობს მრავალი გადაზიდვის ტარიფი თქვენი მისამართისთვის:"
};
theme.discountStrings = {
error: "Translation missing: ka.general.cart.discount.error",
shippingError: "Translation missing: ka.general.cart.discount.shipping_error"
};
theme.recipientFormStrings = {
expanded: "სასაჩუქრე ბარათის მიმღების ფორმა გაფართოვდა",
collapsed: "სასაჩუქრე ბარათის მიმღების ფორმა ჩაკეცილია"
};
theme.quickOrderListStrings = {
itemsAdded: "",
itemAdded: "",
itemsRemoved: "",
itemRemoved: "",
viewCart: "",
each: "",
minError: "",
maxError: "",
stepError: ""
};
theme.cartStrings = {
error: "",
quantityError: "",
giftNoteAttribute: "Translation missing: ka.cart.gift_wrapping.attributes.gift_note",
giftWrapAttribute: "Translation missing: ka.cart.gift_wrapping.attributes.gift_wrap",
giftWrapBooleanTrue: "Translation missing: ka.cart.gift_wrapping.boolean.true",
targetProductAttribute: "Translation missing: ka.cart.gift_wrapping.attributes.target_product"
};
theme.dateStrings = {
d: "",
day: "Დღეს",
days: "დღეები",
h: "",
hour: "საათი",
hours: "საათები",
m: "",
minute: "მინ",
minutes: "მინ",
s: "",
second: "წმ",
seconds: "წმ"
};theme.strings = {
recentlyViewedEmpty: "თქვენი ახლახან ნანახი ცარიელია.",
close: "დახურვა",
next: "შემდეგი",
previous: "წინა",
qrImageAlt: "QR კოდი — სკანირება სასაჩუქრე ბარათის გამოსასყიდად"
};
theme.settings = {
moneyFormat: "{{amount}} ₾",
moneyWithCurrencyFormat: "{{amount}} ₾",
currencyCodeEnabled: false,
externalLinksNewTab: false,
cartType: "drawer",
isCartTemplate: false,
pswpModule: "\/\/www.meama.ge\/cdn\/shop\/t\/123\/assets\/photoswipe.min.js?v=41760041872977459911769936436",
themeName: 'Concept',
themeVersion: '5.3.0',
agencyId: ''
};</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-725255654"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-725255654');
</script>
<!-- BEGIN app block: shopify://apps/tablepress-size-chart/blocks/tablepress-block-dev/0315ebd4-567b-4721-9e07-500c79914395 --><script>console.log('Script tag load tp')</script>
<script>
var TP_IDX_url = "https://app.identixweb.com/";
</script>
<script type="text/javascript" async src="https://app.identixweb.com/tablepress/assets/js/tablepress.js"></script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/wisepops-email-sms-popups/blocks/app-embed/e7d7a4f7-0df4-4073-9375-5f36db513952 --><script>
// Create the wisepops() function
window.wisepops_key = window.WisePopsObject = window.wisepops_key || window.WisePopsObject || "wisepops";
window[window.wisepops_key] = function () {
window[window.wisepops_key].q.push(arguments);
};
window[window.wisepops_key].q = [];
window[window.wisepops_key].l = Date.now();
// Disable deprecated snippet
window._wisepopsSkipShopifyDeprecatedSnippet = true;
document.addEventListener('wisepops.after-initialization', function () {
// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
function getCookieValue(sKey) {
if (!sKey) { return null; }
return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1")) || null;
}
function getTotalInventoryQuantity() {
var variants = null;
if (!variants) {
return null;
}
var totalQuantity = 0;
for (var i in variants) {
if (variants[i] && variants[i].inventory_quantity) {
totalQuantity += variants[i].inventory_quantity;
} else {
return null;
}
}
return totalQuantity;
}
function getMapCartItems(key, items){
var cartItems = items ?? [];
return cartItems.map(function (item) {
return item[key];
})
.filter(function (item){
if (item !== undefined && item !== null && item !== "") {
return true;
}
return false;
})
.join(',');
}
// Set built-in properties
window[window.wisepops_key]('properties', {
client_id: null,
cart: {
discount_code: getCookieValue('discount_code'),
item_count: 0,
total_price: 0 / 100,
currency: "GEL",
skus: getMapCartItems('sku'),
items: []
},
customer: {
accepts_marketing: false,
is_logged_in: false ,
last_order: {
created_at: null,
},
orders_count: 0,
total_spent: (isNaN(null) ? 0 : (null / 100)),
tags: null ,
email: null,
first_name: null,
last_name: null,
},
product: {
available: null,
price: null ,
tags: null,
total_inventory_quantity: getTotalInventoryQuantity(),
stock: 0,
},
orders: {},
}, { temporary: true });
// Custom event when product added to cart
var shopifyTrackFunction = window.ShopifyAnalytics && ShopifyAnalytics.lib && ShopifyAnalytics.lib.track;
var lastAddedToCartTimestamp = 0;
if (shopifyTrackFunction) {
ShopifyAnalytics.lib.track = function () {
if (arguments[0] === 'Added Product') {
(async () => {
let cartPayload;
try {
cartPayload = await (await fetch(window.Shopify.routes.root + 'cart.js')).json();
} catch (e) {}
if (cartPayload) {
window[window.wisepops_key]('properties', {
cart: {
discount_code: getCookieValue('discount_code'),
item_count: cartPayload.items.length,
total_price: (cartPayload.total_price ?? 0) / 100,
currency: cartPayload.currency,
skus: getMapCartItems('sku', cartPayload.items),
items: cartPayload.items.map(item => ({
product_id: item.product_id,
variant_id: item.variant_id,
sku: item.sku,
quantity: item.quantity,
price: (item.final_price ?? 0) / 100,
totalPrice: (item.final_line_price ?? 0) / 100
})),
}
}, {temporary: true});
}
var currentTimestamp = Date.now();
if (currentTimestamp > lastAddedToCartTimestamp + 5000) {
window[window.wisepops_key]('event', 'product-added-to-cart');
lastAddedToCartTimestamp = currentTimestamp;
}
})();
}
shopifyTrackFunction.apply(this, arguments);
};
}
});
</script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/hulk-form-builder/blocks/app-embed/b6b8dd14-356b-4725-a4ed-77232212b3c3 --><!-- BEGIN app snippet: hulkapps-formbuilder-theme-ext --><script type="text/javascript">
if (typeof window.formbuilder_customer != "object") {
window.formbuilder_customer = {}
}
window.hulkFormBuilder = {
form_data: {},
shop_data: {"shop_HIcOxsDH6qn2WR-T96MwAQ":{"shop_uuid":"HIcOxsDH6qn2WR-T96MwAQ","shop_timezone":"Asia\/Tbilisi","shop_id":135909,"shop_is_after_submit_enabled":false,"shop_shopify_plan":"Shopify Plus","shop_shopify_domain":"meama-georgia.myshopify.com","shop_created_at":"2025-05-07T03:22:34.008-05:00","is_skip_metafield":false,"shop_deleted":false,"shop_disabled":false}},
settings_data: {"shop_settings":{"shop_customise_msgs":[],"default_customise_msgs":{"is_required":"is required","thank_you":"Thank you! The form was submitted successfully.","processing":"Processing...","valid_data":"Please provide valid data","valid_email":"Provide valid email format","valid_tags":"HTML Tags are not allowed","valid_phone":"Provide valid phone number","valid_captcha":"Please provide valid captcha response","valid_url":"Provide valid URL","only_number_alloud":"Provide valid number in","number_less":"must be less than","number_more":"must be more than","image_must_less":"Image must be less than 20MB","image_number":"Images allowed","image_extension":"Invalid extension! Please provide image file","error_image_upload":"Error in image upload. Please try again.","error_file_upload":"Error in file upload. Please try again.","your_response":"Your response","error_form_submit":"Error occur.Please try again after sometime.","email_submitted":"Form with this email is already submitted","invalid_email_by_zerobounce":"The email address you entered appears to be invalid. Please check it and try again.","download_file":"Download file","card_details_invalid":"Your card details are invalid","card_details":"Card details","please_enter_card_details":"Please enter card details","card_number":"Card number","exp_mm":"Exp MM","exp_yy":"Exp YY","crd_cvc":"CVV","payment_value":"Payment amount","please_enter_payment_amount":"Please enter payment amount","address1":"Address line 1","address2":"Address line 2","city":"City","province":"Province","zipcode":"Zip code","country":"Country","blocked_domain":"This form does not accept addresses from","file_must_less":"File must be less than 20MB","file_extension":"Invalid extension! Please provide file","only_file_number_alloud":"files allowed","previous":"Previous","next":"Next","must_have_a_input":"Please enter at least one field.","please_enter_required_data":"Please enter required data","atleast_one_special_char":"Include at least one special character","atleast_one_lowercase_char":"Include at least one lowercase character","atleast_one_uppercase_char":"Include at least one uppercase character","atleast_one_number":"Include at least one number","must_have_8_chars":"Must have 8 characters long","be_between_8_and_12_chars":"Be between 8 and 12 characters long","please_select":"Please Select","phone_submitted":"Form with this phone number is already submitted","user_res_parse_error":"Error while submitting the form","valid_same_values":"values must be same","product_choice_clear_selection":"Clear Selection","picture_choice_clear_selection":"Clear Selection","remove_all_for_file_image_upload":"Remove All","invalid_file_type_for_image_upload":"You can't upload files of this type.","invalid_file_type_for_signature_upload":"You can't upload files of this type.","max_files_exceeded_for_file_upload":"You can not upload any more files.","max_files_exceeded_for_image_upload":"You can not upload any more files.","file_already_exist":"File already uploaded","max_limit_exceed":"You have added the maximum number of text fields.","cancel_upload_for_file_upload":"Cancel upload","cancel_upload_for_image_upload":"Cancel upload","cancel_upload_for_signature_upload":"Cancel upload"},"shop_blocked_domains":[]}},
features_data: {"shop_plan_features":{"shop_plan_features":["unlimited-forms","full-design-customization","export-form-submissions","multiple-recipients-for-form-submissions","multiple-admin-notifications","enable-captcha","unlimited-file-uploads","save-submitted-form-data","set-auto-response-message","conditional-logic","form-banner","save-as-draft-facility","include-user-response-in-admin-email","disable-form-submission","file-upload"]}},
shop: null,
shop_id: null,
plan_features: null,
validateDoubleQuotes: false,
assets: {
extraFunctions: "https://cdn.shopify.com/extensions/019bb5ee-ec40-7527-955d-c1b8751eb060/form-builder-by-hulkapps-50/assets/extra-functions.js",
extraStyles: "https://cdn.shopify.com/extensions/019bb5ee-ec40-7527-955d-c1b8751eb060/form-builder-by-hulkapps-50/assets/extra-styles.css",
bootstrapStyles: "https://cdn.shopify.com/extensions/019bb5ee-ec40-7527-955d-c1b8751eb060/form-builder-by-hulkapps-50/assets/theme-app-extension-bootstrap.css"
},
translations: {
htmlTagNotAllowed: "HTML Tags are not allowed",
sqlQueryNotAllowed: "SQL Queries are not allowed",
doubleQuoteNotAllowed: "Double quotes are not allowed",
vorwerkHttpWwwNotAllowed: "The words \u0026#39;http\u0026#39; and \u0026#39;www\u0026#39; are not allowed. Please remove them and try again.",
maxTextFieldsReached: "You have added the maximum number of text fields.",
avoidNegativeWords: "Avoid negative words: Don\u0026#39;t use negative words in your contact message.",
customDesignOnly: "This form is for custom designs requests. For general inquiries please contact our team at info@stagheaddesigns.com",
zerobounceApiErrorMsg: "We couldn\u0026#39;t verify your email due to a technical issue. Please try again later.",
}
}
window.FbThemeAppExtSettingsHash = {}
</script><!-- END app snippet --><!-- END app block --><!-- BEGIN app block: shopify://apps/loyalty-rewards-and-referrals/blocks/embed-sdk/6f172e67-4106-4ac0-89c5-b32a069b3101 -->
<style
type='text/css'
data-lion-app-styles='main'
data-lion-app-styles-settings='{"disableBundledCSS":false,"disableBundledFonts":false,"useClassIsolator":false}'
></style>
<!-- loyaltylion.snippet.version=6250e82e37+8218 -->
<script>
!function(t,n){function o(n){var o=t.getElementsByTagName("script")[0],i=t.createElement("script");i.src=n,i.crossOrigin="",o.parentNode.insertBefore(i,o)}if(!n.isLoyaltyLion){window.loyaltylion=n,void 0===window.lion&&(window.lion=n),n.version=2,n.isLoyaltyLion=!0;var i=new Date,e=i.getFullYear().toString()+i.getMonth().toString()+i.getDate().toString();o("https://sdk.loyaltylion.net/static/2/loader.js?t="+e);var r=!1;n.init=function(t){if(r)throw new Error("Cannot call lion.init more than once");r=!0;var a=n._token=t.token;if(!a)throw new Error("Token must be supplied to lion.init");for(var l=[],s="_push configure bootstrap shutdown on removeListener authenticateCustomer".split(" "),c=0;c<s.length;c+=1)!function(t,n){t[n]=function(){l.push([n,Array.prototype.slice.call(arguments,0)])}}(n,s[c]);o("https://sdk.loyaltylion.net/sdk/start/"+a+".js?t="+e+i.getHours().toString()),n._initData=t,n._buffer=l}}}(document,window.loyaltylion||[]);
loyaltylion.init(
{ token: "1b927b7cf49461f329f3d349e888fa8f" }
);
loyaltylion.configure({
disableBundledCSS: false,
disableBundledFonts: false,
useClassIsolator: false,
})
</script>
<!-- END app block --><!-- BEGIN app block: shopify://apps/capi-facebook-pixel-meta-api/blocks/facebook-ads-pixels/4ad3004f-fa0b-4587-a4f1-4d8ce89e9fbb -->
<script>
window.__adTraceFacebookPaused = ``;
window.__adTraceFacebookServerSideApiEnabled = ``;
window.__adTraceShopifyDomain = `https://www.meama.ge`;
window.__adTraceIsProductPage = `index`.includes("product");
window.__adTraceShopCurrency = `GEL`;
window.__adTraceProductInfo = {
"id": "",
"name": ``,
"price": "",
"url": "",
"description": null,
"image": "<!-- Liquid error (shopify://apps/capi-facebook-pixel-meta-api/blocks/facebook-ads-pixels/4ad3004f-fa0b-4587-a4f1-4d8ce89e9fbb line 31): invalid url input -->"
};
</script>
<!-- END app block --><script src="https://cdn.shopify.com/extensions/019b8d54-2388-79d8-becc-d32a3afe2c7a/omnisend-50/assets/omnisend-in-shop.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/019bfef2-4f3f-7750-adf7-8e9b7ef4ab6a/upsell-koala-discount-803/assets/deals-embed.js" type="text/javascript" defer="defer"></script>
<link href="https://cdn.shopify.com/extensions/019bfef2-4f3f-7750-adf7-8e9b7ef4ab6a/upsell-koala-discount-803/assets/deals-embed.css" rel="stylesheet" type="text/css" media="all">
<script src="https://cdn.shopify.com/extensions/019bb5ee-ec40-7527-955d-c1b8751eb060/form-builder-by-hulkapps-50/assets/form-builder-script.js" type="text/javascript" defer="defer"></script>
<script src="https://cdn.shopify.com/extensions/15956640-5fbd-4282-a77e-c39c9c2d6136/facebook-instagram-pixels-at-90/assets/facebook-pixel.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 65216217280,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 65216217280,storefrontBaseUrl: "https://www.meama.ge",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86"],webPixelsConfigList: [{"id":"1806762176","configuration":"{\"shop\":\"meama-georgia.myshopify.com\",\"cookie_duration\":\"604800\",\"first_touch_or_last\":\"last_touch\",\"goaffpro_identifiers\":\"gfp_ref,ref,aff,wpam_id,click_id\",\"ignore_ad_clicks\":\"false\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"a74598cb423e21a6befc33d5db5fba42","type":"APP","apiClientId":2744533,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1651736768","configuration":"{\"hash\":\"KdZEBtMGmA\",\"ingestion_url\":\"https:\/\/activity.wisepops.com\",\"goal_hash\":\"BlgC52QezkG3B4Y6RKJGLdElVCyy9FVM\",\"loader_url\":\"https:\/\/wisepops.net\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"f2ebd2ee515d1c2407650eb3f3fbaa1c","type":"APP","apiClientId":461977,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"]}},{"id":"1508540608","configuration":"{\"apiURL\":\"https:\/\/api.omnisend.com\",\"appURL\":\"https:\/\/app.omnisend.com\",\"brandID\":\"68f0cf2461b6e1c40d51c025\",\"trackingURL\":\"https:\/\/wt.omnisendlink.com\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"aa9feb15e63a302383aa48b053211bbb","type":"APP","apiClientId":186001,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"1508278464","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"AW-17656609807\\\"],\\\"target_country\\\":\\\"ZZ\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/n-TpCJuAnK4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/xf9RCKPvia4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/qa1CCKzvia4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/8o6jCKDvia4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/vpVkCKnvia4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/sSa8CJ6AnK4bEI_4qeNB\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-F6T1F700KN\\\",\\\"AW-17656609807\\\/CAXgCKbvia4bEI_4qeNB\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"b2a88bafab3e21179ed38636efcd8a93","type":"APP","apiClientId":1780363,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"957087936","configuration":"{\"pixel_id\":\"1900150077490665\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"923828416","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7cdc39010a6dc2538bf2c353ef0a6e06","type":"APP","apiClientId":11989123073,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"]}},{"id":"118685888","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Smart Story"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"MEAMA","paymentSettings":{"currencyCode":"GEL"},"myshopifyDomain":"meama-georgia.myshopify.com","countryCode":"GE","storefrontUrl":"https:\/\/www.meama.ge"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://www.meama.ge/cdn","3918e4e0wbf3ac3cepc5707306mb02b36c6",{"modern":"","legacy":""},{"shopId":"65216217280","storefrontBaseUrl":"https:\/\/www.meama.ge","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\"]","isMerchantRequest":"false","hashVersion":"3918e4e0wbf3ac3cepc5707306mb02b36c6","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'GEL';
var meta = {"page":{"pageType":"home","requestId":"8c56aa74-6228-424d-98f7-bd410a94a6ea-1770151094"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>
<script class="analytics">
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 65216217280,
theme_id: 150452601024,
app_name: "storefront",
context_url: window.location.href,
source_url: "//www.meama.ge/cdn/s/trekkie.storefront.b37867e0a413f1c9ade9179965a3871208e6387b.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//www.meama.ge/cdn/s/trekkie.storefront.b37867e0a413f1c9ade9179965a3871208e6387b.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//www.meama.ge/cdn/s/trekkie.storefront.b37867e0a413f1c9ade9179965a3871208e6387b.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":65216217280,"isMerchantRequest":null,"themeId":150452601024,"themeCityHash":"2594304882373664928","contentLanguage":"ka","currency":"GEL"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["65f19447","b5387b81"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"8c56aa74-6228-424d-98f7-bd410a94a6ea-1770151094","shopifyEmitted":true});
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//www.meama.ge/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
defer
src="https://www.meama.ge/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.1.0.min.js"
data-application="storefront-renderer"
data-shop-id="65216217280"
data-render-region="gcp-europe-west1"
data-page-type="index"
data-theme-instance-id="150452601024"
data-theme-name="Concept"
data-theme-version="5.3.0"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
data-shs="true"
data-shs-beacon="true"
data-shs-export-with-fetch="true"
data-shs-logs-sample-rate="1"
data-shs-beacon-endpoint="https://www.meama.ge/api/collect"
></script>
</head>
<body class="template-index" data-rounded-button="round" data-rounded-input="round-slight" data-rounded-block="round" data-rounded-card="round" data-button-hover="standard" data-page-transition data-lazy-image data-title-animation data-page-rendering>
<a class="sr-only skip-link" href="#MainContent">გამოტოვება</a><loading-bar class="loading-bar block fixed top-0 left-0 w-full h-full overflow-hidden pointer-events-none"><svg class="icon icon-spinner icon-lg absolute animate-spin" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2"></path>
</svg></loading-bar>
<mouse-cursor class="mouse-cursor z-50 fixed select-none flex items-center justify-center pointer-events-none rounded-full" role="button" aria-label="დახურვა" aria-hidden="true">
<svg class="icon icon-cursor" stroke="currentColor" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M10 30L30 10M10 10L30 30" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</mouse-cursor>
<!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--20083405947072__meama_announcement_bar_KziTpe" class="shopify-section shopify-section-group-header-group topbar-section">
<style>
:root {--topbar-height: var(--sp-12);}
@media screen and (min-width: 1536px) {
:root {--topbar-height: var(--sp-14);}
}
#shopify-section-sections--20083405947072__meama_announcement_bar_KziTpe {
--gradient-background: #1f1f1f;
--color-background: 31 31 31;
--color-foreground: 250 250 250;
--color-highlight: 255 221 191;
}
</style><div class="topbar topbar--center page-width page-width--full section relative grid py-0 h-full w-full items-center"><div app-target="announcement-bar" class="announcement-bar h-full flex justify-center lg:justify-center without-nav relative">
<announcement-bar id="Slider-sections--20083405947072__meama_announcement_bar_KziTpe" class="announcement__slides" autoplay autoplay-speed="5"><div class="announcement__slide flex h-full" ><a class="announcement__content flex items-center gap-2" href="/pages/miwodeba"><span class="announcement-icon hidden md:block"><svg class="icon icon-truck icon-xs stroke-1" viewbox="0 0 16 16" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M6.66675 12.6667H9.33342M6.66675 12.6667C6.66675 13.7712 5.77132 14.6667 4.66675 14.6667C3.56218 14.6667 2.66675 13.7712 2.66675 12.6667M6.66675 12.6667C6.66675 11.5621 5.77132 10.6667 4.66675 10.6667C3.56218 10.6667 2.66675 11.5621 2.66675 12.6667M9.33342 12.6667C9.33342 13.7712 10.2288 14.6667 11.3334 14.6667C12.438 14.6667 13.3334 13.7712 13.3334 12.6667M9.33342 12.6667C9.33342 11.5621 10.2288 10.6667 11.3334 10.6667C12.438 10.6667 13.3334 11.5621 13.3334 12.6667M13.3334 12.6667V12.6667C14.438 12.6667 15.3334 11.7712 15.3334 10.6667V4.53334C15.3334 3.41324 15.3334 2.85319 15.1154 2.42536C14.9237 2.04904 14.6177 1.74308 14.2414 1.55133C13.8136 1.33334 13.2535 1.33334 12.1334 1.33334H10.3334C9.40153 1.33334 8.93559 1.33334 8.56805 1.48558C8.07799 1.68857 7.68864 2.07792 7.48566 2.56798C7.33342 2.93552 7.33342 3.40146 7.33342 4.33334V4.33334C7.33342 5.26523 7.33342 5.73117 7.18117 6.09871C6.97819 6.58877 6.58884 6.97811 6.09878 7.1811C5.73124 7.33334 5.2653 7.33334 4.33341 7.33334H1.00008M2.66675 12.6667V12.6667C2.20176 12.6667 1.96927 12.6667 1.77852 12.6156C1.26088 12.4769 0.85656 12.0725 0.717859 11.5549C0.666748 11.3642 0.666748 11.1317 0.666748 10.6667V8.86795C0.666748 8.44463 0.666748 8.23297 0.688385 8.0258C0.734513 7.58411 0.853872 7.15318 1.04157 6.7507C1.1296 6.56192 1.2385 6.38042 1.4563 6.01743V6.01743C1.78307 5.47281 1.94646 5.20049 2.14753 4.97976C2.57779 4.50743 3.14762 4.18479 3.77402 4.05886C4.06674 4.00001 4.38431 4.00001 5.01944 4.00001H7.33342" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span><p class="announcement-text leading-tight">უფასო მიწოდება 50₾-დან</p></a></div></announcement-bar></div><div class="localization hidden lg:flex items-center h-full"><div class="localization__item h-full relative" role="combobox" aria-controls="LanguageLocalization-sections--20083405947072__meama_announcement_bar_KziTpe" aria-expanded="false" aria-label="ენა">
<button type="button" class="flex items-center gap-3 h-full z-2 relative"><api-button class="api-only" data-id="announcement_localization_language_form" data-section-id="sections--20083405947072__meama_announcement_bar_KziTpe"></api-button><svg class="icon icon-language icon-xs stroke-1 hidden xl:block" viewbox="0 0 18 18" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z"></path>
<path stroke-linecap="round" stroke-linejoin="round" d="M2.46661 13.6167L3.44161 13.025C3.53831 12.9654 3.61815 12.882 3.67358 12.7829C3.729 12.6837 3.75816 12.572 3.75828 12.4584L3.77495 9.45005C3.77628 9.32533 3.81392 9.20371 3.88328 9.10005L5.53328 6.50838C5.58279 6.43181 5.64731 6.36607 5.72293 6.31512C5.79855 6.26416 5.88371 6.22906 5.97327 6.21193C6.06283 6.1948 6.15493 6.19599 6.24402 6.21543C6.33311 6.23487 6.41733 6.27216 6.49161 6.32505L8.12495 7.50838C8.26587 7.60663 8.4374 7.65099 8.60828 7.63338L11.2333 7.27505C11.3925 7.25312 11.538 7.17296 11.6416 7.05005L13.4916 4.91672C13.6013 4.78667 13.6579 4.62 13.6499 4.45005L13.5583 2.42505"></path>
<path stroke-linecap="round" stroke-linejoin="round" d="M13.925 15.3083L13.025 14.4083C12.9418 14.3251 12.8384 14.2648 12.725 14.2333L10.9334 13.7666C10.776 13.7235 10.6399 13.6243 10.5508 13.4876C10.4617 13.3509 10.4259 13.1863 10.45 13.025L10.6417 11.675C10.6607 11.5614 10.7081 11.4545 10.7795 11.3642C10.8509 11.2739 10.944 11.203 11.05 11.1583L13.5834 10.1C13.701 10.0509 13.8303 10.0366 13.9558 10.0587C14.0814 10.0809 14.1979 10.1386 14.2917 10.225L16.3667 12.125"></path>
</svg><span class="leading-tight">Ქართული</span><svg class="icon icon-chevron-down icon-xs" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 9L12 15L18 9"></path>
</svg></button>
<dropdown-localization class="dropdown opacity-0 invisible z-30 absolute top-100 right-0 pointer-events-none" id="LanguageLocalization-sections--20083405947072__meama_announcement_bar_KziTpe"><div class="dropdown__container" id="announcement_localization_language_form"></div></dropdown-localization>
</div></div></div>
</div><div id="shopify-section-sections--20083405947072__meama_header_MPCxCm" class="shopify-section shopify-section-group-header-group header-section"><style>
@font-face {
font-family: 'Meama Sans LGV';
src: url('//www.meama.ge/cdn/shop/t/123/assets/MeamaSansLGV-Regular.ttf?v=48922144562348291241769936469') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Meama Sans LGV';
src: url('//www.meama.ge/cdn/shop/t/123/assets/MeamaSansLGV-Medium.ttf?v=89008230661550520081769936469') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
:root {
--font-heading-family: 'Meama Sans LGV', sans-serif;
--font-body-family: 'Meama Sans LGV', sans-serif;
}
.heading,
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Meama Sans LGV', sans-serif;
font-weight: 500;
}
body,
p,
.text-base,
.text-sm,
.text-lg,
.text-xl,
.description,
.rte {
font-family: 'Meama Sans LGV', sans-serif;
font-weight: 400;
}
#shopify-section-sections--20083405947072__meama_header_MPCxCm {
--section-padding-top: 32px;
--section-padding-bottom: 32px;
--color-background: 255 255 255;
--color-foreground: 23 23 23;
--color-transparent: 255 255 255;
--color-localization: ;
}
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"],
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:hover,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:focus,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu:hover,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu:focus,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item[style*="rgb(179, 2, 2)"],
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item[style*="rgb(179, 2, 2)"]:hover,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item[style*="rgb(179, 2, 2)"]:focus {
color: rgb(179, 2, 2) !important;
}
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"] .btn-text,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:hover .btn-text,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:focus .btn-text,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"] .btn-duplicate,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:hover .btn-duplicate,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .menu__item[style*="rgb(179, 2, 2)"]:focus .btn-duplicate,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu .heading,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu:hover .heading,
#shopify-section-sections--20083405947072__meama_header_MPCxCm .drawer__menu-item.raffle-menu:focus .heading,
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"],
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"]:hover,
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"]:focus,
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"] .heading,
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"]:hover .heading,
#shopify-section-sections--20083405947072__meama_header_MPCxCm summary.drawer__menu-item[style*="rgb(179, 2, 2)"]:focus .heading {
color: rgb(179, 2, 2) !important;
}
</style><menu-drawer app-target="menu-drawer" id="MenuDrawer" class="menu-drawer drawer drawer--start z-30 fixed bottom-0 left-0 h-full w-full pointer-events-none"
data-section-id="sections--20083405947072__meama_header_MPCxCm"
hidden
>
<overlay-element class="overlay fixed-modal invisible opacity-0 fixed bottom-0 left-0 w-full h-screen pointer-events-none" aria-controls="MenuDrawer" aria-expanded="false"></overlay-element>
<div class="drawer__inner z-10 absolute top-0 flex flex-col w-full h-full overflow-hidden">
<gesture-element class="drawer__header flex justify-between opacity-0 invisible relative">
<span class="drawer__title heading lg:text-3xl text-2xl leading-none tracking-tight"></span>
<button class="button button--secondary button--close drawer__close hidden sm:flex items-center justify-center" type="button" is="hover-button" aria-controls="MenuDrawer" aria-expanded="false" aria-label="დახურვა">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-close icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 15L15 5M5 5L15 15"></path>
</svg></span>
</button>
</gesture-element>
<!-- Search form inserted on top -->
<div class="drawer__scrollable relative flex flex-col" app-target="drawer-search" style="padding: 5px 0; overflow: visible; height: auto; min-width: 0; display: none;">
<form class="search__form flex flex-col gap-8 relative" action="/search" method="GET" role="search" style="padding: 0 5px; min-width: 0;">
<input type="hidden" name="options[prefix]" value="last">
<label class="sr-only" for="SearchFormInput-sections--sections--18174716969152__header__search-drawer">ძიება</label>
<div class="search__field field flex items-center gap-4 relative min-w-0">
<input
class="input w-full min-w-0"
type="search"
name="q"
id="SearchFormInput-sections--sections--18174716969152__header__search-drawer"
placeholder="ძიება ..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="off"
style="padding: 0 20px;"
>
</div>
</form>
</div>
<div class="drawer__content opacity-0 invisible flex flex-col h-full grow shrink">
<nav class="relative grow overflow-hidden" role="navigation">
<ul class="drawer__scrollable drawer__menu relative w-full h-full" role="list" data-parent><li class="drawer__menu-group"><details is="menu-details">
<summary class="drawer__menu-item block cursor-pointer relative" aria-expanded="false">
<span class="heading text-2xl leading-none tracking-tight"><api-button class="api-only" data-id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-1" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button>აპარატები</span><svg class="icon icon-chevron-right icon-lg" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></summary>
<div class="drawer__submenu z-1 absolute top-0 left-0 flex flex-col w-full h-full" data-parent><button type="button" class="tracking-tight heading text-base shrink-0 flex items-center gap-3 w-full" data-close>აპარატები</button><div id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-1" class="drawer__scrollable flex flex-col h-full"></div></div>
</details>
</li><li class="drawer__menu-group"><details is="menu-details">
<summary class="drawer__menu-item block cursor-pointer relative" aria-expanded="false">
<span class="heading text-2xl leading-none tracking-tight"><api-button class="api-only" data-id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-2" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button>კაფსულები</span><svg class="icon icon-chevron-right icon-lg" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></summary>
<div class="drawer__submenu z-1 absolute top-0 left-0 flex flex-col w-full h-full" data-parent><button type="button" class="tracking-tight heading text-base shrink-0 flex items-center gap-3 w-full" data-close>კაფსულები</button><div id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-2" class="drawer__scrollable flex flex-col h-full"></div></div>
</details>
</li><li class="drawer__menu-group"><details is="menu-details">
<summary class="drawer__menu-item block cursor-pointer relative" aria-expanded="false">
<span class="heading text-2xl leading-none tracking-tight"><api-button class="api-only" data-id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-3" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button>აქსესუარები</span><svg class="icon icon-chevron-right icon-lg" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></summary>
<div class="drawer__submenu z-1 absolute top-0 left-0 flex flex-col w-full h-full" data-parent><button type="button" class="tracking-tight heading text-base shrink-0 flex items-center gap-3 w-full" data-close>აქსესუარები</button><div id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-3" class="drawer__scrollable flex flex-col h-full"></div></div>
</details>
</li><li class="drawer__menu-group"><details is="menu-details">
<summary class="drawer__menu-item block cursor-pointer relative" aria-expanded="false">
<span class="heading text-2xl leading-none tracking-tight"><api-button class="api-only" data-id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-4" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button>კლასიკური ყავა</span><svg class="icon icon-chevron-right icon-lg" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></summary>
<div class="drawer__submenu z-1 absolute top-0 left-0 flex flex-col w-full h-full" data-parent><button type="button" class="tracking-tight heading text-base shrink-0 flex items-center gap-3 w-full" data-close>კლასიკური ყავა</button><div id="DrawerSubMenu-sections--20083405947072__meama_header_MPCxCm-4" class="drawer__scrollable flex flex-col h-full"></div></div>
</details>
</li><li class="drawer__menu-group"><a class="drawer__menu-item block heading text-2xl leading-none tracking-tight" href="/collections/offers">შეთავაზებები</a></li><li class="drawer__menu-group"><a class="drawer__menu-item block heading text-2xl leading-none tracking-tight raffle-menu" href="/pages/meama-raffle-1" style="color: rgb(179, 2, 2);">გათამაშება</a></li></ul>
</nav>
<div class="drawer__footer grid w-full"><div class="drawer__footer-top flex" app-target="language-switcher-hidden"><button type="button" class="flex gap-3 grow items-center justify-between" aria-controls="LocalizationLanguage-sections--20083405947072__meama_header_MPCxCm" aria-expanded="false"><api-button class="api-only" data-id="header_drawer_localization_language_form" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="text-sm leading-none flex items-center gap-2 w-auto"><svg class="icon icon-language icon-xs stroke-1 hidden md:block shrink-0" viewbox="0 0 18 18" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z"></path>
<path stroke-linecap="round" stroke-linejoin="round" d="M2.46661 13.6167L3.44161 13.025C3.53831 12.9654 3.61815 12.882 3.67358 12.7829C3.729 12.6837 3.75816 12.572 3.75828 12.4584L3.77495 9.45005C3.77628 9.32533 3.81392 9.20371 3.88328 9.10005L5.53328 6.50838C5.58279 6.43181 5.64731 6.36607 5.72293 6.31512C5.79855 6.26416 5.88371 6.22906 5.97327 6.21193C6.06283 6.1948 6.15493 6.19599 6.24402 6.21543C6.33311 6.23487 6.41733 6.27216 6.49161 6.32505L8.12495 7.50838C8.26587 7.60663 8.4374 7.65099 8.60828 7.63338L11.2333 7.27505C11.3925 7.25312 11.538 7.17296 11.6416 7.05005L13.4916 4.91672C13.6013 4.78667 13.6579 4.62 13.6499 4.45005L13.5583 2.42505"></path>
<path stroke-linecap="round" stroke-linejoin="round" d="M13.925 15.3083L13.025 14.4083C12.9418 14.3251 12.8384 14.2648 12.725 14.2333L10.9334 13.7666C10.776 13.7235 10.6399 13.6243 10.5508 13.4876C10.4617 13.3509 10.4259 13.1863 10.45 13.025L10.6417 11.675C10.6607 11.5614 10.7081 11.4545 10.7795 11.3642C10.8509 11.2739 10.944 11.203 11.05 11.1583L13.5834 10.1C13.701 10.0509 13.8303 10.0366 13.9558 10.0587C14.0814 10.0809 14.1979 10.1386 14.2917 10.225L16.3667 12.125"></path>
</svg>Ქართული</span><svg class="icon icon-chevron-down icon-xs shrink-0" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 9L12 15L18 9"></path>
</svg></button><modal-element id="LocalizationLanguage-sections--20083405947072__meama_header_MPCxCm" class="modal invisible absolute bottom-0 left-0 w-full h-full" role="dialog" hidden>
<overlay-element class="fixed-modal opacity-0 z-1 absolute top-0 left-0 w-full h-full" aria-controls="LocalizationLanguage-sections--20083405947072__meama_header_MPCxCm" aria-expanded="false"></overlay-element>
<div class="modal__container flex flex-col z-3 absolute left-0 bottom-0 w-full">
<button class="close items-center justify-center absolute top-0 right-0" type="button" is="magnet-button" aria-controls="LocalizationLanguage-sections--20083405947072__meama_header_MPCxCm" aria-expanded="false" aria-label="დახურვა">
<span class="inline-block" data-text><svg class="icon icon-close icon-md" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 15L15 5M5 5L15 15"></path>
</svg></span>
</button><div class="modal__content flex flex-col overflow-hidden" id="header_drawer_localization_language_form"></div></div>
</modal-element></div><div class="drawer__footer-bottom flex items-center justify-between gap-6"><ul class="flex flex-wrap items-center gap-6" role="list"><li><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/MEAMAGeorgia" class="social_platform block relative" is="magnet-link" aria-describedby="a11y-new-window-message" aria-label=""><svg class="icon icon-facebook icon-sm" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M9.03153 23L9 13H5V9H9V6.5C9 2.7886 11.2983 1 14.6091 1C16.1951 1 17.5581 1.11807 17.9553 1.17085V5.04948L15.6591 5.05052C13.8584 5.05052 13.5098 5.90614 13.5098 7.16171V9H18.75L16.75 13H13.5098V23H9.03153Z"/>
</svg><span class="sr-only">ფეისბუქი</span>
</a>
</li><li><a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/meama/" class="social_platform block relative" is="magnet-link" aria-describedby="a11y-new-window-message" aria-label=""><svg class="icon icon-instagram icon-sm" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M12 2.98C14.94 2.98 15.28 2.99 16.44 3.04C17.14 3.04 17.83 3.18 18.48 3.42C18.96 3.6 19.39 3.88 19.75 4.24C20.12 4.59 20.4 5.03 20.57 5.51C20.81 6.16 20.94 6.85 20.95 7.55C21 8.71 21.01 9.06 21.01 12C21.01 14.94 21 15.28 20.95 16.44C20.95 17.14 20.81 17.83 20.57 18.48C20.39 18.95 20.11 19.39 19.75 19.75C19.39 20.11 18.96 20.39 18.48 20.57C17.83 20.81 17.14 20.94 16.44 20.95C15.28 21 14.93 21.01 12 21.01C9.07 21.01 8.72 21 7.55 20.95C6.85 20.95 6.16 20.81 5.51 20.57C5.03 20.39 4.6 20.11 4.24 19.75C3.87 19.4 3.59 18.96 3.42 18.48C3.18 17.83 3.05 17.14 3.04 16.44C2.99 15.28 2.98 14.93 2.98 12C2.98 9.07 2.99 8.72 3.04 7.55C3.04 6.85 3.18 6.16 3.42 5.51C3.6 5.03 3.88 4.6 4.24 4.24C4.59 3.87 5.03 3.59 5.51 3.42C6.16 3.18 6.85 3.05 7.55 3.04C8.71 2.99 9.06 2.98 12 2.98ZM12 1C9.01 1 8.64 1.01 7.47 1.07C6.56 1.09 5.65 1.26 4.8 1.58C4.07 1.86 3.4 2.3 2.85 2.85C2.3 3.41 1.86 4.07 1.58 4.8C1.26 5.65 1.09 6.56 1.07 7.47C1.02 8.64 1 9.01 1 12C1 14.99 1.01 15.36 1.07 16.53C1.09 17.44 1.26 18.35 1.58 19.2C1.86 19.93 2.3 20.6 2.85 21.15C3.41 21.7 4.07 22.14 4.8 22.42C5.65 22.74 6.56 22.91 7.47 22.93C8.64 22.98 9.01 23 12 23C14.99 23 15.36 22.99 16.53 22.93C17.44 22.91 18.35 22.74 19.2 22.42C19.93 22.14 20.6 21.7 21.15 21.15C21.7 20.59 22.14 19.93 22.42 19.2C22.74 18.35 22.91 17.44 22.93 16.53C22.98 15.36 23 14.99 23 12C23 9.01 22.99 8.64 22.93 7.47C22.91 6.56 22.74 5.65 22.42 4.8C22.14 4.07 21.7 3.4 21.15 2.85C20.59 2.3 19.93 1.86 19.2 1.58C18.35 1.26 17.44 1.09 16.53 1.07C15.36 1.02 14.99 1 12 1ZM12 6.35C10.88 6.35 9.79 6.68 8.86 7.3C7.93 7.92 7.21 8.8 6.78 9.84C6.35 10.87 6.24 12.01 6.46 13.1C6.68 14.2 7.22 15.2 8.01 15.99C8.8 16.78 9.81 17.32 10.9 17.54C12 17.76 13.13 17.65 14.16 17.22C15.19 16.79 16.07 16.07 16.7 15.14C17.32 14.21 17.65 13.12 17.65 12C17.65 10.5 17.05 9.06 16 8.01C14.94 6.95 13.5 6.36 12.01 6.36L12 6.35ZM12 15.67C11.27 15.67 10.57 15.45 9.96 15.05C9.36 14.65 8.89 14.07 8.61 13.4C8.33 12.73 8.26 11.99 8.4 11.28C8.54 10.57 8.89 9.92 9.4 9.4C9.91 8.88 10.57 8.54 11.28 8.4C11.99 8.26 12.73 8.33 13.4 8.61C14.07 8.89 14.64 9.36 15.05 9.96C15.45 10.56 15.67 11.27 15.67 12C15.67 12.97 15.28 13.91 14.6 14.59C13.91 15.28 12.98 15.66 12.01 15.66L12 15.67ZM17.87 7.45C18.6 7.45 19.19 6.86 19.19 6.13C19.19 5.4 18.6 4.81 17.87 4.81C17.14 4.81 16.55 5.4 16.55 6.13C16.55 6.86 17.14 7.45 17.87 7.45Z"/>
</svg><span class="sr-only">ინსტაგრამი</span>
</a>
</li><li><a target="_blank" rel="noopener noreferrer" href="https://www.youtube.com/@Meama" class="social_platform block relative" is="magnet-link" aria-describedby="a11y-new-window-message" aria-label=""><svg class="icon icon-youtube icon-sm" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M23.8 7.6C23.8 7.6 23.6 5.9 22.8 5.2C21.9 4.2 20.9 4.2 20.4 4.2C17 4 12 4 12 4C12 4 7 4 3.6 4.2C3.1 4.3 2.1 4.3 1.2 5.2C0.5 5.9 0.2 7.6 0.2 7.6C0.2 7.6 0 9.5 0 11.5V13.3C0 15.2 0.2 17.2 0.2 17.2C0.2 17.2 0.4 18.9 1.2 19.6C2.1 20.6 3.3 20.5 3.8 20.6C5.7 20.8 12 20.8 12 20.8C12 20.8 17 20.8 20.4 20.5C20.9 20.4 21.9 20.4 22.8 19.5C23.5 18.8 23.8 17.1 23.8 17.1C23.8 17.1 24 15.2 24 13.2V11.4C24 9.5 23.8 7.6 23.8 7.6ZM9.5 15.5V8.8L16 12.2L9.5 15.5Z"/>
</svg><span class="sr-only"></span>
</a>
</li><li><a target="_blank" rel="noopener noreferrer" href="https://www.tiktok.com/@meama" class="social_platform block relative" is="magnet-link" aria-describedby="a11y-new-window-message" aria-label=""><svg class="icon icon-tiktok icon-sm" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M10.6315 8.937V13.059C10.1123 12.9221 9.56911 12.9034 9.0418 13.0044C8.5145 13.1054 8.01657 13.3234 7.58473 13.6424C7.15288 13.9613 6.79813 14.3732 6.54661 14.8475C6.2951 15.3218 6.15324 15.8466 6.13148 16.383C6.10175 16.8449 6.17125 17.3078 6.33531 17.7405C6.49938 18.1733 6.7542 18.5659 7.08266 18.892C7.41111 19.2181 7.80557 19.4701 8.23952 19.631C8.67346 19.7919 9.13684 19.8581 9.59848 19.825C10.0648 19.8608 10.5333 19.7949 10.9717 19.6319C11.41 19.4689 11.8078 19.2126 12.1374 18.8809C12.4671 18.5491 12.7208 18.1498 12.881 17.7104C13.0413 17.271 13.1042 16.8021 13.0655 16.336V0H17.1425C17.8355 4.315 19.9935 5.316 22.8825 5.778V9.913C20.8804 9.74881 18.9491 9.09645 17.2575 8.013V16.18C17.2575 19.88 15.0675 24 9.63048 24C8.61045 23.9955 7.60156 23.7875 6.66297 23.3881C5.72437 22.9886 4.87496 22.4059 4.16451 21.6739C3.45407 20.942 2.89689 20.0755 2.52563 19.1254C2.15438 18.1754 1.97652 17.1607 2.00248 16.141C2.03479 15.0794 2.29174 14.0366 2.75639 13.0815C3.22105 12.1265 3.88285 11.2807 4.69819 10.6C5.51352 9.9193 6.46387 9.41915 7.48658 9.1325C8.50929 8.84586 9.58114 8.77923 10.6315 8.937Z"/>
</svg><span class="sr-only"></span>
</a>
</li></ul></div>
</div>
</div>
</div>
</menu-drawer>
<header app-target="header" data-section-id="sections--20083405947072__meama_header_MPCxCm" class="header header--left-center mobile:header--center page-width page-width--full section section--padding grid items-center z-20 relative w-full" is="sticky-header" data-sticky-type="always">
<div app-target="language-switcher" style="display:none">
<a aria-current="true" language-code="ka" language-name="ქართული" href="/"></a>
<a language-code="ru" language-name="რუსული" href="/ru"></a>
<a language-code="en" language-name="ინგლისური" href="/en"></a>
</div><div class="header__icons header__icons--start flex justify-start z-2">
<div class="header__buttons flex items-center gap-1d5"><div class="header__menu">
<ul class="flex flex-nowrap list-menu with-block"><li class="localization">
<details is="details-dropdown" trigger="hover" level="top">
<summary data-link="">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="header_localization_language_form_start" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text flex items-center gap-2" data-text><img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/droshai.svg?v=1762777302" alt="ქართული" width="22" height="22" style="border-radius: 50%;"></span>
<span class="btn-text btn-duplicate flex items-center gap-2"><img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/droshai.svg?v=1762777302" alt="ქართული" width="22" height="22" style="border-radius: 50%;"></span>
</magnet-element>
</summary>
<div class="dropdown opacity-0 invisible absolute top-0 max-w-full pointer-events-none"><div id="header_localization_language_form_start" class="dropdown__container relative"></div></div>
</details>
</li>
</ul>
</div><a href="/search" class="search-drawer-button flex items-center justify-center" is="magnet-link" aria-controls="SearchDrawer" aria-expanded="false" >
<span class="sr-only">ძიება</span><svg class="icon icon-search icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" d="m21 21-3.636-3.636m0 0A9 9 0 1 0 4.636 4.636a9 9 0 0 0 12.728 12.728Z"></path>
</svg></a><button app-target="menu" class="menu-drawer-button flex items-center gap-2d5 justify-center" type="button" is="magnet-button" aria-controls="MenuDrawer" aria-expanded="false">
<span class="sr-only">საიტის ნავიგაცია</span><svg class="icon icon-hamburger icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" d="M3 6H21M3 12H11M3 18H16"></path>
</svg></button></div>
</div>
<div class="header__logo flex justify-center z-2" itemscope itemtype="http://schema.org/Organization"><a app-target="logo"
href="/"
itemprop="url"
class="header__logo-link has-white-logo flex items-center relative"
>
<span class="sr-only">MEAMA</span><img src="//www.meama.ge/cdn/shop/files/meama_logo_text_black_1.svg?v=1761949508&width=2308" alt="" srcset="//www.meama.ge/cdn/shop/files/meama_logo_text_black_1.svg?v=1761949508&width=200 200w, //www.meama.ge/cdn/shop/files/meama_logo_text_black_1.svg?v=1761949508&width=400 400w" width="2308" height="378" loading="eager" sizes="200px" style="max-height: 32.755632582322356px;max-width: 200px;" itemprop="logo" is="lazy-image" class="logo hidden md:block"><img src="//www.meama.ge/cdn/shop/files/Group_3.svg?v=1761949544&width=431" alt="" srcset="//www.meama.ge/cdn/shop/files/Group_3.svg?v=1761949544&width=45 45w, //www.meama.ge/cdn/shop/files/Group_3.svg?v=1761949544&width=90 90w" width="431" height="378" loading="eager" sizes="45px" style="max-height: 39.46635730858469px;max-width: 45px;" itemprop="logo" is="lazy-image" class="logo md:hidden"><img src="//www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=2308" alt="" srcset="//www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=200 200w, //www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=400 400w" width="2308" height="378" loading="eager" sizes="200px" style="max-height: 32.755632582322356px;max-width: 200px;" itemprop="logo" is="lazy-image" class="white-logo hidden md:block absolute"><img src="//www.meama.ge/cdn/shop/files/Grouwp_3.svg?v=1761949555&width=431" alt="" srcset="//www.meama.ge/cdn/shop/files/Grouwp_3.svg?v=1761949555&width=45 45w, //www.meama.ge/cdn/shop/files/Grouwp_3.svg?v=1761949555&width=90 90w" width="431" height="378" loading="eager" sizes="45px" style="max-height: 39.46635730858469px;max-width: 45px;" itemprop="logo" is="lazy-image" class="white-logo md:hidden absolute"></a></div><div class="header__navigation hidden lg:flex lg:gap-5 lg:justify-start">
<nav class="header__menu hidden lg:flex" role="navigation" aria-label="Primary"><ul class="flex flex-wrap list-menu with-block" role="list"><li>
<details is="details-mega" trigger="hover" level="top" >
<summary data-link="/collections/machines" class="z-2 relative rounded-full" aria-haspopup="true" aria-expanded="false" aria-label="აპარატები">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-1-start" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text" data-text>აპარატები</span><span class="btn-text btn-duplicate">აპარატები</span></magnet-element>
</summary>
<div class="mega-menu absolute top-0 left-0 w-full max-w-full overflow-hidden pointer-events-none"><div class="mega-menu__container invisible"><ul id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-1-start" class="mega-menu__list page-width page-width--full flex flex-wrap w-full h-full overflow-hidden" role="list" tabindex="-1"><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li></ul></div></div>
</details>
</li><li>
<details is="details-mega" trigger="hover" level="top" >
<summary data-link="/collections/capsules" class="z-2 relative rounded-full" aria-haspopup="true" aria-expanded="false" aria-label="კაფსულები">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-2-start" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text" data-text>კაფსულები</span><span class="btn-text btn-duplicate">კაფსულები</span></magnet-element>
</summary>
<div class="mega-menu absolute top-0 left-0 w-full max-w-full overflow-hidden pointer-events-none"><div class="mega-menu__container invisible"><ul id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-2-start" class="mega-menu__list page-width page-width--full flex flex-wrap w-full h-full overflow-hidden" role="list" tabindex="-1"><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li></ul></div></div>
</details>
</li><li>
<details is="details-mega" trigger="hover" level="top" >
<summary data-link="/collections/meama-accessories" class="z-2 relative rounded-full" aria-haspopup="true" aria-expanded="false" aria-label="აქსესუარები">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-3-start" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text" data-text>აქსესუარები</span><span class="btn-text btn-duplicate">აქსესუარები</span></magnet-element>
</summary>
<div class="mega-menu absolute top-0 left-0 w-full max-w-full overflow-hidden pointer-events-none"><div class="mega-menu__container invisible"><ul id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-3-start" class="mega-menu__list page-width page-width--full flex flex-wrap w-full h-full overflow-hidden" role="list" tabindex="-1"><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li></ul></div></div>
</details>
</li><li>
<details is="details-mega" trigger="hover" level="top" >
<summary data-link="/collections/classic-coffee" class="z-2 relative rounded-full" aria-haspopup="true" aria-expanded="false" aria-label="კლასიკური ყავა">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-4-start" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text" data-text>კლასიკური ყავა</span><span class="btn-text btn-duplicate">კლასიკური ყავა</span></magnet-element>
</summary>
<div class="mega-menu absolute top-0 left-0 w-full max-w-full overflow-hidden pointer-events-none"><div class="mega-menu__container invisible"><ul id="HeaderNavMega-sections--20083405947072__meama_header_MPCxCm-4-start" class="mega-menu__list page-width page-width--full flex flex-wrap w-full h-full overflow-hidden" role="list" tabindex="-1"><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li><li class="mega-menu__item flex opacity-0 w-full aspect-square">
<span class="media-card media-card--card w-full h-full"></span>
</li></ul></div></div>
</details>
</li><li>
<a href="/collections/offers" class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" is="magnet-link" data-magnet="0" aria-label="შეთავაზებები">
<span class="btn-text" data-text>შეთავაზებები</span><span class="btn-text btn-duplicate">შეთავაზებები</span></a>
</li><li>
<a href="/pages/meama-raffle-1" class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" is="magnet-link" data-magnet="0" aria-label="გათამაშება">
<span class="btn-text" data-text>გათამაშება</span><span class="btn-text btn-duplicate">გათამაშება</span></a>
</li></ul>
</nav>
</div><div class="header__icons header__icons--end flex justify-end z-2">
<div class="header__buttons flex items-center gap-1d5"><div class="header__menu">
<ul class="flex flex-nowrap list-menu with-block"><li class="localization">
<details is="details-dropdown" trigger="hover" level="top">
<summary data-link="">
<magnet-element class="menu__item text-sm-lg flex items-center font-medium z-2 relative cursor-pointer" data-magnet="0"><api-button class="api-only" data-id="header_localization_language_form_end" data-section-id="sections--20083405947072__meama_header_MPCxCm"></api-button><span class="btn-text flex items-center gap-2" data-text><img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/droshai.svg?v=1762777302" alt="ქართული" width="22" height="22" style="border-radius: 50%;"></span>
<span class="btn-text btn-duplicate flex items-center gap-2"><img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/droshai.svg?v=1762777302" alt="ქართული" width="22" height="22" style="border-radius: 50%;"></span>
</magnet-element>
</summary>
<div class="dropdown opacity-0 invisible absolute top-0 max-w-full pointer-events-none"><div id="header_localization_language_form_end" class="dropdown__container relative"></div></div>
</details>
</li>
</ul>
</div><a href="/search" class="search-drawer-button flex items-center justify-center" is="magnet-link" aria-controls="SearchDrawer" aria-expanded="false" >
<span class="sr-only">ძიება</span><svg class="icon icon-search icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" d="m21 21-3.636-3.636m0 0A9 9 0 1 0 4.636 4.636a9 9 0 0 0 12.728 12.728Z"></path>
</svg></a><a href="/account/login" class="hidden lg:flex items-center justify-center" is="magnet-link" rel="nofollow">
<span class="sr-only">შესვლა</span><svg class="icon icon-account icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<rect width="10.5" height="10.5" x="6.75" y="1.75" rx="5.25"></rect>
<path stroke-linecap="round" d="M12 15.5c1.5 0 4 .333 4.5.5.5.167 3.7.8 4.5 2 1 1.5 1 2 1 4m-10-6.5c-1.5 0-4 .333-4.5.5-.5.167-3.7.8-4.5 2-1 1.5-1 2-1 4"></path>
</svg></a><a href='/cart' class='hidden relative justify-center items-center cart-drawer-button lg:flex' is='magnet-link' aria-controls='CartDrawer' aria-expanded='false' data-no-instant>
<span class='sr-only'>კალათა</span><svg class="icon icon-cart icon-lg" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><cart-count
class='absolute top-0 right-0 text-xs count rounded-full text-white flex items-center justify-center leading-none cart-count-badge'
style='background-color: #eb2d3a !important; color: #ffffff !important; width: 20px; height: 20px; min-width: 20px; min-height: 20px; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600;'
aria-label='0 ელემენტი' hidden>0</cart-count>
</a><button app-target="menu" class="menu-drawer-button flex items-center gap-2d5 justify-center" type="button" is="magnet-button" aria-controls="MenuDrawer" aria-expanded="false">
<span class="sr-only">საიტის ნავიგაცია</span><svg class="icon icon-hamburger icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" d="M3 6H21M3 12H11M3 18H16"></path>
</svg></button></div>
</div>
<span class="header__cutout cutout opacity-0 absolute left-0 top-100 w-full pointer-events-none"></span></header><span class="overlay opacity-0 z-1 fixed left-0 w-full pointer-events-none"></span>
<style> @media (max-width: 450px) {#shopify-section-sections--20083405947072__meama_header_MPCxCm .header__icons--end .cart-drawer-button {display: none !important; } #shopify-section-sections--20083405947072__meama_header_MPCxCm .header__icons--end a[href*="/account"] {display: flex !important; } #shopify-section-sections--20083405947072__meama_header_MPCxCm .search-drawer-button {display: none !important; }} #shopify-section-sections--20083405947072__meama_header_MPCxCm cart-count.count {background: red; color: #fff; border-radius: 9999px; min-width: 15px; height: 15px; padding: 0 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; line-height: 1; position: absolute; top: -5px; right: -6px; transition: 0.2s;} #shopify-section-sections--20083405947072__meama_header_MPCxCm cart-count.count[hidden] {display: none !important;} </style></div><div id="shopify-section-sections--20083405947072__1765479649348cf1f0" class="shopify-section shopify-section-group-header-group"><style>
#shopify-section-sections--20083405947072__1765479649348cf1f0 {
--section-padding-top: 0px;
--section-padding-bottom: 0px;}
</style>
<div class="section section--padding">
<div class="page-width relative"><div id="shopify-block-AZW9OcWpPeEZzNzBWQ__wisepops_email_sms_popups_bell_CzCc6i" class="shopify-block shopify-app-block">
<a tabindex="0" role="button" aria-label="Notifications" href="#" class="wisepops-shopify wisp">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewbox="0 0 24 24" stroke="currentColor" xmlns="<http://www.w3.org/2000/svg>">
<path d="M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9"></path>
</svg>
</a>
<style>
.wisepops-shopify.wisp {
height: 4.4rem;
width: 4.4rem;
display: flex;
align-items: center;
justify-content: center;
color: #000000;
}
.wisepops-shopify.wisp > svg, .wisp > .wisepops-shopify-bell {
height: 2.6rem;
width: 2.6rem;
stroke-width: 1;
}
.wisp > .wisepops-shopify-bell {
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: 100% 100%;
mask-size: 100% 100%;
display: block;
}
.wisp.wisepops-shopify .wisp_count {
top: 0 !important;
right: 0 !important;
}
/* prevent counter clipping */
.shopify-app-block[id*="shopify-block-wisepops"] {
overflow: unset !important;
}
</style>
</div>
</div>
</div>
<style> #shopify-section-sections--20083405947072__1765479649348cf1f0 {display: none;} </style></div>
<!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
<div id="shopify-section-sections--20083405979840__meama_cart_drawer_V4P6T6" class="shopify-section shopify-section-group-overlay-group">
<script src="//www.meama.ge/cdn/shop/t/123/assets/cart.js?v=94432527196190294371769936429" defer></script><cart-drawer app-target='cart-drawer' id="CartDrawer" class="cart-drawer drawer drawer--end z-35 fixed bottom-0 left-0 h-full w-full pointer-events-none"
role="dialog"
aria-modal="true"
aria-label="კალათა"
data-section-id="sections--20083405979840__meama_cart_drawer_V4P6T6"
shopify-design-mode
hidden
>
<overlay-element class="overlay fixed-modal invisible opacity-0 fixed bottom-0 left-0 w-full h-screen pointer-events-none" aria-controls="CartDrawer" aria-expanded="false"></overlay-element>
<div class="drawer__inner z-10 absolute top-0 flex flex-col w-full h-full overflow-hidden">
<gesture-element class="drawer__header flex justify-between opacity-0 invisible relative">
<ul class="drawer__tabs flex gap-10" is="tab-list">
<li>
<button class="drawer__tab relative" type="button" aria-controls="MiniCart-sections--20083405979840__meama_cart_drawer_V4P6T6" aria-expanded="true">
<span class="drawer__title heading lg:text-3xl text-2xl leading-none tracking-tight">კალათა</span>
<cart-count class="count absolute font-medium text-xs lg:text-sm leading-none" aria-label="0 ელემენტი" hidden>0</cart-count>
</button>
</li></ul>
<button class="button button--secondary button--close drawer__close hidden sm:flex items-center justify-center" type="button" is="hover-button" aria-controls="CartDrawer" aria-expanded="false" aria-label="დახურვა">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-close icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 15L15 5M5 5L15 15"></path>
</svg></span>
</button>
</gesture-element>
<div class="drawer__content opacity-0 invisible flex flex-col h-full grow shrink">
<div id="MiniCart-sections--20083405979840__meama_cart_drawer_V4P6T6" class="drawer__panel opacity-0 flex flex-col overflow-hidden" open>
<span class="sr-only">კალათა</span>
<div class="flex flex-col h-full"><div class="drawer__scrollable relative flex justify-center items-start grow shrink text-center">
<div class="drawer__empty grid gap-5 md:gap-8">
<h2 class="drawer__empty-text heading leading-none tracking-tight">თქვენი კალათა ამჟამად ცარიელია.</h2>
<div class="drawer__empty-message text-sm md:text-base leading-tight rte"></div>
<ul class="drawer__empty-collections grid gap-3"><li>
<a class="flex items-center justify-between" href="/collections/all">
<span class="flex items-center">განაგრძეთ შოპინგი</span><svg class="icon icon-arrow-right icon-sm transform" viewbox="0 0 21 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 10H18M18 10L12.1667 4.16675M18 10L12.1667 15.8334"></path>
</svg></a>
</li></ul>
</div>
</div><div class="drawer__scrollable relative flex flex-col gap-9 grow shrink hidden"><div class="free-shipping-bar grid gap-3 w-full"><span class="text-sm leading-tight">დაამატეთ კიდევ <span class="font-bold">50.00 ₾</span> პროდუქტი, რომ მიიღოთ უფასო მიწოდება!</span>
<progress-bar class="overflow-hidden rounded-full" style="--progress: 0%;"></progress-bar></div>
<cart-items class="block grow" data-section-id="sections--20083405979840__meama_cart_drawer_V4P6T6">
<ul class="horizontal-products grid" role="list"></ul>
</cart-items><gift-wrapping class="gift-wrapping grid gap-4"
data-gift-wrap-id=""
data-gift-wrapping=""
cart-items-size="0"
gift-wraps-in-cart=""
items-in-cart="0"
data-section-id="sections--20083405979840__meama_cart_drawer_V4P6T6"
>
<div class="flex gap-2 md:gap-3">
<div class="relative">
<div class="loader absolute right-0" hidden><svg class="icon icon-rotator icon-sm animate-rotator" viewbox="0 0 66 66" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<circle class="path" stroke-width="6" cx="33" cy="33" r="30"></circle>
</svg></div>
<input
type="checkbox"
id="GiftWrap-sections--20083405979840__meama_cart_drawer_V4P6T6"
name="attributes[Translation missing: ka.cart.gift_wrapping.attributes.gift_wrap]"
value="Translation missing: ka.cart.gift_wrapping.boolean.true"/>
</div>
<label for="GiftWrap-sections--20083405979840__meama_cart_drawer_V4P6T6" class="text-sm md:text-base leading-tight"> , გთხოვთ შეფუთოთ პროდუქტები ამ თანმიმდევრობით.</label>
</div></gift-wrapping>
</div>
<div class="drawer__footer grid w-full hidden"><div class="drawer__footer-bottom grid gap-6">
<div class="grid gap-4 sm:grid-6"><div class="grid grid-cols-1 gap-4">
<div class="tax-note text-sm sm:text-base rte">გადასახადების ჩათვლით. მიტანის თანხა გამოითვლება შეკვეთის დროს.</div>
<div class="totals grid place-self-end gap-1">
<span class="totals__subtotal text-sm sm:text-base">სულ</span>
<div class="totals__subtotal-value text-lg-2xl font-bold leading-none tracking-tight">0.00 ₾</div>
</div>
</div>
</div><form action="/cart" method="POST" novalidate class="drawer__footer-buttons grid grid-cols-12 gap-4"><button class="button button--primary icon-with-text col-span-6 md:col-span-7" type="submit" name="checkout" is="hover-button">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-lock icon-sm hidden sm:block" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" d="M5.83333 6.66675V5.83341C5.83333 4.74781 5.83333 4.205 5.97218 3.76463C6.26651 2.83114 6.99772 2.09993 7.93122 1.8056C8.37159 1.66675 8.91439 1.66675 10 1.66675V1.66675C11.0856 1.66675 11.6284 1.66675 12.0688 1.8056C13.0023 2.09993 13.7335 2.83114 14.0278 3.76463C14.1667 4.205 14.1667 4.74781 14.1667 5.83341V6.66675M10 11.6667V13.3334M8.33333 18.3334H11.6667C13.3741 18.3334 14.2278 18.3334 14.909 18.077C15.9871 17.6713 16.8379 16.8205 17.2436 15.7424C17.5 15.0612 17.5 14.2075 17.5 12.5001V12.5001C17.5 10.7926 17.5 9.93892 17.2436 9.25775C16.8379 8.17969 15.9871 7.32888 14.909 6.92312C14.2278 6.66675 13.3741 6.66675 11.6667 6.66675H8.33333C6.62589 6.66675 5.77218 6.66675 5.091 6.92312C4.01294 7.32888 3.16213 8.17969 2.75638 9.25775C2.5 9.93892 2.5 10.7926 2.5 12.5001V12.5001C2.5 14.2075 2.5 15.0612 2.75638 15.7424C3.16213 16.8205 4.01294 17.6713 5.091 18.077C5.77218 18.3334 6.62589 18.3334 8.33333 18.3334Z"></path>
</svg>ყიდვა</span>
</button><a href="/pages/partial-pay" class="button button--secondary button--bnp col-span-6 md:col-span-5" is="hover-link" data-no-instant>
<span class="btn-fill" data-fill></span>
<span class="btn-text">
<svg class="bnp-icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewbox="0 0 15 15" aria-hidden="true" focusable="false">
<path d="M1.875 5.625H13.125M4.375 9.375H5.625M3.875 11.875H11.125C11.8251 11.875 12.1751 11.875 12.4425 11.7387C12.6777 11.6189 12.8689 11.4277 12.9887 11.1925C13.125 10.9251 13.125 10.5751 13.125 9.875V5.125C13.125 4.42494 13.125 4.0749 12.9887 3.80751C12.8689 3.57231 12.6777 3.38108 12.4425 3.26124C12.1751 3.125 11.8251 3.125 11.125 3.125H3.875C3.17494 3.125 2.8249 3.125 2.55751 3.26124C2.32231 3.38108 2.13108 3.57231 2.01124 3.80751C1.875 4.0749 1.875 4.42493 1.875 5.125V9.875C1.875 10.5751 1.875 10.9251 2.01124 11.1925C2.13108 11.4277 2.32231 11.6189 2.55751 11.7387C2.8249 11.875 3.17493 11.875 3.875 11.875Z" />
</svg>
ნაწილ-ნაწილ
</span>
</a><button
type="button"
id="ClearCartHidden"
class="sr-only"
is="cart-clear-button"
aria-hidden="true"
tabindex="-1">
<span class="btn-fill" data-fill></span>
<span class="btn-text">კალათის გასუფთავება</span>
</button><button type="button"
class="button button--secondary col-span-full md:col-span-4 clear-cart-link"
is="hover-button"
onclick="window.clearCart(); return false;">
<span class="btn-fill" data-fill></span>
<span class="btn-text">კალათის გასუფთავება</span>
</button>
<script>
// Define clearCart function globally
if (typeof window.clearCart === 'undefined') {
window.clearCart = function() {
// Use Shopify Cart API to clear the cart
fetch('/cart/clear.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
}
})
.then(response => response.json())
.then(data => {
// Update cart count badge
const cartCounts = document.querySelectorAll('cart-count, .cart-count');
cartCounts.forEach(count => {
count.textContent = '0';
count.setAttribute('hidden', '');
});
// Hide cart items and show empty state in drawer
const cartItems = document.querySelector('.drawer__scrollable');
if (cartItems) {
cartItems.classList.add('hidden');
}
// Show empty cart message
const emptyState = document.querySelector('.drawer__empty');
if (emptyState && emptyState.parentElement) {
emptyState.parentElement.classList.remove('hidden');
}
// Update main cart page if we're on it
const mainCart = document.querySelector('.cart.is-empty');
if (!mainCart) {
const cartSection = document.querySelector('.cart');
if (cartSection) {
cartSection.classList.add('is-empty');
}
}
// Trigger cart update event
document.documentElement.dispatchEvent(new CustomEvent('cart:refresh', { bubbles: true }));
})
.catch(error => {
console.error('Error clearing cart:', error);
});
}
}
</script>
</form></div>
</div>
</div>
</div></div>
</div>
</cart-drawer><style>
.button--bnp {
border-radius: 9999px;
border-width: 1px;
border-style: solid;
border-color: #000;
background-color: #fff;
color: #000;
}
.button--bnp .btn-text {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-size: 0.85rem;
white-space: nowrap;
}
.button--bnp .bnp-icon {
width: 26px;
height: 26px;
}
.button--bnp .bnp-icon path {
stroke: #000;
}
.button--bnp:hover .bnp-icon path {
stroke: #fff;
}
/* Gray box for bundle quantity display in cart drawer */
.horizontal-product--bundle .cart-quantity--bundle {
background-color: #FAFAFA;
border-radius: 4px;
min-height: var(--sp-10);
min-width: var(--sp-14);
padding: var(--sp-2) var(--sp-3);
}
</style>
<style> #shopify-section-sections--20083405979840__meama_cart_drawer_V4P6T6 gift-wrapping {display: none !important;} #shopify-section-sections--20083405979840__meama_cart_drawer_V4P6T6 .tax-note.text-sm.sm\:text-base.rte {display: none !important;} </style></div><div id="shopify-section-sections--20083405979840__meama_search_drawer_LnfVYr" class="shopify-section shopify-section-group-overlay-group"><style>
/* Hide Shopify's built-in predictive search results */
#PredictiveSearchResults-sections--20083405979840__meama_search_drawer_LnfVYr {
display: none !important;
}
.search__results {
display: none !important;
}
/* Hide loader icon */
.icon-loader {
display: none !important;
}
</style><script src="//www.meama.ge/cdn/shop/t/123/assets/meama-predictive-search.js?v=178340881790741691231769936468" defer></script><search-drawer app-target="search-drawer" id="SearchDrawer" class="search-drawer drawer drawer--end z-35 fixed bottom-0 left-0 h-full w-full pointer-events-none"
role="dialog"
aria-modal="true"
aria-label="ძიება"
shopify-design-mode
hidden
>
<overlay-element class="overlay fixed-modal invisible opacity-0 fixed bottom-0 left-0 w-full h-screen pointer-events-none" aria-controls="SearchDrawer" aria-expanded="false"></overlay-element>
<div class="drawer__inner z-10 absolute top-0 flex flex-col w-full h-full overflow-hidden">
<gesture-element class="drawer__header flex justify-between opacity-0 invisible relative">
<span class="drawer__title heading lg:text-3xl text-2xl leading-none tracking-tight">ძიება</span>
<button class="button button--secondary button--close drawer__close hidden sm:flex items-center justify-center" type="button" is="hover-button" aria-controls="SearchDrawer" aria-expanded="false" aria-label="დახურვა">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-close icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 15L15 5M5 5L15 15"></path>
</svg></span>
</button>
</gesture-element>
<div class="drawer__content opacity-0 invisible flex flex-col h-full grow shrink">
<div class="drawer__scrollable relative flex flex-col grow shrink"><form class="search__form flex flex-col gap-8 h-full relative" action="/search" method="GET" role="search"
is="predictive-search"
data-section-id="sections--20083405979840__meama_search_drawer_LnfVYr"
data-limit="3"
>
<input type="hidden" name="options[prefix]" value="last" />
<label class="sr-only" for="SearchFormInput-sections--20083405979840__meama_search_drawer_LnfVYr">ძიება</label>
<div class="search__field field flex items-center gap-4 relative"><input
class="input search__input"
type="search"
name="q"
id="SearchFormInput-sections--20083405979840__meama_search_drawer_LnfVYr"
placeholder="ძიება ..."
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="off"/>
<button class="clear absolute flex items-center justify-center text-xs opacity-0" type="reset">
<span>გასუფთავება</span><svg class="icon icon-loader icon-sm absolute opacity-0 invisible animate-spin" viewbox="0 0 18 18" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M0.7,9.9C0.5,5.2,4.1,1.2,8.5,1c4.7-0.3,8.9,3.8,8.8,8.8"></path>
</svg></button></div>
<div id="PredictiveSearchResults-sections--20083405979840__meama_search_drawer_LnfVYr" class="search__box search__results text-left flex flex-col items-start grow gap-10" role="listbox"></div></form>
</div>
</div>
</div>
</search-drawer>
</div><div id="shopify-section-sections--20083405979840__cookie-banner" class="shopify-section shopify-section-group-overlay-group"><style>
#shopify-section-sections--20083405979840__cookie-banner {
--color-drawer-text: 23 23 23;
--color-drawer-background: 255 255 255;
--color-drawer-button-gradient: #171717;
--color-drawer-button-background: 23 23 23;
--color-drawer-button-text: 255 255 255;
--color-highlight: 255 221 191;
}
#shopify-pc__banner,
#shopify-pc__banner[style*="display: block"] {
display: none !important;
}
</style><link rel="stylesheet" href="//www.meama.ge/cdn/shop/t/123/assets/cookie-banner.css?v=143262193133466107921769936430" media="print" onload="this.media='all'">
<noscript><link href="//www.meama.ge/cdn/shop/t/123/assets/cookie-banner.css?v=143262193133466107921769936430" rel="stylesheet" type="text/css" media="all" /></noscript><script src="//www.meama.ge/cdn/shop/t/123/assets/cookie-banner.js?v=71670570353907577961769936431" defer="defer"></script>
<cookie-banner id="CookieBanner" class="x-modal cookie-modal drawer z-35 fixed bottom-0 left-0 h-full w-full pointer-events-none"
data-delay="5"
data-test-mode="false"
role="dialog"
aria-labelledby="Dialog-sections--20083405979840__cookie-banner-Heading1"
aria-modal="false"
shopify-design-mode
hidden
>
<overlay-element class="overlay fixed-modal invisible opacity-0 fixed bottom-0 left-0 w-full h-screen pointer-events-none" aria-controls="CookieBanner" aria-expanded="false"></overlay-element>
<div class="drawer__inner z-10 absolute bottom-0 left-0 flex flex-col w-full h-full overflow-hidden">
<gesture-element class="drawer__header flex justify-between opacity-0 invisible relative sr-only" tabindex="0">
<button class="button button--secondary button--close drawer__close hidden sm:flex items-center justify-center" type="button" is="hover-button" aria-controls="AgeVerifier" aria-expanded="false" aria-label="დახურვა">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-close icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 15L15 5M5 5L15 15"></path>
</svg></span>
</button>
</gesture-element>
<div class="drawer__content opacity-0 invisible">
<div class="drawer__scrollable relative w-full">
<div class="cookie-banner text-center">
<h2 id="Dialog-sections--20083405979840__cookie-banner-Heading1" class="heading leading-none tracking-none text-lg-2xl" ><split-words class="split-words js-invisible block" data-animate="fade-up-large" data-animate-delay="250">We use cookies</split-words></h2>
<div class="rte body text-base leading-normal" ><p>This site uses cookies for better user experience and analytics.</p></div>
<empty-element class="block spacing-section" style="--spacing-height-desktop: 16px;--spacing-height-mobile: 12px;" ></empty-element>
<div class="cookie__buttons" >
<div class="cookie__flex flex flex-wrap gap-4"><button type="button" name="accept" class="button button--primary icon-with-text" is="hover-button">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-accept icon-xs" viewbox="0 0 15 15" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.83301 8.08333L5.74967 11L12.1663 4"></path>
</svg>Accept</span>
</button><button type="button" name="decline" class="button button--secondary icon-with-text" is="hover-button">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-decline icon-xs" viewbox="0 0 15 15" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 11L11 4M4 4L11 11"></path>
</svg>Decline</span>
</button></div>
</div>
</div>
</div>
</div>
</div>
</cookie-banner>
</div><div id="shopify-section-sections--20083405979840__meama_mobile_dock_xahqfk" class="shopify-section shopify-section-group-overlay-group mobile-dock-section"><style>
#shopify-section-sections--20083405979840__meama_mobile_dock_xahqfk {
--section-padding-top: 12px;
--section-padding-bottom: 6px;}
</style>
<link rel="stylesheet" href="//www.meama.ge/cdn/shop/t/123/assets/mobile-dock.css?v=5910054077117460131769936433" media="print" onload="this.media='all'">
<noscript><link href="//www.meama.ge/cdn/shop/t/123/assets/mobile-dock.css?v=5910054077117460131769936433" rel="stylesheet" type="text/css" media="all" /></noscript>
<script src="//www.meama.ge/cdn/shop/t/123/assets/mobile-dock.js?v=78061402127355333081769936434" defer="defer"></script>
<mobile-dock app-target="mobile-dock" class="mobile-dock mobile-dock--6-col fixed z-25 left-0 bottom-0 w-full flex invisible section--divider section--rounded"><a app-target='shop' class="dock__item flex flex-col items-center justify-center gap-1d5 grow shrink-0 cursor-pointer" href="/collections/all-products"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none">
<path d="M9 8C9 9.65685 10.3431 11 12 11C13.6569 11 15 9.65685 15 8M3 16.8002V7.2002C3 6.08009 3 5.51962 3.21799 5.0918C3.40973 4.71547 3.71547 4.40973 4.0918 4.21799C4.51962 4 5.08009 4 6.2002 4H17.8002C18.9203 4 19.4796 4 19.9074 4.21799C20.2837 4.40973 20.5905 4.71547 20.7822 5.0918C21 5.5192 21 6.07899 21 7.19691V16.8036C21 17.9215 21 18.4805 20.7822 18.9079C20.5905 19.2842 20.2837 19.5905 19.9074 19.7822C19.48 20 18.921 20 17.8031 20H6.19691C5.07899 20 4.5192 20 4.0918 19.7822C3.71547 19.5905 3.40973 19.2842 3.21799 18.9079C3 18.4801 3 17.9203 3 16.8002Z" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg><span class="text-3xs leading-none">პროდუქტები</span>
</a>
<a app-target='offers' class="dock__item flex flex-col items-center justify-center gap-1d5 grow shrink-0 cursor-pointer" href="/collections/offers"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24" fill="currentColor"><path d="M10.0544 2.0941C11.1756 1.13856 12.8248 1.13855 13.9461 2.09411L15.2941 3.24286C15.4542 3.37935 15.6533 3.46182 15.8631 3.47856L17.6286 3.61945C19.0971 3.73663 20.2633 4.9028 20.3805 6.37131L20.5214 8.13679C20.5381 8.34654 20.6205 8.54568 20.757 8.70585L21.9058 10.0539C22.8614 11.1751 22.8614 12.8243 21.9058 13.9456L20.757 15.2935C20.6206 15.4537 20.538 15.6529 20.5213 15.8627L20.3805 17.6281C20.2633 19.0967 19.0971 20.2628 17.6286 20.3799L15.8631 20.5208C15.6533 20.5376 15.4542 20.6201 15.2941 20.7566L13.9461 21.9053C12.8248 22.8609 11.1756 22.8608 10.0543 21.9053L8.70631 20.7566C8.54615 20.6201 8.34705 20.5376 8.1373 20.5209L6.37184 20.3799C4.9033 20.2627 3.73716 19.0966 3.61997 17.6281L3.47906 15.8627C3.46232 15.6529 3.37983 15.4538 3.24336 15.2936L2.0946 13.9455C1.13905 12.8243 1.13904 11.1752 2.09458 10.0539L3.24334 8.70589C3.37983 8.54573 3.46234 8.34654 3.47907 8.13678L3.61996 6.3713C3.73714 4.90278 4.90327 3.73665 6.3718 3.61946L8.13729 3.47857C8.34705 3.46183 8.54619 3.37935 8.70636 3.24286L10.0544 2.0941ZM12.6488 3.61632C12.2751 3.29782 11.7253 3.29781 11.3516 3.61632L10.0036 4.76509C9.5231 5.17456 8.92568 5.42201 8.29637 5.47223L6.5309 5.61312C6.04139 5.65219 5.65268 6.04089 5.61362 6.53041L5.47272 8.29593C5.4225 8.92521 5.17505 9.52259 4.76559 10.0031L3.61683 11.3511C3.29832 11.7248 3.29831 12.2746 3.61683 12.6483L4.76559 13.9963C5.17506 14.4768 5.4225 15.0743 5.47275 15.7035L5.61363 17.469C5.65268 17.9585 6.04139 18.3473 6.53092 18.3863L8.29636 18.5272C8.92563 18.5774 9.5231 18.8249 10.0036 19.2344L11.3516 20.3831C11.7254 20.7016 12.2751 20.7016 12.6488 20.3831L13.9969 19.2343C14.4773 18.8249 15.0747 18.5774 15.704 18.5272L17.4695 18.3863C17.959 18.3472 18.3478 17.9585 18.3868 17.469L18.5277 15.7035C18.5779 15.0742 18.8253 14.4768 19.2349 13.9964L20.3836 12.6483C20.7022 12.2746 20.7021 11.7249 20.3836 11.3511L19.2348 10.0031C18.8253 9.52259 18.5779 8.92519 18.5277 8.2959L18.3868 6.53041C18.3478 6.0409 17.959 5.65219 17.4695 5.61312L15.704 5.47224C15.0748 5.42203 14.4773 5.17455 13.9968 4.76508L12.6488 3.61632ZM14.8284 7.75718L16.2426 9.1714L9.17154 16.2425L7.75733 14.8282L14.8284 7.75718ZM10.2322 10.232C9.64641 10.8178 8.69667 10.8178 8.11088 10.232C7.52509 9.6463 7.52509 8.69652 8.11088 8.11073C8.69667 7.52494 9.64641 7.52494 10.2322 8.11073C10.818 8.69652 10.818 9.6463 10.2322 10.232ZM13.7677 15.8889C14.3535 16.4747 15.3032 16.4747 15.889 15.8889C16.4748 15.3031 16.4748 14.3534 15.889 13.7676C15.3032 13.1818 14.3535 13.1818 13.7677 13.7676C13.1819 14.3534 13.1819 15.3031 13.7677 15.8889Z"></path></svg><span class="text-3xs leading-none">შეთავაზებები</span>
</a>
<a class="dock__item flex flex-col items-center justify-center gap-1d5 grow shrink-0 cursor-pointer" href="/search" aria-controls="SearchDrawer" aria-expanded="false"><svg class="icon icon-search icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M18.4007 17.4998L15.3707 14.4698M15.3707 14.4698C16.7279 13.1126 17.5674 11.2376 17.5674 9.1665C17.5674 5.02437 14.2095 1.6665 10.0674 1.6665C5.92525 1.6665 2.56738 5.02437 2.56738 9.1665C2.56738 13.3086 5.92525 16.6665 10.0674 16.6665C12.1385 16.6665 14.0135 15.827 15.3707 14.4698Z"/>
</svg><span class="text-3xs leading-none">ძებნა</span>
</a>
<a app-target="user"><svg class="icon icon-account icon-sm" viewbox="0 0 20 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<rect x="5.5" y="1.3335" width="9" height="9" rx="4.5"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M10 12.917C11.25 12.917 13.3333 13.1948 13.75 13.3337C14.1667 13.4725 16.8333 14.0003 17.5 15.0003C18.3333 16.2503 18.3333 16.667 18.3333 18.3337"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M10 12.917C8.75 12.917 6.66667 13.1948 6.25 13.3337C5.83333 13.4725 3.16667 14.0003 2.5 15.0003C1.66667 16.2503 1.66667 16.667 1.66667 18.3337"/>
</svg><span class="text-3xs leading-none">User Target For App</span>
</a>
<a app-target='locations' class="dock__item flex flex-col items-center justify-center gap-1d5 grow shrink-0 cursor-pointer" href="/pages/locations"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24" fill="currentColor"><path d="M12 20.8995L16.9497 15.9497C19.6834 13.2161 19.6834 8.78392 16.9497 6.05025C14.2161 3.31658 9.78392 3.31658 7.05025 6.05025C4.31658 8.78392 4.31658 13.2161 7.05025 15.9497L12 20.8995ZM12 23.7279L5.63604 17.364C2.12132 13.8492 2.12132 8.15076 5.63604 4.63604C9.15076 1.12132 14.8492 1.12132 18.364 4.63604C21.8787 8.15076 21.8787 13.8492 18.364 17.364L12 23.7279ZM12 13C13.1046 13 14 12.1046 14 11C14 9.89543 13.1046 9 12 9C10.8954 9 10 9.89543 10 11C10 12.1046 10.8954 13 12 13ZM12 15C9.79086 15 8 13.2091 8 11C8 8.79086 9.79086 7 12 7C14.2091 7 16 8.79086 16 11C16 13.2091 14.2091 15 12 15Z"></path></svg><span class="text-3xs leading-none">ლოკაციები</span>
</a>
<button
type="button"
app-target="cart"
class="dock__item flex flex-col items-center justify-center gap-1d5 grow shrink-0 cursor-pointer"
aria-controls="CartDrawer"
aria-expanded="false"
>
<span class="relative"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none">
<path d="M3 3H3.26835C3.74213 3 3.97943 3 4.17267 3.08548C4.34304 3.16084 4.48871 3.28218 4.59375 3.43604C4.71269 3.61026 4.75564 3.8429 4.84137 4.30727L7.00004 16L17.4218 16C17.875 16 18.1023 16 18.29 15.9199C18.4559 15.8492 18.5989 15.7346 18.7051 15.5889C18.8252 15.4242 18.8761 15.2037 18.9777 14.7631L18.9785 14.76L20.5477 7.95996L20.5481 7.95854C20.7023 7.29016 20.7796 6.95515 20.6947 6.69238C20.6202 6.46182 20.4635 6.26634 20.2556 6.14192C20.0184 6 19.6758 6 18.9887 6H5.5M18 21C17.4477 21 17 20.5523 17 20C17 19.4477 17.4477 19 18 19C18.5523 19 19 19.4477 19 20C19 20.5523 18.5523 21 18 21ZM8 21C7.44772 21 7 20.5523 7 20C7 19.4477 7.44772 19 8 19C8.55228 19 9 19.4477 9 20C9 20.5523 8.55228 21 8 21Z" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg><cart-count
class="count absolute text-3xs leading-none"
aria-label="0 ელემენტი"
hidden
>
0
</cart-count>
</span>
<span class="text-3xs leading-none">კალათა</span>
</button>
</mobile-dock>
<style> #shopify-section-sections--20083405979840__meama_mobile_dock_xahqfk a[app-target="user"] {display: none !important;} </style></div>
<!-- END sections: overlay-group --><div class="page-container" id="PageContainer">
<main class="main-content relative" id="MainContent" role="main">
<div id="shopify-section-template--20083405258944__meama_slideshow_3cBg3N" class="shopify-section"><style>
#shopify-section-template--20083405258944__meama_slideshow_3cBg3N {
--section-padding-top: 16px;
--section-padding-bottom: 16px;--color-background: 255 255 255;--color-foreground: 255 255 255;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;--color-button-background: 255 255 255;
--color-button-border: 255 255 255;--color-button-text: 23 23 23;--color-overlay: 23 23 23;--overlay-opacity: 0.0;}@media screen and (max-width: 767px) {
/* hide all dots after the 5th */
.slideshow-dots .flickity-page-dot:nth-child(n+6) {
display: none !important;
}
/* optional: keep layout neat */
.slideshow-dots {
justify-content: center;
}
/* prevent slideshow from stretching the screen */
#Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile {
max-height: 100vh;
overflow: hidden;
}
}
</style><div class="section section--padding"><div class="relative"><div class="md:hidden"><slideshow-element class="slideshow block" id="Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile"><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=400 400w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=600 600w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=800 800w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=1000 1000w"
width="3300"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=3300" alt="" srcset="//www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=300 300w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=400 400w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=500 500w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=600 600w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=700 700w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=800 800w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=900 900w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=1000 1000w, //www.meama.ge/cdn/shop/files/34qartulisaizi.png?v=1770119675&width=1200 1200w" width="3300" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-colored-cups-for-89-gel" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=400 400w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=600 600w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=800 800w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=1000 1000w"
width="4500"
height="5250"
><img src="//www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=4500" alt="" srcset="//www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=300 300w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=400 400w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=500 500w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=600 600w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=700 700w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=800 800w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=900 900w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=1000 1000w, //www.meama.ge/cdn/shop/files/MOBILE_BANNER_geo.jpg?v=1766492788&width=1200 1200w" width="4500" height="5250" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/meama-raffle-1" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=400 400w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=600 600w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=800 800w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=1000 1000w"
width="3712"
height="4608"
><img src="//www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=3712" alt="" srcset="//www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=300 300w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=400 400w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=500 500w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=600 600w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=700 700w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=800 800w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=900 900w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=1000 1000w, //www.meama.ge/cdn/shop/files/versatile_12_mobile_new-01.png?v=1769586082&width=1200 1200w" width="3712" height="4608" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/versatile-12-box-599" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=400 400w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=600 600w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=800 800w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=1000 1000w"
width="3712"
height="4608"
><img src="//www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=3712" alt="" srcset="//www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=300 300w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=400 400w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=500 500w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=600 600w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=700 700w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=800 800w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=900 900w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=1000 1000w, //www.meama.ge/cdn/shop/files/multicapsule_6_mobile_geo.png?v=1769541638&width=1200 1200w" width="3712" height="4608" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/multicapsule-6-box-249" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=400 400w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=600 600w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=800 800w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=1000 1000w"
width="3600"
height="4500"
><img src="//www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=3600" alt="" srcset="//www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=300 300w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=400 400w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=500 500w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=600 600w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=700 700w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=800 800w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=900 900w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=1000 1000w, //www.meama.ge/cdn/shop/files/USA_GEO_MOBILE.png?v=1769685109&width=1200 1200w" width="3600" height="4500" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-multicapsule-metal-cup-115" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=400 400w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=600 600w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=800 800w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=1000 1000w"
width="3200"
height="4000"
><img src="//www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=3200" alt="" srcset="//www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=300 300w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=400 400w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=500 500w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=600 600w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=700 700w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=800 800w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=900 900w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=1000 1000w, //www.meama.ge/cdn/shop/files/EU_GEO_MOBILE.png?v=1769686648&width=1200 1200w" width="3200" height="4000" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-eu-box-metal-cup-115" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=400 400w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=600 600w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=800 800w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=1000 1000w"
width="2160"
height="3840"
><img src="//www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=2160" alt="" srcset="//www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=300 300w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=400 400w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=500 500w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=600 600w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=700 700w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=800 800w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=900 900w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=1000 1000w, //www.meama.ge/cdn/shop/files/cappu_9x16_69e4ae74-c981-480b-b732-5ce66b5822e6.png?v=1769767394&width=1200 1200w" width="2160" height="3840" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-eu-milk-frother-159" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=400 400w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=600 600w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=800 800w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=1000 1000w"
width="4096"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=4096" alt="" srcset="//www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=300 300w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=400 400w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=500 500w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=600 600w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=700 700w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=800 800w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=900 900w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=1000 1000w, //www.meama.ge/cdn/shop/files/EU_MOBILE_GEO.png?v=1769760364&width=1200 1200w" width="4096" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/eu-machine-7-box-349" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=400 400w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=600 600w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=800 800w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=1000 1000w"
width="1856"
height="2304"
><img src="//www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=1856" alt="" srcset="//www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=300 300w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=400 400w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=500 500w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=600 600w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=700 700w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=800 800w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=900 900w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=1000 1000w, //www.meama.ge/cdn/shop/files/Geo_Mobile.png?v=1769784236&width=1200 1200w" width="1856" height="2304" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-multicapsules-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=400 400w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=600 600w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=800 800w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=1000 1000w"
width="3277"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=3277" alt="" srcset="//www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=300 300w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=400 400w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=500 500w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=600 600w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=700 700w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=800 800w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=900 900w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=1000 1000w, //www.meama.ge/cdn/shop/files/602692e536c6994a6417aad4419ac0de.png?v=1769785189&width=1200 1200w" width="3277" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-espresso-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=1000 1000w"
width="3300"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=3300" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=300 300w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=500 500w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=700 700w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=900 900w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_mob_decaf.png?v=1769848032&width=1200 1200w" width="3300" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-decaf-drinks-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=1000 1000w"
width="3277"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=3277" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=300 300w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=500 500w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=700 700w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=900 900w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_mob_kids.png?v=1770034703&width=1200 1200w" width="3277" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-kids-drinks" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=400 400w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=600 600w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=800 800w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=1000 1000w"
width="3277"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=3277" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=300 300w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=400 400w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=500 500w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=600 600w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=700 700w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=800 800w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=900 900w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_winter_mob.png?v=1770034752&width=1200 1200w" width="3277" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-winter" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=1000 1000w"
width="3305"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=3305" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=300 300w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=500 500w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=700 700w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=900 900w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_mob_imuniteti.png?v=1770034650&width=1200 1200w" width="3305" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-of-immunity-drinks" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden">
<source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=1000 1000w"
width="3277"
height="4096"
><img src="//www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=3277" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=300 300w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=400 400w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=500 500w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=600 600w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=700 700w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=800 800w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=900 900w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_mob_strong.png?v=1770022931&width=1200 1200w" width="3277" height="4096" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-meama-strong-drinks-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div></slideshow-element>
<div class="page-width absolute bottom-0 left-0 w-full pointer-events-none">
<div class="slideshow-content">
<slideshow-words class="slideshow-words grid items-center" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile"><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="1" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="2" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="3" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="4" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="5" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="6" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="7" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="8" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="9" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="10" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="11" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="12" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="13" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="14" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="15" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div></slideshow-words><div class="slideshow-dots flex items-end justify-between">
<button type="button" is="previous-button" class="pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile" aria-label="წინა"><svg class="icon icon-arrow-left-long icon-md transform" viewbox="0 0 37 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 5L3 11.9999M3 11.9999L10 18.9999M3 11.9999H33.5"></path>
</svg></button>
<slider-dots class="flickity-page-dots w-auto pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile"><button type="button" class="flickity-page-dot" data-index="1" aria-current="false">
<span class="sr-only">Გვერდის 2</span>
</button><button type="button" class="flickity-page-dot" data-index="2" aria-current="false">
<span class="sr-only">Გვერდის 3</span>
</button><button type="button" class="flickity-page-dot" data-index="3" aria-current="false">
<span class="sr-only">Გვერდის 4</span>
</button><button type="button" class="flickity-page-dot" data-index="4" aria-current="false">
<span class="sr-only">Გვერდის 5</span>
</button><button type="button" class="flickity-page-dot" data-index="5" aria-current="false">
<span class="sr-only">Გვერდის 6</span>
</button><button type="button" class="flickity-page-dot" data-index="6" aria-current="false">
<span class="sr-only">Გვერდის 7</span>
</button><button type="button" class="flickity-page-dot" data-index="7" aria-current="false">
<span class="sr-only">Გვერდის 8</span>
</button><button type="button" class="flickity-page-dot" data-index="8" aria-current="false">
<span class="sr-only">Გვერდის 9</span>
</button><button type="button" class="flickity-page-dot" data-index="9" aria-current="false">
<span class="sr-only">Გვერდის 10</span>
</button><button type="button" class="flickity-page-dot" data-index="10" aria-current="false">
<span class="sr-only">Გვერდის 11</span>
</button><button type="button" class="flickity-page-dot" data-index="11" aria-current="false">
<span class="sr-only">Გვერდის 12</span>
</button><button type="button" class="flickity-page-dot" data-index="12" aria-current="false">
<span class="sr-only">Გვერდის 13</span>
</button><button type="button" class="flickity-page-dot" data-index="13" aria-current="false">
<span class="sr-only">Გვერდის 14</span>
</button><button type="button" class="flickity-page-dot" data-index="14" aria-current="false">
<span class="sr-only">Გვერდის 15</span>
</button><button type="button" class="flickity-page-dot" data-index="15" aria-current="false">
<span class="sr-only">Გვერდის 16</span>
</button></slider-dots>
<button type="button" is="next-button" class="pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-mobile" aria-label="შემდეგი"><svg class="icon icon-arrow-right-long icon-md transform" viewbox="0 0 37 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M26.5 5L33.5 11.9999M33.5 11.9999L26.5 18.9999M33.5 11.9999H3"></path>
</svg></button>
</div></div>
</div>
</div><div class="hidden md:block"><slideshow-element class="slideshow block" id="Slider-template--20083405258944__meama_slideshow_3cBg3N-desktop"><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=2363" alt="" srcset="//www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=300 300w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=400 400w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=500 500w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=600 600w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=700 700w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=800 800w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=900 900w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=1000 1000w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=1200 1200w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=1400 1400w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=1600 1600w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=1800 1800w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=2000 2000w, //www.meama.ge/cdn/shop/files/geo_desk_1.png?v=1770120416&width=2200 2200w" width="2363" height="1319" loading="eager" fetchpriority="high" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-colored-cups-for-119-gel" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=4096" alt="" srcset="//www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=300 300w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=400 400w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=500 500w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=600 600w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=700 700w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=800 800w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=900 900w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=1000 1000w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=1200 1200w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=1400 1400w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=1600 1600w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=1800 1800w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=2000 2000w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=2200 2200w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=2400 2400w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=2600 2600w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=2800 2800w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=3000 3000w, //www.meama.ge/cdn/shop/files/desktopiqartuli.png?v=1770119646&width=3200 3200w" width="4096" height="2286" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-colored-cups-for-89-gel" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=5760" alt="" srcset="//www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=300 300w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=400 400w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=500 500w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=600 600w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=700 700w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=800 800w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=900 900w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=1000 1000w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=1200 1200w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=1400 1400w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=1600 1600w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=1800 1800w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=2000 2000w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=2200 2200w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=2400 2400w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=2600 2600w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=2800 2800w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=3000 3000w, //www.meama.ge/cdn/shop/files/WEB_BANNER.png?v=1766477218&width=3200 3200w" width="6456" height="2592" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/meama-raffle-1" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=5760" alt="" srcset="//www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=300 300w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=400 400w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=500 500w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=600 600w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=700 700w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=800 800w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=900 900w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=1000 1000w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=1200 1200w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=1400 1400w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=1600 1600w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=1800 1800w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=2000 2000w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=2200 2200w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=2400 2400w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=2600 2600w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=2800 2800w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=3000 3000w, //www.meama.ge/cdn/shop/files/versatile_12_boxes_desktop-01.png?v=1769585500&width=3200 3200w" width="5909" height="3298" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/versatile-12-box-599" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=5760" alt="" srcset="//www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=300 300w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=400 400w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=500 500w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=600 600w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=700 700w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=800 800w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=900 900w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=1000 1000w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=1200 1200w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=1400 1400w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=1600 1600w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=1800 1800w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=2000 2000w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=2200 2200w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=2400 2400w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=2600 2600w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=2800 2800w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=3000 3000w, //www.meama.ge/cdn/shop/files/multicapsule_6_geo.png?v=1769585472&width=3200 3200w" width="5945" height="3317" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/multicapsule-6-box-249" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=300 300w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=400 400w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=500 500w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=600 600w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=700 700w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=800 800w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=900 900w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=1000 1000w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=1200 1200w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=1400 1400w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=1600 1600w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=1800 1800w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=2000 2000w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=2200 2200w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=2400 2400w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=2600 2600w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=2800 2800w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=3000 3000w, //www.meama.ge/cdn/shop/files/USA_GEO_DESKTOP_d2e81445-ee4e-4c5d-b0d1-b0f0111d7305.png?v=1769685085&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-multicapsule-metal-cup-115" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=300 300w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=400 400w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=500 500w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=600 600w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=700 700w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=800 800w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=900 900w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=1000 1000w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=1200 1200w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=1400 1400w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=1600 1600w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=1800 1800w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=2000 2000w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=2200 2200w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=2400 2400w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=2600 2600w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=2800 2800w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=3000 3000w, //www.meama.ge/cdn/shop/files/EU_GEO_DESKTOP_8058b9ec-6bbf-4114-b8e5-edd4ef2fd567.png?v=1769686623&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-eu-box-metal-cup-115" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=300 300w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=400 400w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=500 500w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=600 600w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=700 700w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=800 800w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=900 900w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=1000 1000w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=1200 1200w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=1400 1400w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=1600 1600w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=1800 1800w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=2000 2000w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=2200 2200w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=2400 2400w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=2600 2600w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=2800 2800w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=3000 3000w, //www.meama.ge/cdn/shop/files/cappu_DESKTOP_8c12b8c2-219d-4015-95d0-56ec4bce9ffc.png?v=1769767393&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-eu-milk-frother-159" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=300 300w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=400 400w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=500 500w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=600 600w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=700 700w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=800 800w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=900 900w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=1000 1000w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=1200 1200w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=1400 1400w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=1600 1600w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=1800 1800w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=2000 2000w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=2200 2200w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=2400 2400w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=2600 2600w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=2800 2800w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=3000 3000w, //www.meama.ge/cdn/shop/files/EU_DESKTOP_GEO.png?v=1769760347&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/eu-machine-7-box-349" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=2752" alt="" srcset="//www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=300 300w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=400 400w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=500 500w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=600 600w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=700 700w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=800 800w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=900 900w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=1000 1000w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=1200 1200w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=1400 1400w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=1600 1600w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=1800 1800w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=2000 2000w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=2200 2200w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=2400 2400w, //www.meama.ge/cdn/shop/files/Geo_desctop.png?v=1769784239&width=2600 2600w" width="2752" height="1536" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-multicapsules-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=300 300w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=400 400w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=500 500w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=600 600w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=700 700w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=800 800w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=900 900w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=1000 1000w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=1200 1200w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=1400 1400w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=1600 1600w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=1800 1800w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=2000 2000w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=2200 2200w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=2400 2400w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=2600 2600w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=2800 2800w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=3000 3000w, //www.meama.ge/cdn/shop/files/9815b22478c16c1b51fab9f7bfe6d0d5.png?v=1769785183&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/7-espresso-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=4688" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=300 300w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=400 400w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=500 500w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=600 600w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=700 700w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=800 800w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=900 900w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=1200 1200w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=1400 1400w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=1600 1600w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=1800 1800w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=2000 2000w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=2200 2200w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=2400 2400w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=2600 2600w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=2800 2800w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=3000 3000w, //www.meama.ge/cdn/shop/files/ge_desk_decaf.png?v=1769848861&width=3200 3200w" width="4688" height="2616" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-decaf-drinks-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=300 300w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=400 400w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=500 500w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=600 600w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=700 700w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=800 800w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=900 900w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=1200 1200w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=1400 1400w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=1600 1600w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=1800 1800w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=2000 2000w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=2200 2200w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=2400 2400w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=2600 2600w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=2800 2800w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=3000 3000w, //www.meama.ge/cdn/shop/files/ge_desk_kids.png?v=1770034697&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-kids-drinks" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=300 300w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=400 400w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=500 500w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=600 600w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=700 700w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=800 800w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=900 900w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=1200 1200w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=1400 1400w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=1600 1600w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=1800 1800w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=2000 2000w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=2200 2200w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=2400 2400w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=2600 2600w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=2800 2800w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=3000 3000w, //www.meama.ge/cdn/shop/files/ge_desk_winter.png?v=1770034749&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-winter" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=4096" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=300 300w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=400 400w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=500 500w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=600 600w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=700 700w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=800 800w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=900 900w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=1200 1200w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=1400 1400w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=1600 1600w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=1800 1800w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=2000 2000w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=2200 2200w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=2400 2400w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=2600 2600w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=2800 2800w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=3000 3000w, //www.meama.ge/cdn/shop/files/ge_desk_imunuteti.png?v=1770034644&width=3200 3200w" width="4096" height="2304" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-box-of-immunity-drinks" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div><div class="banner media--650px mobile:media--400px w-full overflow-hidden" data-type="image" >
<media-element class="banner__media block w-full h-full overflow-hidden">
<animate-element data-animate="zoom-out" class="media media--height block w-full h-full relative overflow-hidden" paused>
<picture class="media media--height block w-full h-full relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=3840" alt="" srcset="//www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=300 300w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=400 400w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=500 500w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=600 600w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=700 700w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=800 800w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=900 900w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=1000 1000w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=1200 1200w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=1400 1400w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=1600 1600w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=1800 1800w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=2000 2000w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=2200 2200w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=2400 2400w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=2600 2600w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=2800 2800w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=3000 3000w, //www.meama.ge/cdn/shop/files/ge_desk_strong.png?v=1770022925&width=3200 3200w" width="3840" height="2160" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</animate-element>
</media-element>
<span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span><a href="/pages/6-meama-strong-drinks-89" class="block absolute top-0 left-0 w-full h-full" aria-hidden="true"> </a></div></slideshow-element>
<div class="page-width absolute bottom-0 left-0 w-full pointer-events-none">
<div class="slideshow-content">
<slideshow-words class="slideshow-words grid items-center" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-desktop"><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="0" aria-current="true"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="1" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="2" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="3" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="4" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="5" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="6" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="7" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="8" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="9" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="10" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="11" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="12" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="13" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="14" aria-current="false"></div><div class="slideshow-word flex flex-col md:flex-row md:items-end justify-between gap-6" data-index="15" aria-current="false"><div class="banner__box banner__box--small">
<h2 class="heading leading-none title-lg tracking-heading">
<split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">Image slide</split-words>
</h2>
</div></div></slideshow-words><div class="slideshow-dots flex items-end justify-between">
<button type="button" is="previous-button" class="hidden md:block pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-desktop" aria-label="წინა"><svg class="icon icon-arrow-left-long icon-md transform" viewbox="0 0 37 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 5L3 11.9999M3 11.9999L10 18.9999M3 11.9999H33.5"></path>
</svg></button>
<slider-dots class="flickity-page-dots w-auto pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-desktop"><button type="button" class="flickity-page-dot" data-index="0" aria-current="true">
<span class="sr-only">Გვერდის 1</span>
</button><button type="button" class="flickity-page-dot" data-index="1" aria-current="false">
<span class="sr-only">Გვერდის 2</span>
</button><button type="button" class="flickity-page-dot" data-index="2" aria-current="false">
<span class="sr-only">Გვერდის 3</span>
</button><button type="button" class="flickity-page-dot" data-index="3" aria-current="false">
<span class="sr-only">Გვერდის 4</span>
</button><button type="button" class="flickity-page-dot" data-index="4" aria-current="false">
<span class="sr-only">Გვერდის 5</span>
</button><button type="button" class="flickity-page-dot" data-index="5" aria-current="false">
<span class="sr-only">Გვერდის 6</span>
</button><button type="button" class="flickity-page-dot" data-index="6" aria-current="false">
<span class="sr-only">Გვერდის 7</span>
</button><button type="button" class="flickity-page-dot" data-index="7" aria-current="false">
<span class="sr-only">Გვერდის 8</span>
</button><button type="button" class="flickity-page-dot" data-index="8" aria-current="false">
<span class="sr-only">Გვერდის 9</span>
</button><button type="button" class="flickity-page-dot" data-index="9" aria-current="false">
<span class="sr-only">Გვერდის 10</span>
</button><button type="button" class="flickity-page-dot" data-index="10" aria-current="false">
<span class="sr-only">Გვერდის 11</span>
</button><button type="button" class="flickity-page-dot" data-index="11" aria-current="false">
<span class="sr-only">Გვერდის 12</span>
</button><button type="button" class="flickity-page-dot" data-index="12" aria-current="false">
<span class="sr-only">Გვერდის 13</span>
</button><button type="button" class="flickity-page-dot" data-index="13" aria-current="false">
<span class="sr-only">Გვერდის 14</span>
</button><button type="button" class="flickity-page-dot" data-index="14" aria-current="false">
<span class="sr-only">Გვერდის 15</span>
</button><button type="button" class="flickity-page-dot" data-index="15" aria-current="false">
<span class="sr-only">Გვერდის 16</span>
</button></slider-dots>
<button type="button" is="next-button" class="hidden md:block pointer-events-auto" aria-controls="Slider-template--20083405258944__meama_slideshow_3cBg3N-desktop" aria-label="შემდეგი"><svg class="icon icon-arrow-right-long icon-md transform" viewbox="0 0 37 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M26.5 5L33.5 11.9999M33.5 11.9999L26.5 18.9999M33.5 11.9999H3"></path>
</svg></button>
</div></div>
</div>
</div></div>
</div>
</div><div id="shopify-section-template--20083405258944__meama_home_personalization_CDM6Mj" class="shopify-section meama-home-personalization"><style>
#shopify-section-template--20083405258944__meama_home_personalization_CDM6Mj {
--section-padding-top: 40px;
--section-padding-bottom: 24px;}
#shopify-section-template--20083405258944__meama_home_personalization_CDM6Mj [data-meama-personalization-grid][aria-busy="true"] {
opacity: 0.6;
transition: opacity 150ms ease;
}
</style><div
class="section section--padding"
data-meama-home-personalization
>
<div class="page-width relative"><div class="title-wrapper leading-none gap-4 lg:gap-8 flex flex-col text-left md:items-end md:flex-row md:justify-between relative z-1">
<div class="grid gap-4">
<h2 class="heading title-md" data-meama-personalization-heading>პოპულარული</h2>
</div>
<div class="indicators hidden lg:flex gap-2d5">
<button class="button button--secondary" type="button" is="previous-button" aria-controls="MeamaPersonalizationSlider-template--20083405258944__meama_home_personalization_CDM6Mj" aria-label="წინა" disabled>
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-chevron-left icon-md transform" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M14 6L8 12L14 18"></path>
</svg></span>
</button>
<button class="button button--secondary" type="button" is="next-button" aria-controls="MeamaPersonalizationSlider-template--20083405258944__meama_home_personalization_CDM6Mj" aria-label="შემდეგი">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-chevron-right icon-md transform" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></span>
</button>
</div>
</div>
<slider-element
id="MeamaPersonalizationSlider-template--20083405258944__meama_home_personalization_CDM6Mj"
class="grid slider slider--desktop slider--tablet"
selector="[data-meama-personalization-grid]>.card"
tabindex="0"
data-meama-personalization-slider
>
<motion-list
class="product-grid card-grid card-grid--4 mobile:card-grid--1 grid"
data-meama-personalization-grid
>
<div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="1 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
12
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/brazilia-08-us" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=4096" alt="ბრაზილია 08" srcset="//www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=180 180w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=360 360w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=540 540w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=720 720w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=900 900w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=1080 1080w" width="4096" height="4096" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=3000" alt="ბრაზილია 08" srcset="//www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=180 180w, //www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=360 360w, //www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=540 540w, //www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=720 720w, //www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=900 900w, //www.meama.ge/cdn/shop/files/1_efc631ef-9156-467c-8e85-1dbaab8ba0ee.png?v=1769523613&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=3000" alt="ბრაზილია 08" srcset="//www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=180 180w, //www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=360 360w, //www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=540 540w, //www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=720 720w, //www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=900 900w, //www.meama.ge/cdn/shop/files/2_07ea6b26-adf5-49c4-86f2-3a1603908c38.png?v=1769523613&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=1500" alt="ბრაზილია 08" srcset="//www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=180 180w, //www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=360 360w, //www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=540 540w, //www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=720 720w, //www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=900 900w, //www.meama.ge/cdn/shop/files/3_f2904495-98a7-4c1d-85c3-921bc11a6328.png?v=1769523613&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=4096" alt="ბრაზილია 08" srcset="//www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=180 180w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=360 360w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=540 540w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=720 720w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=900 900w, //www.meama.ge/cdn/shop/files/08.png?v=1769523613&width=1080 1080w" width="4096" height="4096" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482436800" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555396837568" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555396837568" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482436800" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/brazilia-08-us">ბრაზილია 08</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">18.00 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">არომატის გარეშე</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">95.4 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
12
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/tyis-txili-shokoladi-us" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=4096" alt="ტყის თხილი შოკოლადით" srcset="//www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=180 180w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=360 360w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=540 540w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=720 720w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=900 900w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=1080 1080w" width="4096" height="4096" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=1500" alt="ტყის თხილი შოკოლადით" srcset="//www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=180 180w, //www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=360 360w, //www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=540 540w, //www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=720 720w, //www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=900 900w, //www.meama.ge/cdn/shop/files/1_54d38016-58d3-42e2-b133-ebf2f572538a.png?v=1769523672&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=1557" alt="ტყის თხილი შოკოლადით" srcset="//www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=180 180w, //www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=360 360w, //www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=540 540w, //www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=720 720w, //www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=900 900w, //www.meama.ge/cdn/shop/files/2_eb827b6b-9daa-4eb4-b70f-2597c1deafe7.png?v=1769523672&width=1080 1080w" width="1557" height="1500" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=1500" alt="ტყის თხილი შოკოლადით" srcset="//www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=180 180w, //www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=360 360w, //www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=540 540w, //www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=720 720w, //www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=900 900w, //www.meama.ge/cdn/shop/files/3_6499f599-74d6-4a5d-82df-456b7f480b5a.png?v=1769523672&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=4096" alt="ტყის თხილი შოკოლადით" srcset="//www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=180 180w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=360 360w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=540 540w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=720 720w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=900 900w, //www.meama.ge/cdn/shop/files/HAZEL_CHCLT.png?v=1769523672&width=1080 1080w" width="4096" height="4096" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482535104" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555397198016" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555397198016" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482535104" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/tyis-txili-shokoladi-us">ტყის თხილი შოკოლადით</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">19.80 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">4</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">5</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალო</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">ტყის თხილი, შოკოლადი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">95.6 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><script>
window.meamaOutOfStock = window.meamaOutOfStock || {};
window.meamaOutOfStock.products = window.meamaOutOfStock.products || {};
window.meamaOutOfStock.products["8073482043584"] = true;
</script><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none">
<button type="button" class="button button--secondary button--blur pointer-events-auto md:opacity-0" disabled="disabled">არ არის მარაგში</button>
</div><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="2 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
12
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/karameli-us" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=2048" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=180 180w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=360 360w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=540 540w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=720 720w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=900 900w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=3000" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=180 180w, //www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=360 360w, //www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=540 540w, //www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=720 720w, //www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=900 900w, //www.meama.ge/cdn/shop/files/1_d78a176a-60cd-41b2-9e8f-79e3b719131a.png?v=1769523080&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=3000" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=180 180w, //www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=360 360w, //www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=540 540w, //www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=720 720w, //www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=900 900w, //www.meama.ge/cdn/shop/files/2_cd32f08d-29a4-42a3-9c62-8bc617922d33.png?v=1769523080&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=1500" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=180 180w, //www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=360 360w, //www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=540 540w, //www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=720 720w, //www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=900 900w, //www.meama.ge/cdn/shop/files/3_4dc17f31-4414-4851-9130-b212e6ba16ad.png?v=1769523080&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=2048" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=180 180w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=360 360w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=540 540w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=720 720w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=900 900w, //www.meama.ge/cdn/shop/files/CARAMEL.png?v=1769523080&width=1080 1080w" width="2048" height="2048" loading="eager"></a></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/karameli-us">კარამელი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">19.80 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">4</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალო</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">კარამელი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">86.3 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="2 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/tyis-txili-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=2048" alt="ტყის თხილი" srcset="//www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=180 180w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=360 360w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=540 540w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=720 720w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=900 900w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=2250" alt="ტყის თხილი" srcset="//www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=180 180w, //www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=360 360w, //www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=540 540w, //www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=720 720w, //www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=900 900w, //www.meama.ge/cdn/shop/files/1_d8520762-fda8-4c23-a2f7-ddb3704e76c9.png?v=1769681156&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=2250" alt="ტყის თხილი" srcset="//www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=180 180w, //www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=360 360w, //www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=540 540w, //www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=720 720w, //www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=900 900w, //www.meama.ge/cdn/shop/files/3_8ac25e8a-c0b0-4502-ad83-dfa7aed3366b.png?v=1769681156&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=2250" alt="ტყის თხილი" srcset="//www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=180 180w, //www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=360 360w, //www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=540 540w, //www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=720 720w, //www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=900 900w, //www.meama.ge/cdn/shop/files/2_e7c39a46-5aae-46cc-b2a9-223b76c8060c.png?v=1769681156&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=2048" alt="ტყის თხილი" srcset="//www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=180 180w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=360 360w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=540 540w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=720 720w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=900 900w, //www.meama.ge/cdn/shop/files/hazel_euu_1.png?v=1769681156&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482698944" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555397558464" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555397558464" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482698944" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/tyis-txili-eu">ტყის თხილი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">16.50 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">8</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია, კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">ტყის თხილი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">44.9 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="1 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/karameli-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=2048" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=180 180w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=360 360w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=540 540w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=720 720w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=900 900w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=2250" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=180 180w, //www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=360 360w, //www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=540 540w, //www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=720 720w, //www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=900 900w, //www.meama.ge/cdn/shop/files/1_8a4ff0cd-efcf-4e6d-93c9-69cda7ffc1a7.png?v=1769521392&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=2250" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=180 180w, //www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=360 360w, //www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=540 540w, //www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=720 720w, //www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=900 900w, //www.meama.ge/cdn/shop/files/3_cf2fbcd9-ed54-45f9-b3ca-c47632f9e43b.png?v=1769521392&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=2250" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=180 180w, //www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=360 360w, //www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=540 540w, //www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=720 720w, //www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=900 900w, //www.meama.ge/cdn/shop/files/2_d11fbaac-229a-4c59-9349-963c0b7ffe6f.png?v=1769521392&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=2048" alt="კარამელი" srcset="//www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=180 180w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=360 360w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=540 540w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=720 720w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=900 900w, //www.meama.ge/cdn/shop/files/CARAMEL_EU.jpg?v=1769521392&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482928320" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555397820608" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555397820608" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482928320" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/karameli-eu">კარამელი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">16.50 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია, კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">კარამელი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">44.9 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
12
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/%E1%83%95%E1%83%90%E1%83%9C%E1%83%98%E1%83%9A%E1%83%98" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=4096" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=180 180w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=360 360w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=540 540w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=720 720w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=900 900w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=1080 1080w" width="4096" height="4096" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=3000" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=180 180w, //www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=360 360w, //www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=540 540w, //www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=720 720w, //www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=900 900w, //www.meama.ge/cdn/shop/files/1_94783ea1-37c7-41ae-9ff0-fabfce4625ed.png?v=1769523731&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=3000" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=180 180w, //www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=360 360w, //www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=540 540w, //www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=720 720w, //www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=900 900w, //www.meama.ge/cdn/shop/files/2_70a77581-f775-48b5-9c42-2b3dabb543a0.png?v=1769523731&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=1500" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=180 180w, //www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=360 360w, //www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=540 540w, //www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=720 720w, //www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=900 900w, //www.meama.ge/cdn/shop/files/3_674462cc-7f09-4494-8e9f-54c9f35467a4.png?v=1769523731&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=4096" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=180 180w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=360 360w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=540 540w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=720 720w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=900 900w, //www.meama.ge/cdn/shop/files/VANILLA.png?v=1769523731&width=1080 1080w" width="4096" height="4096" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482502336" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555397034176" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555397034176" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482502336" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/%E1%83%95%E1%83%90%E1%83%9C%E1%83%98%E1%83%9A%E1%83%98">ვანილი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">19.80 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">4</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალო</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">ვანილი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">86.3 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="3 მიმოხილვა">
<span role="img" aria-label="4.7 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>4.7</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/vanili" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=2048" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=180 180w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=360 360w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=540 540w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=720 720w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=900 900w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=2250" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=180 180w, //www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=360 360w, //www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=540 540w, //www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=720 720w, //www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=900 900w, //www.meama.ge/cdn/shop/files/Group_41.png?v=1769521349&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=2250" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=180 180w, //www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=360 360w, //www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=540 540w, //www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=720 720w, //www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=900 900w, //www.meama.ge/cdn/shop/files/Group_39.png?v=1769521349&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=2250" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=180 180w, //www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=360 360w, //www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=540 540w, //www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=720 720w, //www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=900 900w, //www.meama.ge/cdn/shop/files/Group_40.png?v=1769521349&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=2048" alt="ვანილი" srcset="//www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=180 180w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=360 360w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=540 540w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=720 720w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=900 900w, //www.meama.ge/cdn/shop/files/vanilla_eu.png?v=1769521349&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482993856" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555397886144" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555397886144" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482993856" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/vanili">ვანილი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">16.50 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია, კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">ვანილი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">44.9 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
12
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/gvatemala-07-us" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=4096" alt="გვატემალა 07" srcset="//www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=180 180w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=360 360w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=540 540w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=720 720w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=900 900w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=1080 1080w" width="4096" height="4096" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=3000" alt="გვატემალა 07" srcset="//www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=180 180w, //www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=360 360w, //www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=540 540w, //www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=720 720w, //www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=900 900w, //www.meama.ge/cdn/shop/files/1_3015c8e8-c24a-4237-a5ef-25e7e13ec257.png?v=1769523550&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=3000" alt="გვატემალა 07" srcset="//www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=180 180w, //www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=360 360w, //www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=540 540w, //www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=720 720w, //www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=900 900w, //www.meama.ge/cdn/shop/files/2_1e3bc57f-abfb-4476-ad73-11d80ba1d3db.png?v=1769523550&width=1080 1080w" width="3000" height="3000" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=1500" alt="გვატემალა 07" srcset="//www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=180 180w, //www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=360 360w, //www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=540 540w, //www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=720 720w, //www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=900 900w, //www.meama.ge/cdn/shop/files/3_01923cef-68f8-4426-addd-0f55471a7a6d.png?v=1769523550&width=1080 1080w" width="1500" height="1500" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=4096" alt="გვატემალა 07" srcset="//www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=180 180w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=360 360w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=540 540w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=720 720w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=900 900w, //www.meama.ge/cdn/shop/files/07_5b65adfd-886d-40f5-87f1-877a91769454.png?v=1769523550&width=1080 1080w" width="4096" height="4096" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073482404032" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555396673728" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555396673728" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073482404032" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/gvatemala-07-us">გვატემალა 07</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">18.00 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">4</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">5</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">გვატემალა</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">არომატის გარეშე</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">77.3 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="1 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/burgundi-09-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=2048" alt="ბურგუნდი 09" srcset="//www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=180 180w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=360 360w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=540 540w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=720 720w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=900 900w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=2250" alt="ბურგუნდი 09" srcset="//www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=180 180w, //www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=360 360w, //www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=540 540w, //www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=720 720w, //www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=900 900w, //www.meama.ge/cdn/shop/files/1_ccb94d31-079f-412d-8b71-53704899f37b.png?v=1769521164&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=2250" alt="ბურგუნდი 09" srcset="//www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=180 180w, //www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=360 360w, //www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=540 540w, //www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=720 720w, //www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=900 900w, //www.meama.ge/cdn/shop/files/3_3ac42f6d-c3d4-4a63-8547-e7adcd1e4fd0.png?v=1769521164&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=2250" alt="ბურგუნდი 09" srcset="//www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=180 180w, //www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=360 360w, //www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=540 540w, //www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=720 720w, //www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=900 900w, //www.meama.ge/cdn/shop/files/2_c477bc63-e150-4422-a8f2-b96645d67f64.png?v=1769521164&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=2048" alt="ბურგუნდი 09" srcset="//www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=180 180w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=360 360w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=540 540w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=720 720w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=900 900w, //www.meama.ge/cdn/shop/files/09_EU.png?v=1769521164&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073483354304" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555398246592" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555398246592" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073483354304" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/burgundi-09-eu">ბურგუნდი 09</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">15.00 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">9</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">9</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">გვატემალა, მექსიკა</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">არომატის გარეშე</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">61.6 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="3 მიმოხილვა">
<span role="img" aria-label="4.7 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>4.7</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/iasamnisferi-08-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=2048" alt="იასამნისფერი 08" srcset="//www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=180 180w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=360 360w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=540 540w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=720 720w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=900 900w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=2250" alt="იასამნისფერი 08" srcset="//www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=180 180w, //www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=360 360w, //www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=540 540w, //www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=720 720w, //www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=900 900w, //www.meama.ge/cdn/shop/files/1_879dbd1c-63d1-492f-b85e-2f3a1d168c14.png?v=1769521190&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=2250" alt="იასამნისფერი 08" srcset="//www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=180 180w, //www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=360 360w, //www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=540 540w, //www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=720 720w, //www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=900 900w, //www.meama.ge/cdn/shop/files/3_2a50b8f0-852f-494c-ad65-a11641f977d4.png?v=1769521190&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=2250" alt="იასამნისფერი 08" srcset="//www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=180 180w, //www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=360 360w, //www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=540 540w, //www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=720 720w, //www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=900 900w, //www.meama.ge/cdn/shop/files/2_c29c394b-551a-40b7-9077-c21c83722ea8.png?v=1769521190&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=2048" alt="იასამნისფერი 08" srcset="//www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=180 180w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=360 360w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=540 540w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=720 720w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=900 900w, //www.meama.ge/cdn/shop/files/08_EU.png?v=1769521190&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073483321536" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555398213824" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555398213824" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073483321536" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/iasamnisferi-08-eu">იასამნისფერი 08</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">15.00 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">8</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">მექსიკა, ბრაზილია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">არომატის გარეშე</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">55.8 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/mwvane-07-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=2048" alt="მწვანე 07" srcset="//www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=180 180w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=360 360w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=540 540w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=720 720w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=900 900w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=2250" alt="მწვანე 07" srcset="//www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=180 180w, //www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=360 360w, //www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=540 540w, //www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=720 720w, //www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=900 900w, //www.meama.ge/cdn/shop/files/1_2fe4d970-79f7-4f79-a62a-006325cc7d8f.png?v=1769521215&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=2250" alt="მწვანე 07" srcset="//www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=180 180w, //www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=360 360w, //www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=540 540w, //www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=720 720w, //www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=900 900w, //www.meama.ge/cdn/shop/files/3_618c0d18-ae22-4fb2-a035-5312e40766f9.png?v=1769521215&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=2250" alt="მწვანე 07" srcset="//www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=180 180w, //www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=360 360w, //www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=540 540w, //www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=720 720w, //www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=900 900w, //www.meama.ge/cdn/shop/files/2_2bc9b303-4c21-4f78-b64b-125b5cd0c545.png?v=1769521215&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=2048" alt="მწვანე 07" srcset="//www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=180 180w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=360 360w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=540 540w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=720 720w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=900 900w, //www.meama.ge/cdn/shop/files/07_EU.png?v=1769521215&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073483256000" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555398148288" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555398148288" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073483256000" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/mwvane-07-eu">მწვანე 07</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">15.00 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია, კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">არომატის გარეშე</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">44.9 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div><div class="card product-card product-card--standard product-card--thickness flex flex-col leading-none relative"><div class="product-card__media relative h-auto"><div class="rating product-card__rating z-2 absolute rounded-full flex items-center gap-2 md:gap-1d5 pointer-events-none" title="2 მიმოხილვა">
<span role="img" aria-label="5.0 / 5.0 ვარსკვლავიდან"><svg class="icon icon-star icon-xs" viewbox="0 0 16 16" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M8 0L9.88914 5.81283H16L11.056 9.40604L12.9452 15.2177L8 11.6245L3.05603 15.2177L4.94397 9.40484L0 5.81163H6.11086L8 0Z"></path>
</svg></span>5.0</div><div class="badges z-2 absolute grid gap-3 pointer-events-none"></div>
<link href="//www.meama.ge/cdn/shop/t/123/assets/product-card-tickets.css?v=43024053364279884501769936473" rel="stylesheet" type="text/css" media="all" />
<div
class="ticket-badge absolute z-20 flex items-center text-white font-medium rounded-full shadow-md"
style="left: 50%; transform: translateX(-50%); bottom: 10px; background-color: #2C2C2C;"
>
<!-- Left text -->
<span class="px-2">
გათამაშების
</span>
<!-- Middle white oval bubble -->
<span class="white-bubble flex items-center justify-center bg-white text-black font-bold mx-3 rounded-full px-3 py-1">
<span class="leading-none">
10
</span>
<img
src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/ticket-icon.svg"
alt="Ticket icon"
class="object-contain ml-2 w-3 h-3"
>
</span>
<!-- Right text -->
<span class="px-2">
ბილეთი
</span>
</div>
<a class="block relative media media--square media--contain" href="/products/tyis-txili-shokoladi-eu" aria-hidden="true" tabindex="-1"><template><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=2048" alt="ტყის თხილი შოკოლადი" srcset="//www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=180 180w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=360 360w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=540 540w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=720 720w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=900 900w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=1080 1080w" width="2048" height="2048" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=2250" alt="ტყის თხილი შოკოლადი" srcset="//www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=180 180w, //www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=360 360w, //www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=540 540w, //www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=720 720w, //www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=900 900w, //www.meama.ge/cdn/shop/files/1_ce81c159-a0f2-4d1b-88ef-89209af550dd.png?v=1769581423&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=2250" alt="ტყის თხილი შოკოლადი" srcset="//www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=180 180w, //www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=360 360w, //www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=540 540w, //www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=720 720w, //www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=900 900w, //www.meama.ge/cdn/shop/files/2_df2c4359-1df4-4bcd-8d43-9fb630c11ceb.png?v=1769581423&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div><div class="media media--height media--contain w-full h-full overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=2250" alt="ტყის თხილი შოკოლადი" srcset="//www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=180 180w, //www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=360 360w, //www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=540 540w, //www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=720 720w, //www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=900 900w, //www.meama.ge/cdn/shop/files/4_0a38bfb7-ec8e-40e2-aadc-fe946d7eb6e7.png?v=1769581423&width=1080 1080w" width="2250" height="2250" loading="lazy" is="lazy-image"></div></template>
<secondary-media class="product-card__carousel block absolute top-0 left-0 w-full h-full hidden md:block" selected-index="0"></secondary-media><img src="//www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=2048" alt="ტყის თხილი შოკოლადი" srcset="//www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=180 180w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=360 360w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=540 540w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=720 720w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=900 900w, //www.meama.ge/cdn/shop/files/hazel_choco_eu_12b0fae0-28b7-4800-ac62-feed2d565c9a.png?v=1769581423&width=1080 1080w" width="2048" height="2048" loading="eager"></a><div class="quick-add flex justify-end md:justify-center absolute w-full z-1 pointer-events-none"><form method="post" action="/cart/add" id="QuickAddProductForm-template--20083405258944__meama_home_personalization_CDM6Mj-8073483452608" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="id" value="45555398344896" /><button type="submit" class="button button--primary pointer-events-auto md:opacity-0" is="hover-button" data-variant-id="45555398344896" aria-label="Translation missing: ka.products.product.add_to_cart_label">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-cart icon-sm md:hidden" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M1 1h.5v0c.226 0 .339 0 .44.007a3 3 0 0 1 2.62 1.976c.034.095.065.204.127.42l.17.597m0 0 1.817 6.358c.475 1.664.713 2.496 1.198 3.114a4 4 0 0 0 1.633 1.231c.727.297 1.592.297 3.322.297h2.285c1.75 0 2.626 0 3.359-.302a4 4 0 0 0 1.64-1.253c.484-.627.715-1.472 1.175-3.161l.06-.221c.563-2.061.844-3.092.605-3.906a3 3 0 0 0-1.308-1.713C19.92 4 18.853 4 16.716 4H4.857ZM12 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"></path>
</svg><span class="hidden md:block" data-sold-out="არ არის მარაგში">კალათაში დამატება</span>
</span>
</button><input type="hidden" name="product-id" value="8073483452608" /><input type="hidden" name="section-id" value="template--20083405258944__meama_home_personalization_CDM6Mj" /></form></div></div><div class="product-card__content grow flex flex-col justify-start text-left w-full"><div class="product-card__details flex flex-col lg:flex-row items-baseline gap-2 w-full">
<p class="grow">
<a class="product-card__title reversed-link text-base-xl font-medium leading-tight" href="/products/tyis-txili-shokoladi-eu">ტყის თხილი შოკოლადი</a>
</p>
<div class="flex flex-col gap-2"><div class="price flex flex-wrap lg:flex-col lg:items-end gap-2 md:gap-1d5"
><span class="price__regular whitespace-nowrap">16.50 ₾</span></div>
</div>
</div></div><scroll-shadow class="product-card__spec block overflow-hidden">
<div class="product-card__icons flex flex-nowrap" is="icons-carousel" tabindex="0"><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=512" alt="სიმწარე" srcset="//www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/bitterness_d8226b79-efb3-4280-ab43-1fb14f6b0e85.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიმწარე<p class="text-opacity font-normal text-3xs leading-tight">6</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=512" alt="სიძლიერე" srcset="//www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/strength.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">სიძლიერე<p class="text-opacity font-normal text-3xs leading-tight">7</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=512" alt="წარმოშობა" srcset="//www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/worldwide.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">წარმოშობა<p class="text-opacity font-normal text-3xs leading-tight">ბრაზილია, კოლუმბია</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=512" alt="მოხალვის დონე" srcset="//www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/roast_8aecfbe4-90c6-40a4-8d77-ebd959520da1.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">მოხალვის დონე<p class="text-opacity font-normal text-3xs leading-tight">საშუალოდ მუქი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=512" alt="გემოს პროფილი" srcset="//www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/flavor_20a6455b-8151-4d02-9b19-7d4e08b8cb89.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">გემოს პროფილი<p class="text-opacity font-normal text-3xs leading-tight">ტყის თხილი, შოკოლადი</p></div>
</div>
</div><div class="product-card__icon shrink-0">
<div class="flex flex-col items-center md:flex-row md:items-start gap-2"><figure class="shrink-0 media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=512" alt="კოფეინი" srcset="//www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=36 36w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=48 48w, //www.meama.ge/cdn/shop/files/caffeine_42220c31-fcb6-40e4-8bc8-a6bb1641487c.png?v=1744833225&width=72 72w" width="512" height="512" loading="lazy" sizes="24px" class="w-full h-full" is="lazy-image"></figure><div class="flex flex-col items-center md:items-start gap-1 text-center md:text-left text-xs font-medium leading-none">კოფეინი<p class="text-opacity font-normal text-3xs leading-tight">44.9 მგ</p></div>
</div>
</div></div>
<template>
<slot></slot>
<s dir="ltr" style="--t: 0;--b: 0;--l: 0;--r: 0;" class="standard">
<span class="l"></span>
<span class="r"></span>
</s>
<style>
:host{display:inline-block;position:relative}:host([hidden]){display:none}
s{position:absolute;inset:0;pointer-events:none;border-radius:var(--card-shadow-radius);overflow:hidden;}
s.card{border-start-start-radius:0;border-start-end-radius:0}
s span{position:absolute;inset-block:0;width:clamp(var(--sp-12),4.73vw,var(--sp-23));opacity:0;transition:opacity var(--animation-short);}
s .l{inset-inline-start:0;opacity:var(--l);background:linear-gradient(90deg,rgb(var(--color-background)) 0%,transparent 100%);}
s .r{inset-inline-end:0;opacity:var(--r);background:linear-gradient(270deg,rgb(var(--color-background)) 0%,transparent 100%);}
s[dir=rtl] :is(.icon-chevron-left,.icon-chevron-right){transform:scaleX(-1);}
</style>
</template>
</scroll-shadow></div></motion-list>
</slider-element><script type="application/json" data-meama-home-personalization-config>{ "sectionId": "template--20083405258944__meama_home_personalization_CDM6Mj", "productLimit": 12, "bestsellersCollectionHandle": "all-products", "fallbackCollectionHandle": "all", "upsellDefaultCollectionHandle": "", "excludeHandles": "exclude", "excludeTags": "exclude", "headlines": { "cart": "", "continue": "განაგრძე შოპინგი", "category": "რეკომენდირებულია", "campaign": "", "default": "პოპულარული" }, "mappings": { "upsell": [{ "productType": "Capsule", "collectionHandle": "all-machines" }], "category": [], "campaign": [] }, "debug": false }</script>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__1762364532c5693be0" class="shopify-section"><style>
#shopify-section-template--20083405258944__1762364532c5693be0 {
--section-padding-top: 0px;
--section-padding-bottom: 0px;}
</style>
<div class="section section--padding">
<div class="page-width relative"><div id="shopify-block-AeERkZWJYTFMyYzU3M__smart_stories_smart_stories_r9Qhmx" class="shopify-block shopify-app-block"><style>
#moneyFormat{
display:none;
}
#PageContainer{
-webkit-transform: none;
}
smart-stories,
smart-story,
smart-story-media {
font-family: "Arial", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
</style>
<script type="module" src="https://d1mqdk3pxfmmxi.cloudfront.net/gBNYnl4yB6TWG6Y1.js" async></script>
<smart-stories secret="gBNYnl4yB6TWG6Y1" custom_settings='{ "": "" }'></smart-stories>
<div
class="stories-product-recommendations"
data-url="/recommendations/products.json?product_id=8073484828864&limit=10">
<span id="moneyFormat">12.34 ₾</span>
</div>
<script>
//recommended
var productRecommendationsSection = document.querySelector('.stories-product-recommendations');
async function getrecommended(){
const url = productRecommendationsSection.dataset.url;
let json = await fetch(url)
.then(response => response.json())
return json.products
}
//get collection products
async function getcollection(collection_handle){
const url = "/collections/"+collection_handle+"/products.json";
let json = await fetch(url)
.then(response => response.json())
return json.products;
}
//get collection products
async function getNewestProducts(){
const url = `/products.json?limit=10`;
let json = await fetch(url)
.then(response => response.json())
return json.products;
}
function getShopifyJson(content) {
if (content == "newest") {
return getNewestProducts();
} else if (content == "recom") {
return getrecommended();
} else {
return getcollection(content);
}
}
function getCookieSmartStories(cname) {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(';');
for(let i = 0; i <ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
function setCookieSmartStories(cname, cvalue, exdays) {
const d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
let expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function incrementCookieSmartStories(preview_secret, variant_id){
var views_array = {};
var smart_stories_cookie_object = {};
if(document.cookie.indexOf('smart_stories_view') == -1){
//Cookie not created
var smart_stories_cookie_object = {};
smart_stories_cookie_object["number_of_times_viewed"] = 1;
smart_stories_cookie_object["variant_id"] = variant_id;
views_array[preview_secret] = [smart_stories_cookie_object];
setCookieSmartStories('smart_stories_view', JSON.stringify(views_array), 1);
}else{
//Cookie is already created
var views_array_cookie = getCookieSmartStories('smart_stories_view');
views_array = JSON.parse(views_array_cookie)
if(views_array[preview_secret] == undefined){
//the preview secret is not in the array
smart_stories_cookie_object["number_of_times_viewed"] = 1;
smart_stories_cookie_object["variant_id"] = variant_id;
views_array[preview_secret] = [smart_stories_cookie_object];
}
else{
var current_preview_secret_array = views_array[preview_secret];
if(current_preview_secret_array.filter(e => e.variant_id === variant_id).length > 0){
//here preview secret and the variant is in the array
var variant_position = current_preview_secret_array.findIndex(e => e.variant_id === variant_id);
current_preview_secret_array[variant_position]["number_of_times_viewed"] = current_preview_secret_array[variant_position]["number_of_times_viewed"] + 1
}else{
//here the preview secret is in the array but not the variant id
smart_stories_cookie_object["number_of_times_viewed"] = 1;
smart_stories_cookie_object["variant_id"] = variant_id;
views_array[preview_secret].push(smart_stories_cookie_object);
}
}
setCookieSmartStories('smart_stories_view', JSON.stringify(views_array), 1);
}
}
</script>
</div>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__rich_text_AdEdY6" class="shopify-section"><style>
#shopify-section-template--20083405258944__rich_text_AdEdY6 {
--section-padding-top: 72px;
--section-padding-bottom: 100px;}
</style>
<div class="section section--padding">
<div class="page-width page-width--narrow relative"><div class="rich-text md:text-center text-center relative z-1"><div class="leading-none" >
<figure class="media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/reddot-black_22fb3c13-311c-4ba6-91de-2b090fff45f7.png?v=1745085260&width=351" alt="" srcset="//www.meama.ge/cdn/shop/files/reddot-black_22fb3c13-311c-4ba6-91de-2b090fff45f7.png?v=1745085260&width=200 200w, //www.meama.ge/cdn/shop/files/reddot-black_22fb3c13-311c-4ba6-91de-2b090fff45f7.png?v=1745085260&width=200 200w" width="351" height="43" loading="lazy" sizes="(max-width: 767px) min(200px, 100vw), min(200px, 100vw)" style="--image-max-width: 200px; --image-max-width-mobile: 200px" is="lazy-image" class="image-fit"></figure>
</div><h2 class="heading leading-none title-xl tracking-heading" ><split-words class="split-words js-invisible block" data-animate="fade-up-large" data-animate-delay="250">ვერსეტაილი</split-words></h2><div class="rte body subtext-md leading-normal" ><p>ერთი აპარატი - უსაზღვრო შესაძლებლობები</p></div></div></div>
</div>
</div><div id="shopify-section-template--20083405258944__image_with_text_overlay_T47cLj" class="shopify-section"><style>
#shopify-section-template--20083405258944__image_with_text_overlay_T47cLj {
--section-padding-top: 0px;
--section-padding-bottom: 0px;--color-foreground: 255 255 255;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;--color-highlight: 224 165 128;--color-button-background: 255 255 255;
--color-button-border: 255 255 255;--color-button-text: 23 23 23;--color-overlay: 23 23 23;--overlay-opacity: 0.0;
--ratio-percent: 40.0%;
}
@media screen and (max-width: 767px) {
#shopify-section-template--20083405258944__image_with_text_overlay_T47cLj {
--ratio-percent: 88.88888888888889%;
}
}
</style>
<div class="section section--padding">
<div class="relative">
<div class="banner media--adapt mobile:media--adapt relative">
<media-element class="banner__media block w-full h-full overflow-hidden">
<picture class="media media--height block w-full h-full relative overflow-hidden" is="animate-picture" data-animate="zoom-out"><source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/versatile_mobile-landing.png?v=1745086330&width=400 400w, //www.meama.ge/cdn/shop/files/versatile_mobile-landing.png?v=1745086330&width=600 600w, //www.meama.ge/cdn/shop/files/versatile_mobile-landing.png?v=1745086330&width=800 800w, //www.meama.ge/cdn/shop/files/versatile_mobile-landing.png?v=1745086330&width=1000 1000w"
width="900"
height="800"
><img src="//www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=2000" alt="" srcset="//www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=300 300w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=400 400w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=500 500w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=600 600w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=700 700w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=800 800w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=900 900w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=1000 1000w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=1200 1200w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=1400 1400w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=1600 1600w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=1800 1800w, //www.meama.ge/cdn/shop/files/versatile-landing-page.png?v=1745085940&width=2000 2000w" width="2000" height="800" loading="lazy" fetchpriority="low" sizes="100vw" is="lazy-image" class="banner__image"></picture>
</media-element></div>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__multicolumn_fdUrwg" class="shopify-section"><style>
#shopify-section-template--20083405258944__multicolumn_fdUrwg {
--section-padding-top: 36px;
--section-padding-bottom: 72px;--gradient-background: linear-gradient(0deg, rgba(255, 255, 255, 1) 37%, rgba(221, 221, 221, 1) 100%);--color-foreground: 0 0 0;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;}
@media screen and (min-width: 1024px) {
#shopify-section-template--20083405258944__multicolumn_fdUrwg .multicolumn {
--card-grid-gap: var(--sp-4);
}
}
</style>
<div class="section section--padding">
<div class="page-width relative"><slider-element id="Slider-template--20083405258944__multicolumn_fdUrwg" class="grid slider slider--tablet" selector=".card-grid>.card" tabindex="0">
<div class="multicolumn with-4 card-grid card-grid--4 mobile:card-grid--1 grid relative z-1"><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--portrait media--transparent relative overflow-hidden" href="/products/versatile" aria-label="60-ზე მეტი სასმელი"><img src="//www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=1200" alt="" srcset="//www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=180 180w, //www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=360 360w, //www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=540 540w, //www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=720 720w, //www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=900 900w, //www.meama.ge/cdn/shop/files/Versatile_Card_1.png?v=1745071399&width=1080 1080w" width="1200" height="1560" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 475px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">60-ზე მეტი სასმელი</p><div class="rte leading-normal"><p>ყავის, ჩაისა და სხვა ფუნქციური სასმელების მრავალფეროვანი არჩევანი.</p></div><p><a class="link inline-block icon-with-text" href="/products/versatile" is="hover-link" >
<span class="link-text">აღმოაჩინე</span><svg class="icon icon-arrow-right icon-sm transform" viewbox="0 0 21 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 10H18M18 10L12.1667 4.16675M18 10L12.1667 15.8334"></path>
</svg></a></p></div></div>
</div><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--portrait media--transparent relative overflow-hidden" href="/products/versatile" aria-label="ორი ფორმატის კაფსულა"><img src="//www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=1200" alt="" srcset="//www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=180 180w, //www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=360 360w, //www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=540 540w, //www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=720 720w, //www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=900 900w, //www.meama.ge/cdn/shop/files/Versatile_Card_2.png?v=1745071399&width=1080 1080w" width="1200" height="1560" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 475px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">ორი ფორმატის კაფსულა</p><div class="rte leading-normal"><p>ესპრესო და მულტი კაფსულის ფორმატი ერთ უნივერსალურ აპარატში.</p></div><p><a class="link inline-block icon-with-text" href="/products/versatile" is="hover-link" >
<span class="link-text">აღმოაჩინე</span><svg class="icon icon-arrow-right icon-sm transform" viewbox="0 0 21 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 10H18M18 10L12.1667 4.16675M18 10L12.1667 15.8334"></path>
</svg></a></p></div></div>
</div><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--portrait media--transparent relative overflow-hidden" href="/products/versatile" aria-label="Red Dot-ის ჯილდო"><img src="//www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=1200" alt="" srcset="//www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=180 180w, //www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=360 360w, //www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=540 540w, //www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=720 720w, //www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=900 900w, //www.meama.ge/cdn/shop/files/Versatile_Card_3.png?v=1745071400&width=1080 1080w" width="1200" height="1560" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 475px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">Red Dot-ის ჯილდო</p><div class="rte leading-normal"><p><strong>Red Dot</strong>-ის გამარჯვებული - თანამედროვე, ელეგანტური და ეკომეგობრული დიზაინი 4 ფერში.</p></div><p><a class="link inline-block icon-with-text" href="/products/versatile" is="hover-link" >
<span class="link-text">აღმოაჩინე</span><svg class="icon icon-arrow-right icon-sm transform" viewbox="0 0 21 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 10H18M18 10L12.1667 4.16675M18 10L12.1667 15.8334"></path>
</svg></a></p></div></div>
</div><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--portrait media--transparent relative overflow-hidden" href="/products/versatile" aria-label="შექმნილია საქართველოში"><img src="//www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=1200" alt="" srcset="//www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=180 180w, //www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=360 360w, //www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=540 540w, //www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=720 720w, //www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=900 900w, //www.meama.ge/cdn/shop/files/Versatile_Card_4.png?v=1745243196&width=1080 1080w" width="1200" height="1560" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 475px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">შექმნილია საქართველოში</p><div class="rte leading-normal"><p>მსოფლიო სტანდარტის ქართული ინჟინერია, დიზაინი და პროგრამული უზრუნველყოფა.</p></div><p><a class="link inline-block icon-with-text" href="/products/versatile" is="hover-link" >
<span class="link-text">აღმოაჩინე</span><svg class="icon icon-arrow-right icon-sm transform" viewbox="0 0 21 20" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 10H18M18 10L12.1667 4.16675M18 10L12.1667 15.8334"></path>
</svg></a></p></div></div>
</div></div>
</slider-element>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__image_with_text_fqxwGB" class="shopify-section"><style>
#shopify-section-template--20083405258944__image_with_text_fqxwGB {
--section-padding-top: 48px;
--section-padding-bottom: 120px;
--ratio-percent: 125.0%;
}</style>
<div class="section section--padding">
<div class="page-width relative"><div class="image-with-text lg:flex lg:gap-8 lg:flex-row overflow-hidden">
<div class="image-with-text__item grow shrink-0 relative">
<div class="image-with-text__media h-full">
<media-element class="image-with-text__image block media--adapt mobile:media--auto relative overflow-hidden">
<picture class="media media--height block w-full h-full relative overflow-hidden"><source
media="(max-width: 767px)"
srcset="//www.meama.ge/cdn/shop/files/App_Hero_5-_1.webp?v=1759432402&width=400 400w, //www.meama.ge/cdn/shop/files/App_Hero_5-_1.webp?v=1759432402&width=600 600w, //www.meama.ge/cdn/shop/files/App_Hero_5-_1.webp?v=1759432402&width=800 800w, //www.meama.ge/cdn/shop/files/App_Hero_5-_1.webp?v=1759432402&width=1000 1000w"
width="3000"
height="3750"
><img src="//www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=3000" alt="" srcset="//www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=300 300w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=400 400w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=500 500w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=600 600w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=700 700w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=800 800w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=900 900w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=1000 1000w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=1200 1200w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=1400 1400w, //www.meama.ge/cdn/shop/files/App_Hero_5.png?v=1745244235&width=1600 1600w" width="3000" height="3750" loading="lazy" sizes="(max-width: 1023px) 100vw, 74vw" is="lazy-image"></picture>
</media-element>
</div>
</div>
<div class="image-with-text__item grow shrink-0 align-self-center">
<div class="rich-text lg:text-left text-left relative z-1"><h2 class="heading leading-none title-xl tracking-heading" ><split-words class="split-words js-invisible block" data-animate="fade-up-large" data-animate-delay="250">გადმოწერე აპლიკაცია</split-words></h2><div class="rte body subtext-sm leading-normal" ><p>მარტივად შეიძინე Meama-ს პროდუქცია, მოიძიე უახლოესი Dropper ან Meama Collect და ისარგებლე ექსკლუზიური შეთავაზებებით.</p><ul><li>Dropper-ში QR კოდით ყიდვისას ისარგებლე ფასდაკლებით;</li><li>ინდივიდუალური შეთავაზებები App-ით სარგებლობისას;</li><li>Dropper-ის, Meama Collect-ისა და Meama Space-ის ლოკატორი რუკაზე;</li><li>Meama Collect-ის ბენეფიტები;</li></ul><p>მობილური აპლიკაცია ხელმისაწვდომია</p></div><div class="rte" ><div class="app-download" style="display: flex; justify-content: start; gap: 10px;">
<a href="https://apps.apple.com/ge/app/meama/id1438754087" target="_blank" style="text-decoration: none; width: auto; height: 50px; display: flex; align-items: center;">
<img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/appstore.png?v=1744573024" style="height: 52px; width: auto;" alt="App Store">
</a>
<a href="https://play.google.com/store/apps/details?id=com.capsulo.meama&pcampaignid=web_share" target="_blank" style="text-decoration: none; width: auto; height: 52px; display: flex; align-items: center;">
<img src="https://cdn.shopify.com/s/files/1/0652/1621/7280/files/googleplay.png?v=1744573024" style="height: 52px; width: auto;" alt="Google Play">
</a>
</div>
<style>
@media (max-width: 768px) {
.app-download img {
height: 42px !important;
}
.app-download {
justify-content: center !important;
}
}
</style></div></div>
</div>
</div>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w" class="shopify-section"><style>
#shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w {
--section-padding-top: 0px;
--section-padding-bottom: 0px;--color-foreground: 255 255 255;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;--color-highlight: 224 165 128;--color-button-background: 255 255 255;
--color-button-border: 255 255 255;--color-button-text: 23 23 23;--color-overlay: 23 23 23;--overlay-opacity: 0.7;}</style>
<div class="section section--padding">
<div class="relative">
<div class="video-hero banner media--700px mobile:media--600px relative"><video-media class="media deferred-media block banner__media media media--height w-full h-full relative"
style="--aspect-ratio: 1.775;" autoplay><img src="//www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1920" alt="ვიდეოს ჩატვირთვა: " srcset="//www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=300 300w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=400 400w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=500 500w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=600 600w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=700 700w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=800 800w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=900 900w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1000 1000w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1200 1200w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1400 1400w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1600 1600w, //www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000.jpg?v=1757915015&width=1800 1800w" width="1920" height="1080" loading="lazy" fetchpriority="auto" sizes="100vw" is="lazy-image"><template><video playsinline="true" muted="muted" autoplay="autoplay" loop="loop" controls="controls" preload="metadata" poster="//www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000_800x.jpg?v=1757915015"><source src="//www.meama.ge/cdn/shop/videos/c/vp/c4f9e5ad625d49d0adb73c81a3167f6a/c4f9e5ad625d49d0adb73c81a3167f6a.HD-1080p-7.2Mbps-57478587.mp4?v=0" type="video/mp4"><img src="//www.meama.ge/cdn/shop/files/preview_images/c4f9e5ad625d49d0adb73c81a3167f6a.thumbnail.0000000000_800x.jpg?v=1757915015"></video></template><button type="button" id="DeferredPoster-36537623445696" class="deferred-poster absolute top-0 left-0 w-full h-full" aria-label="ვიდეოს დაკვრა">
<span class="play-button absolute flex items-center justify-center rounded-full pointer-events-auto z-10" role="button" aria-labelledby="DeferredPoster-36537623445696"><svg class="icon icon-play icon-md" viewbox="0 0 36 36" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path d="M34 17.5006C34 18.3302 33.5707 19.0963 32.8683 19.5206L9.535 33.6629C9.164 33.8869 8.74867 34 8.33333 34C7.93667 34 7.54 33.8986 7.183 33.6936C6.45267 33.274 6 32.4915 6 31.6429V3.35817C6 2.50962 6.45267 1.72708 7.183 1.30752C7.91333 0.885606 8.814 0.899749 9.535 1.33816L32.8683 15.4805C33.5707 15.9048 34 16.6709 34 17.5006"></path>
</svg><svg class="icon icon-pause icon-md" viewbox="0 0 36 36" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-width="6" d="M9 4V32"></path>
<path stroke-linecap="round" stroke-width="6" d="M27 4V32"></path>
</svg></span>
</button></video-media><span class="banner__overlay absolute top-0 left-0 w-full h-full pointer-events-none"></span>
<div class="banner__content overflow-hidden absolute z-1 top-0 left-0 w-full h-full">
<div class="page-width w-full h-full flex md:items-end md:justify-start items-center justify-center">
<div class="banner__box banner__box--large md:text-left text-left"><h2 class="banner__title heading leading-none title-lg tracking-heading" ><split-words class="split-words block" data-animate="fade-up-large" data-animate-delay="250">მეამას საწარმო</split-words></h2><div class="rte leading-normal body subtext-md" ><p>ხარისხი, რომელიც აკმაყოფილებს საერთაშორისო სტანდარტებს</p></div><div class="leading-none" >
<figure class="media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/FSSC.png?v=1744562320&width=240" alt="" srcset="//www.meama.ge/cdn/shop/files/FSSC.png?v=1744562320&width=50 50w, //www.meama.ge/cdn/shop/files/FSSC.png?v=1744562320&width=100 100w, //www.meama.ge/cdn/shop/files/FSSC.png?v=1744562320&width=50 50w, //www.meama.ge/cdn/shop/files/FSSC.png?v=1744562320&width=100 100w" width="240" height="240" loading="lazy" sizes="(max-width: 767px) min(50px, 100vw), min(50px, 100vw)" style="--image-max-width: 50px; --image-max-width-mobile: 50px" is="lazy-image" class="image-fit"></figure>
</div><div class="leading-none" >
<figure class="media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/Organic_d1775678-ee42-4b1f-ad88-ff286db769b1.png?v=1744562321&width=240" alt="" srcset="//www.meama.ge/cdn/shop/files/Organic_d1775678-ee42-4b1f-ad88-ff286db769b1.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Organic_d1775678-ee42-4b1f-ad88-ff286db769b1.png?v=1744562321&width=100 100w, //www.meama.ge/cdn/shop/files/Organic_d1775678-ee42-4b1f-ad88-ff286db769b1.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Organic_d1775678-ee42-4b1f-ad88-ff286db769b1.png?v=1744562321&width=100 100w" width="240" height="240" loading="lazy" sizes="(max-width: 767px) min(50px, 100vw), min(50px, 100vw)" style="--image-max-width: 50px; --image-max-width-mobile: 50px" is="lazy-image" class="image-fit"></figure>
</div><div class="leading-none" >
<figure class="media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/Halal_ffca68ba-ee33-47b4-8592-fe88f359ea28.png?v=1744562321&width=240" alt="" srcset="//www.meama.ge/cdn/shop/files/Halal_ffca68ba-ee33-47b4-8592-fe88f359ea28.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Halal_ffca68ba-ee33-47b4-8592-fe88f359ea28.png?v=1744562321&width=100 100w, //www.meama.ge/cdn/shop/files/Halal_ffca68ba-ee33-47b4-8592-fe88f359ea28.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Halal_ffca68ba-ee33-47b4-8592-fe88f359ea28.png?v=1744562321&width=100 100w" width="240" height="240" loading="lazy" sizes="(max-width: 767px) min(50px, 100vw), min(50px, 100vw)" style="--image-max-width: 50px; --image-max-width-mobile: 50px" is="lazy-image" class="image-fit"></figure>
</div><div class="leading-none" >
<figure class="media media--transparent relative inline-block"><img src="//www.meama.ge/cdn/shop/files/Kosher_b1d80298-a9de-4305-adab-79e826ce8610.png?v=1744562321&width=240" alt="" srcset="//www.meama.ge/cdn/shop/files/Kosher_b1d80298-a9de-4305-adab-79e826ce8610.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Kosher_b1d80298-a9de-4305-adab-79e826ce8610.png?v=1744562321&width=100 100w, //www.meama.ge/cdn/shop/files/Kosher_b1d80298-a9de-4305-adab-79e826ce8610.png?v=1744562321&width=50 50w, //www.meama.ge/cdn/shop/files/Kosher_b1d80298-a9de-4305-adab-79e826ce8610.png?v=1744562321&width=100 100w" width="240" height="240" loading="lazy" sizes="(max-width: 767px) min(50px, 100vw), min(50px, 100vw)" style="--image-max-width: 50px; --image-max-width-mobile: 50px" is="lazy-image" class="image-fit"></figure>
</div></div>
</div>
</div></div>
</div>
</div>
<style> #shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w .rte :where(p):not(:where([class~="not-rte"] *)) {margin-block: initial; line-height: 1.3;} #shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w .banner__box div:nth-child(n + 3) {display: inline-block;} #shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w .banner__box div:nth-child(n + 4) {display: inline-block; padding-left: 20px; /* adds gap ONLY after the first */} @media (max-width: 768px) {#shopify-section-template--20083405258944__meama_video_with_text_overlay_xiPR3w .banner__box div:nth-child(n + 4) {padding-left: 5px; }} </style></div><div id="shopify-section-template--20083405258944__blog_posts_XQ6eQA" class="shopify-section"><style>
#shopify-section-template--20083405258944__blog_posts_XQ6eQA {
--section-padding-top: 72px;
--section-padding-bottom: 72px;}
</style><link rel="stylesheet" href="//www.meama.ge/cdn/shop/t/123/assets/blog.css?v=107725454374733462721769936429" media="print" onload="this.media='all'">
<noscript><link href="//www.meama.ge/cdn/shop/t/123/assets/blog.css?v=107725454374733462721769936429" rel="stylesheet" type="text/css" media="all" /></noscript><div class="section section--padding">
<div class="page-width relative"><div class="title-wrapper leading-none gap-4 lg:gap-8 flex flex-col text-left md:items-end md:flex-row md:justify-between relative z-1"><div class="grid gap-4"><h2 class="heading title-xl tracking-heading"><split-words class="split-words js-invisible block" data-animate="fade-up-large">სიახლეები</split-words></h2><div class="description rte leading-normal subtext-lg"><p>მეამას ეკოსისტემის გარშემო</p></div></div><p></p></div><slider-element id="Slider-template--20083405258944__blog_posts_XQ6eQA" class="grid slider slider--tablet" selector=".card-grid>.card" tabindex="0">
<motion-list class="blog-grid card-grid card-grid--3 mobile:card-grid--1 grid"><div class="card article-card relative flex flex-col gap-5 md:gap-8 leading-none"><div class="article-card__media relative overflow-hidden"><a href="/blogs/news/meama-wellness-line-%E1%83%AF%E1%83%90%E1%83%9C%E1%83%9B%E1%83%A0%E1%83%97%E1%83%94%E1%83%9A%E1%83%9D%E1%83%91%E1%83%98%E1%83%A1%E1%83%97%E1%83%95%E1%83%98%E1%83%A1-%E1%83%A8%E1%83%94%E1%83%A5%E1%83%9B%E1%83%9C%E1%83%98%E1%83%9A%E1%83%98-%E1%83%A7%E1%83%9D%E1%83%95%E1%83%94%E1%83%9A%E1%83%93%E1%83%A6%E1%83%98%E1%83%A3%E1%83%A0%E1%83%98-%E1%83%A9%E1%83%95%E1%83%94%E1%83%95%E1%83%90" class="article-card__link block relative media media--landscape" aria-label="Meama Wellness Line - ჯანმრთელობისთვის შექმნილი ყოველდღიური ჩვევა" tabindex="-1"><img src="//www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=2580" alt="Meama Wellness Line - ჯანმრთელობისთვის შექმნილი ყოველდღიური ჩვევა" srcset="//www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=180 180w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=360 360w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=540 540w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=720 720w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=900 900w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=1080 1080w, //www.meama.ge/cdn/shop/articles/Blog_Post_3.png?v=1745315321&width=1600 1600w" width="2580" height="1920" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="article-card__image"></a>
</div><div class="article-card__content flex flex-col gap-5 md:gap-8">
<div class="grid gap-4 md:gap-5"><p>
<a class="article-card__title heading reversed-link text-lg-2xl leading-tight tracking-tight" href="/blogs/news/meama-wellness-line-%E1%83%AF%E1%83%90%E1%83%9C%E1%83%9B%E1%83%A0%E1%83%97%E1%83%94%E1%83%9A%E1%83%9D%E1%83%91%E1%83%98%E1%83%A1%E1%83%97%E1%83%95%E1%83%98%E1%83%A1-%E1%83%A8%E1%83%94%E1%83%A5%E1%83%9B%E1%83%9C%E1%83%98%E1%83%9A%E1%83%98-%E1%83%A7%E1%83%9D%E1%83%95%E1%83%94%E1%83%9A%E1%83%93%E1%83%A6%E1%83%98%E1%83%A3%E1%83%A0%E1%83%98-%E1%83%A9%E1%83%95%E1%83%94%E1%83%95%E1%83%90">Meama Wellness Line - ჯანმრთელობისთვის შექმნილი ყოველდღიური ჩვევა</a>
</p></div>
<p>
<a class="link text-sm font-medium leading-tight" href="/blogs/news/meama-wellness-line-%E1%83%AF%E1%83%90%E1%83%9C%E1%83%9B%E1%83%A0%E1%83%97%E1%83%94%E1%83%9A%E1%83%9D%E1%83%91%E1%83%98%E1%83%A1%E1%83%97%E1%83%95%E1%83%98%E1%83%A1-%E1%83%A8%E1%83%94%E1%83%A5%E1%83%9B%E1%83%9C%E1%83%98%E1%83%9A%E1%83%98-%E1%83%A7%E1%83%9D%E1%83%95%E1%83%94%E1%83%9A%E1%83%93%E1%83%A6%E1%83%98%E1%83%A3%E1%83%A0%E1%83%98-%E1%83%A9%E1%83%95%E1%83%94%E1%83%95%E1%83%90">Წაიკითხე მეტი<span class="sr-only">Translation missing: ka.blogs.article.read_more_context</span>
</a>
</p>
</div>
</div>
<div class="card article-card relative flex flex-col gap-5 md:gap-8 leading-none"><div class="article-card__media relative overflow-hidden"><a href="/blogs/news/%E1%83%95%E1%83%94%E1%83%A0%E1%83%A1%E1%83%94%E1%83%A2%E1%83%90%E1%83%98%E1%83%9A%E1%83%98-red-dot-design-award-%E1%83%98%E1%83%A1-%E1%83%92%E1%83%90%E1%83%9B%E1%83%90%E1%83%A0%E1%83%AF%E1%83%95%E1%83%94%E1%83%91%E1%83%A3%E1%83%9A%E1%83%98%E1%83%90" class="article-card__link block relative media media--landscape" aria-label="მეამა ვერსეტაილი Red Dot Design Award 2024-ის გამარჯვებულია" tabindex="-1"><img src="//www.meama.ge/cdn/shop/articles/Blog_Post_1.png?v=1745098580&width=860" alt="მეამა ვერსეტაილი Red Dot Design Award 2024-ის გამარჯვებულია" srcset="//www.meama.ge/cdn/shop/articles/Blog_Post_1.png?v=1745098580&width=180 180w, //www.meama.ge/cdn/shop/articles/Blog_Post_1.png?v=1745098580&width=360 360w, //www.meama.ge/cdn/shop/articles/Blog_Post_1.png?v=1745098580&width=540 540w, //www.meama.ge/cdn/shop/articles/Blog_Post_1.png?v=1745098580&width=720 720w" width="860" height="640" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="article-card__image"></a>
</div><div class="article-card__content flex flex-col gap-5 md:gap-8">
<div class="grid gap-4 md:gap-5"><p>
<a class="article-card__title heading reversed-link text-lg-2xl leading-tight tracking-tight" href="/blogs/news/%E1%83%95%E1%83%94%E1%83%A0%E1%83%A1%E1%83%94%E1%83%A2%E1%83%90%E1%83%98%E1%83%9A%E1%83%98-red-dot-design-award-%E1%83%98%E1%83%A1-%E1%83%92%E1%83%90%E1%83%9B%E1%83%90%E1%83%A0%E1%83%AF%E1%83%95%E1%83%94%E1%83%91%E1%83%A3%E1%83%9A%E1%83%98%E1%83%90">მეამა ვერსეტაილი Red Dot Design Award 2024-ის გამარჯვებულია</a>
</p></div>
<p>
<a class="link text-sm font-medium leading-tight" href="/blogs/news/%E1%83%95%E1%83%94%E1%83%A0%E1%83%A1%E1%83%94%E1%83%A2%E1%83%90%E1%83%98%E1%83%9A%E1%83%98-red-dot-design-award-%E1%83%98%E1%83%A1-%E1%83%92%E1%83%90%E1%83%9B%E1%83%90%E1%83%A0%E1%83%AF%E1%83%95%E1%83%94%E1%83%91%E1%83%A3%E1%83%9A%E1%83%98%E1%83%90">Წაიკითხე მეტი<span class="sr-only">Translation missing: ka.blogs.article.read_more_context</span>
</a>
</p>
</div>
</div>
<div class="card article-card relative flex flex-col gap-5 md:gap-8 leading-none"><div class="article-card__media relative overflow-hidden"><a href="/blogs/news/meama-%E1%83%A1-%E1%83%A1%E1%83%90%E1%83%97%E1%83%90%E1%83%9D-%E1%83%9D%E1%83%A4%E1%83%98%E1%83%A1%E1%83%98-%E1%83%A0%E1%83%9D%E1%83%92%E1%83%9D%E1%83%A0%E1%83%AA-%E1%83%9B%E1%83%A1%E1%83%9D%E1%83%A4%E1%83%9A%E1%83%98%E1%83%9D-%E1%83%93%E1%83%9D%E1%83%9C%E1%83%98%E1%83%A1-%E1%83%90%E1%83%A0%E1%83%A5%E1%83%98%E1%83%A2%E1%83%94%E1%83%A5%E1%83%A2%E1%83%A3%E1%83%A0%E1%83%98%E1%83%A1-%E1%83%9B%E1%83%90%E1%83%92%E1%83%90%E1%83%9A%E1%83%98%E1%83%97%E1%83%98" class="article-card__link block relative media media--landscape" aria-label="Meama-ს ოფისი, როგორც მსოფლიო დონის არქიტექტურის მაგალითი" tabindex="-1"><img src="//www.meama.ge/cdn/shop/articles/Blog_Post_2_2bd28ff0-e6a3-4e63-ad76-0e68ea1b8da0.png?v=1745155577&width=860" alt="Meama-ს ოფისი, როგორც მსოფლიო დონის არქიტექტურის მაგალითი" srcset="//www.meama.ge/cdn/shop/articles/Blog_Post_2_2bd28ff0-e6a3-4e63-ad76-0e68ea1b8da0.png?v=1745155577&width=180 180w, //www.meama.ge/cdn/shop/articles/Blog_Post_2_2bd28ff0-e6a3-4e63-ad76-0e68ea1b8da0.png?v=1745155577&width=360 360w, //www.meama.ge/cdn/shop/articles/Blog_Post_2_2bd28ff0-e6a3-4e63-ad76-0e68ea1b8da0.png?v=1745155577&width=540 540w, //www.meama.ge/cdn/shop/articles/Blog_Post_2_2bd28ff0-e6a3-4e63-ad76-0e68ea1b8da0.png?v=1745155577&width=720 720w" width="860" height="640" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="article-card__image"></a>
</div><div class="article-card__content flex flex-col gap-5 md:gap-8">
<div class="grid gap-4 md:gap-5"><p>
<a class="article-card__title heading reversed-link text-lg-2xl leading-tight tracking-tight" href="/blogs/news/meama-%E1%83%A1-%E1%83%A1%E1%83%90%E1%83%97%E1%83%90%E1%83%9D-%E1%83%9D%E1%83%A4%E1%83%98%E1%83%A1%E1%83%98-%E1%83%A0%E1%83%9D%E1%83%92%E1%83%9D%E1%83%A0%E1%83%AA-%E1%83%9B%E1%83%A1%E1%83%9D%E1%83%A4%E1%83%9A%E1%83%98%E1%83%9D-%E1%83%93%E1%83%9D%E1%83%9C%E1%83%98%E1%83%A1-%E1%83%90%E1%83%A0%E1%83%A5%E1%83%98%E1%83%A2%E1%83%94%E1%83%A5%E1%83%A2%E1%83%A3%E1%83%A0%E1%83%98%E1%83%A1-%E1%83%9B%E1%83%90%E1%83%92%E1%83%90%E1%83%9A%E1%83%98%E1%83%97%E1%83%98">Meama-ს ოფისი, როგორც მსოფლიო დონის არქიტექტურის მაგალითი</a>
</p></div>
<p>
<a class="link text-sm font-medium leading-tight" href="/blogs/news/meama-%E1%83%A1-%E1%83%A1%E1%83%90%E1%83%97%E1%83%90%E1%83%9D-%E1%83%9D%E1%83%A4%E1%83%98%E1%83%A1%E1%83%98-%E1%83%A0%E1%83%9D%E1%83%92%E1%83%9D%E1%83%A0%E1%83%AA-%E1%83%9B%E1%83%A1%E1%83%9D%E1%83%A4%E1%83%9A%E1%83%98%E1%83%9D-%E1%83%93%E1%83%9D%E1%83%9C%E1%83%98%E1%83%A1-%E1%83%90%E1%83%A0%E1%83%A5%E1%83%98%E1%83%A2%E1%83%94%E1%83%A5%E1%83%A2%E1%83%A3%E1%83%A0%E1%83%98%E1%83%A1-%E1%83%9B%E1%83%90%E1%83%92%E1%83%90%E1%83%9A%E1%83%98%E1%83%97%E1%83%98">Წაიკითხე მეტი<span class="sr-only">Translation missing: ka.blogs.article.read_more_context</span>
</a>
</p>
</div>
</div>
</motion-list></slider-element></div>
</div>
<style> #shopify-section-template--20083405258944__blog_posts_XQ6eQA .article-card__content p .link {display: none;} </style></div><div id="shopify-section-template--20083405258944__timeline_4NmLEy" class="shopify-section"><style>
#shopify-section-template--20083405258944__timeline_4NmLEy {
--section-padding-top: 72px;
--section-padding-bottom: 72px;--color-background: 23 23 23;--color-foreground: 250 250 250;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;--section-blocks-count: 7;
}
</style>
<div class="section section--padding">
<div class="page-width relative overflow-hidden md:overflow-visible"><div class="title-wrapper leading-none gap-4 lg:gap-8 flex flex-col text-left md:items-end md:flex-row md:justify-between relative z-1"><div class="grid gap-4"><h2 class="heading title-lg tracking-heading"><split-words class="split-words js-invisible block" data-animate="fade-up-large">ჯილდოები</split-words></h2></div><div class="indicators hidden lg:flex gap-2d5">
<button class="button button--secondary" type="button" is="previous-button" aria-controls="Slider-template--20083405258944__timeline_4NmLEy" aria-label="წინა" disabled>
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-chevron-left icon-md transform" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M14 6L8 12L14 18"></path>
</svg></span>
</button>
<button class="button button--secondary" type="button" is="next-button" aria-controls="Slider-template--20083405258944__timeline_4NmLEy" aria-label="შემდეგი">
<span class="btn-fill" data-fill></span>
<span class="btn-text"><svg class="icon icon-chevron-right icon-md transform" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg" role="presentation">
<path stroke-linecap="round" stroke-linejoin="round" d="M10 6L16 12L10 18"></path>
</svg></span>
</button>
</div></div><slider-element id="Slider-template--20083405258944__timeline_4NmLEy" class="grid slider slider--desktop slider--tablet" selector=".card-grid>.card" tabindex="0">
<motion-list class="timeline card-grid grid"><div class="timeline__item card selected relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=300 300w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=400 400w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=500 500w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=600 600w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=700 700w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=800 800w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=900 900w, //www.meama.ge/cdn/shop/files/Award_2_cee40b53-4292-4955-a1e6-18138b0c98a2.png?v=1745277738&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2024</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">Red Dot Awards</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>Meama Versatile-მა გაიმარჯვა პრესტიჟულ, ყოველწლიურ კონკურსში, Red Dot Awards და დასახელდა 2024 წლის საუკეთესო პროდუქტად.</p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=300 300w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=400 400w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=500 500w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=600 600w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=700 700w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=800 800w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=900 900w, //www.meama.ge/cdn/shop/files/ssaaessa_ssaUssa_ssaossaossa_ssaassaossay.png?v=1747483088&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2023</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">FIABCI World Prix d’Excellence</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>MEAMA-ს საოფისე შენობა, FIABCI World Prix d’Excellence Awards 2023-ის გამარჯვებული კატეგორიაში “ინოვაციური საოფისე შენობა”.</p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=300 300w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=400 400w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=500 500w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=600 600w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=700 700w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=800 800w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=900 900w, //www.meama.ge/cdn/shop/files/Award_1_cf0ede2f-681e-4e5f-8542-d1f3307ed8a9.png?v=1745277738&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2022</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">FIABCI</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>მეამას სათაო ოფისი FIABCI-Georgia Prix d’Excellence Awards-ის დაჯილდოებაზე, ნომინაციაში საუკეთესო საოფისე სივრცე – ოქროს გამარჯვებულად დასახელდა.</p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=300 300w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=400 400w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=500 500w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=600 600w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=700 700w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=800 800w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=900 900w, //www.meama.ge/cdn/shop/files/Award_6.png?v=1745277738&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2022</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">Architizer A+Awards</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>“Meama Collect Beach” საერთაშორისო კონკურსის The Architizer A+Awards-ის Pop Up და დროებითი ნაგებობების ნომინაციაში გამარჯვებული გახდა.</p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=300 300w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=400 400w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=500 500w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=600 600w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=700 700w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=800 800w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=900 900w, //www.meama.ge/cdn/shop/files/Award_3_f2c652f5-e6bc-4d3a-8dee-efd232506e18.png?v=1745277738&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2021</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">A’ Design Award</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>დროფერმა “A Design Award and Competition”-ის ნომინაციაში “საოფისე და კორპორატიული სივრცისთვის შექმნილი მოწყობილობის დიზაინი" გაიმარჯვა. </p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=300 300w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=400 400w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=500 500w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=600 600w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=700 700w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=800 800w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=900 900w, //www.meama.ge/cdn/shop/files/iconic_awards.png?v=1747481748&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2020</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">Iconic Awards 2020</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>Innovative Architecture – Best of Best ჯილდო, როგორც თანამედროვე არქიტექტურისა და დიზაინის გამორჩეული ნიმუში.</p></div></div>
</div>
</div><div class="timeline__item card relative" >
<div class="flex flex-col md:grid grid-cols-2 overflow-hidden"><picture class="media media--adapt mobile:media--adapt block relative overflow-hidden"><img src="//www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=1000" alt="" srcset="//www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=300 300w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=400 400w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=500 500w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=600 600w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=700 700w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=800 800w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=900 900w, //www.meama.ge/cdn/shop/files/ssaOssayssaossao_ssaossaassaussay_ssaossaossa_ssaassaossay.png?v=1747482183&width=1000 1000w" width="1000" height="1240" loading="lazy" sizes="(max-width: 767px) 100vw, 74vw" is="lazy-image"></picture><div class="timeline__item-content flex flex-col gap-4"><p class="text-opacity text-base lg:text-lg font-bold tracking-tight">2020</p><h2 class="heading lg:text-3xl text-2xl leading-none tracking-tight"><split-words class="split-words js-invisible block" data-animate="fade-up-large">Architizer A+Awards</split-words></h2><div class="rte text-opacity text-base lg:text-lg"><p>მეამას შენობა მსოფლიო არქიტექტურულ კონკურსში გამარჯვებული გახდა, დაამარცხა ისეთი გლობალური ბრენდები, როგორიცაა Jaguar Land Rover, TikTok და Warner Music Group.</p></div></div>
</div>
</div></motion-list>
</slider-element><div class="scroll-area"><slider-dots class="timeline-dots grid gap-2d5" align-selected=".scroll-area" aria-controls="Slider-template--20083405258944__timeline_4NmLEy"><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="1" aria-current="true">
<span class="sr-only">Გვერდის 1</span>2024</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="2" aria-current="false">
<span class="sr-only">Გვერდის 2</span>2023</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="3" aria-current="false">
<span class="sr-only">Გვერდის 3</span>2022</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="4" aria-current="false">
<span class="sr-only">Გვერდის 4</span>2022</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="5" aria-current="false">
<span class="sr-only">Გვერდის 5</span>2021</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="6" aria-current="false">
<span class="sr-only">Გვერდის 6</span>2020</button><button type="button" class="heading text-lg text-left flex items-center gap-2d5" data-index="7" aria-current="false">
<span class="sr-only">Გვერდის 7</span>2020</button></slider-dots></div></div>
</div>
<style> #shopify-section-template--20083405258944__timeline_4NmLEy .indicators button:hover {color: #171717;} @media (max-width: 768px) {#shopify-section-template--20083405258944__timeline_4NmLEy .heading {font-size: 36px; /* For mobile */ }} </style></div><div id="shopify-section-template--20083405258944__multicolumn_FA78Uk" class="shopify-section"><style>
#shopify-section-template--20083405258944__multicolumn_FA78Uk {
--section-padding-top: 72px;
--section-padding-bottom: 72px;}
@media screen and (min-width: 1024px) {
#shopify-section-template--20083405258944__multicolumn_FA78Uk .multicolumn {
--card-grid-gap: clamp(40px, 3.5vw, 60px);
}
}
</style>
<div class="section section--padding">
<div class="page-width relative"><slider-element id="Slider-template--20083405258944__multicolumn_FA78Uk" class="grid slider slider--tablet" selector=".card-grid>.card" tabindex="0">
<div class="multicolumn with-3 card-grid card-grid--3 mobile:card-grid--1 grid relative z-1"><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--square media--transparent relative overflow-hidden" role="link" aria-disabled="true" aria-label="კვლევისა და განვითარების გუნდი"><img src="//www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=2964" alt="" srcset="//www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=180 180w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=360 360w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=540 540w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=720 720w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=900 900w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=1080 1080w, //www.meama.ge/cdn/shop/files/DSC_7344.jpg?v=1751462269&width=1600 1600w" width="2964" height="3712" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">კვლევისა და განვითარების გუნდი</p><div class="rte leading-normal"><p>ჩვენი გუნდი დეტალურად იკვლევს მომხმარებელთა საჭიროებებს და იყენებს AI ტექნოლოგიას ინოვაციური პროდუქტების შექმნაში.</p></div></div></div>
</div><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--square media--transparent relative overflow-hidden" role="link" aria-disabled="true" aria-label="მექანიკური და ელექტრო ინჟინერია"><img src="//www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=2944" alt="" srcset="//www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=180 180w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=360 360w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=540 540w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=720 720w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=900 900w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=1080 1080w, //www.meama.ge/cdn/shop/files/Copy_of_DSCF0266.jpg?v=1751462255&width=1600 1600w" width="2944" height="4416" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">მექანიკური და ელექტრო ინჟინერია</p><div class="rte leading-normal"><p>ადგილობრივ ბაზარზე მეამამ წინ წამოწია და ახალგაზრდებში პოპულარული გახადა ისეთი პროფესიები, როგორებიცაა: ყავის ტექნოლოგია, ჩაშენებული სისტემების ინჟინერია, მექანიკისა და ელექტრო ინჟინერია.</p></div></div></div>
</div><div class="multicolumn-card card flex gap-5 w-full flex-col items-start xl:flex-row md:text-left text-left" >
<div class="grid gap-4 lg:gap-6 w-full"><a class="block media media--square media--transparent relative overflow-hidden" role="link" aria-disabled="true" aria-label="Digital Settings - სრული პროგრამული მხარდაჭერა"><img src="//www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=2000" alt="" srcset="//www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=180 180w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=360 360w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=540 540w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=720 720w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=900 900w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=1080 1080w, //www.meama.ge/cdn/shop/files/499905637_122124925874727618_1536825241698386330_n.jpg?v=1751350794&width=1600 1600w" width="2000" height="2000" loading="lazy" sizes="(max-width: 639px) 100vw, (max-width: 767px) 74vw, 633px" is="lazy-image" class="inline-block"></a><div class="multicolumn-card__info grid gap-4 lg:gap-6"><p class="heading text-lg-2xl leading-tight tracking-tight">Digital Settings - სრული პროგრამული მხარდაჭერა</p><div class="rte leading-normal"><p>Digital Settings უზრუნველყოფს მეამას სრულ პროგრამულ ეკოსისტემას — Shopify, Droppers, ინტეგრაციები, AI გადაწყვეტილებები და პროცესების ავტომატიზაცია.</p></div></div></div>
</div></div>
</slider-element>
</div>
</div>
</div><div id="shopify-section-template--20083405258944__logo_list_pMawzz" class="shopify-section"><style>
#shopify-section-template--20083405258944__logo_list_pMawzz {
--section-padding-top: 72px;
--section-padding-bottom: 72px;--section-grid-gap: 70px;
}
</style>
<div class="section section--padding">
<div class="relative"><div class="text-center md:items-center overflow-hidden"><logo-list class="logo-list logo-list--left flex items-center" data-speed="7" data-direction="left"><div class="logo-bar inline-flex flex-wrap items-center justify-center flex-nowrap"><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Marriot.png?v=1745320295&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Marriot.png?v=1745320295&width=446 446w, //www.meama.ge/cdn/shop/files/Marriot.png?v=1745320295&width=534 534w, //www.meama.ge/cdn/shop/files/Marriot.png?v=1745320295&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Mercedes-benz.png?v=1745320399&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Mercedes-benz.png?v=1745320399&width=446 446w, //www.meama.ge/cdn/shop/files/Mercedes-benz.png?v=1745320399&width=534 534w, //www.meama.ge/cdn/shop/files/Mercedes-benz.png?v=1745320399&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/SOHO.png?v=1745320447&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/SOHO.png?v=1745320447&width=446 446w, //www.meama.ge/cdn/shop/files/SOHO.png?v=1745320447&width=534 534w, //www.meama.ge/cdn/shop/files/SOHO.png?v=1745320447&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/TBC_Bank.png?v=1745320474&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/TBC_Bank.png?v=1745320474&width=446 446w, //www.meama.ge/cdn/shop/files/TBC_Bank.png?v=1745320474&width=534 534w, //www.meama.ge/cdn/shop/files/TBC_Bank.png?v=1745320474&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/axali_Tesla.png?v=1745320495&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/axali_Tesla.png?v=1745320495&width=446 446w, //www.meama.ge/cdn/shop/files/axali_Tesla.png?v=1745320495&width=534 534w, //www.meama.ge/cdn/shop/files/axali_Tesla.png?v=1745320495&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Vapiano_c2ee1c66-0a32-436a-a6b9-fafb003ebb08.png?v=1745320582&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Vapiano_c2ee1c66-0a32-436a-a6b9-fafb003ebb08.png?v=1745320582&width=446 446w, //www.meama.ge/cdn/shop/files/Vapiano_c2ee1c66-0a32-436a-a6b9-fafb003ebb08.png?v=1745320582&width=534 534w, //www.meama.ge/cdn/shop/files/Vapiano_c2ee1c66-0a32-436a-a6b9-fafb003ebb08.png?v=1745320582&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/WeWork.png?v=1745320618&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/WeWork.png?v=1745320618&width=446 446w, //www.meama.ge/cdn/shop/files/WeWork.png?v=1745320618&width=534 534w, //www.meama.ge/cdn/shop/files/WeWork.png?v=1745320618&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/8000_Vintages.png?v=1745319451&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/8000_Vintages.png?v=1745319451&width=446 446w, //www.meama.ge/cdn/shop/files/8000_Vintages.png?v=1745319451&width=534 534w, //www.meama.ge/cdn/shop/files/8000_Vintages.png?v=1745319451&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Bank_of_Georgia.png?v=1745319469&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Bank_of_Georgia.png?v=1745319469&width=446 446w, //www.meama.ge/cdn/shop/files/Bank_of_Georgia.png?v=1745319469&width=534 534w, //www.meama.ge/cdn/shop/files/Bank_of_Georgia.png?v=1745319469&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Brabus.png?v=1745319492&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Brabus.png?v=1745319492&width=446 446w, //www.meama.ge/cdn/shop/files/Brabus.png?v=1745319492&width=534 534w, //www.meama.ge/cdn/shop/files/Brabus.png?v=1745319492&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/BYD.png?v=1745319515&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/BYD.png?v=1745319515&width=446 446w, //www.meama.ge/cdn/shop/files/BYD.png?v=1745319515&width=534 534w, //www.meama.ge/cdn/shop/files/BYD.png?v=1745319515&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Carrefour.png?v=1745319588&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Carrefour.png?v=1745319588&width=446 446w, //www.meama.ge/cdn/shop/files/Carrefour.png?v=1745319588&width=534 534w, //www.meama.ge/cdn/shop/files/Carrefour.png?v=1745319588&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/China_Club.png?v=1745319606&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/China_Club.png?v=1745319606&width=446 446w, //www.meama.ge/cdn/shop/files/China_Club.png?v=1745319606&width=534 534w, //www.meama.ge/cdn/shop/files/China_Club.png?v=1745319606&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/BET_25_LOGO_1_1363294c-b6f0-4234-865e-2972ede6dfbb.svg?v=1740057766&width=97" alt="" srcset="//www.meama.ge/cdn/shop/files/BET_25_LOGO_1_1363294c-b6f0-4234-865e-2972ede6dfbb.svg?v=1740057766&width=97 97w, //www.meama.ge/cdn/shop/files/BET_25_LOGO_1_1363294c-b6f0-4234-865e-2972ede6dfbb.svg?v=1740057766&width=97 97w, //www.meama.ge/cdn/shop/files/BET_25_LOGO_1_1363294c-b6f0-4234-865e-2972ede6dfbb.svg?v=1740057766&width=97 97w" width="97" height="61" loading="lazy" sizes="127px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Majorel.png?v=1745319704&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Majorel.png?v=1745319704&width=446 446w, //www.meama.ge/cdn/shop/files/Majorel.png?v=1745319704&width=534 534w, //www.meama.ge/cdn/shop/files/Majorel.png?v=1745319704&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Design_Offices.png?v=1745319741&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Design_Offices.png?v=1745319741&width=446 446w, //www.meama.ge/cdn/shop/files/Design_Offices.png?v=1745319741&width=534 534w, //www.meama.ge/cdn/shop/files/Design_Offices.png?v=1745319741&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Karcher.png?v=1745319824&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Karcher.png?v=1745319824&width=446 446w, //www.meama.ge/cdn/shop/files/Karcher.png?v=1745319824&width=534 534w, //www.meama.ge/cdn/shop/files/Karcher.png?v=1745319824&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div><div class="logo__media media media--transparent relative overflow-hidden shrink-0" style="--image-height: 80px;" ><img src="//www.meama.ge/cdn/shop/files/Lopota.png?v=1745320211&width=534" alt="" srcset="//www.meama.ge/cdn/shop/files/Lopota.png?v=1745320211&width=446 446w, //www.meama.ge/cdn/shop/files/Lopota.png?v=1745320211&width=534 534w, //www.meama.ge/cdn/shop/files/Lopota.png?v=1745320211&width=534 534w" width="534" height="144" loading="lazy" sizes="297px" is="lazy-image"></div></div></logo-list></div></div>
</div>
</div>
</main>
<footer class="footer-group block w-full" is="footer-group"><!-- BEGIN sections: meama-footer-group -->
<div id="shopify-section-sections--20083410272448__meama_footer_G44RF3" class="shopify-section shopify-section-group-meama-footer-group">
<style>
#shopify-section-sections--20083410272448__meama_footer_G44RF3 {
--section-padding-top: 72px;
--section-padding-bottom: 72px;--color-background: 31 31 31;--color-foreground: 255 255 255;
--color-border: var(--color-foreground)/ 0.1;
--color-border-dark: var(--color-foreground)/ 0.4;
--color-border-light: var(--color-foreground)/ 0.06;--color-button-background: 255 255 255;
--color-button-border: 255 255 255;--color-button-text: 0 0 0;}
@media (max-width: 767px) {
.footer__socials-row {
flex-direction: column;
align-items: flex-start;
gap: var(--sp-3, 12px);
}
.footer__socials-row .footer__social-text {
margin-top: 0.25rem;
}
}
</style>
<style>
@media (max-width: 767px) {
.footer__socials,
.footer__socials-row {
flex-direction: column;
align-items: flex-start;
}
.footer__socials ul,
.footer__socials-row ul {
margin-bottom: 0.5rem;
}
}
</style><div app-target="footer-group" class="section section--padding" is="footer-parallax">
<footer class="footer footer--inverted page-width relative grid"><div class="footer__left flex flex-col md:flex-row gap-10"><div class="footer__accordions flex flex-wrap flex-col md:flex-row md:grow md:gap-12"><details class="footer__item--link_list_7tTFHF details active" is="footer-details" >
<summary class="details__summary flex items-center justify-between gap-2 cursor-pointer">
<span class="heading text-base-2xl font-medium lg:font-heading">პროდუქტები</span>
<svg class="icon icon-chevron-up icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 15L12 9L18 15"></path>
</svg>
</summary><div class="details__content">
<ul class="flex flex-col gap-3"><li class="inline-flex">
<a href="/collections/machines" class="block reversed-link text-sm-lg leading-tight">აპარატები</a>
</li><li class="inline-flex">
<a href="/collections/capsules" class="block reversed-link text-sm-lg leading-tight">კაფსულები</a>
</li><li class="inline-flex">
<a href="/collections/meama-accessories" class="block reversed-link text-sm-lg leading-tight">აქსესუარები</a>
</li><li class="inline-flex">
<a href="/collections/classic-coffee" class="block reversed-link text-sm-lg leading-tight">კლასიკური ყავა</a>
</li><li class="inline-flex">
<a href="/collections/offers" class="block reversed-link text-sm-lg leading-tight">შეთავაზებები</a>
</li><li class="inline-flex">
<a href="/pages/meama-raffle-1" class="block reversed-link text-sm-lg leading-tight">გათამაშება</a>
</li></ul>
</div>
<style>
@media (min-width: 1280px) {
.footer__item--link_list_7tTFHF { width: calc(50% - var(--sp-12)); }
}
</style></details><details class="footer__item--link_list_yHG4yF details active" is="footer-details" >
<summary class="details__summary flex items-center justify-between gap-2 cursor-pointer">
<span class="heading text-base-2xl font-medium lg:font-heading">მომხმარებელი</span>
<svg class="icon icon-chevron-up icon-md" viewbox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 15L12 9L18 15"></path>
</svg>
</summary><div class="details__content">
<ul class="flex flex-col gap-3"><li class="inline-flex">
<a href="/pages/miwodeba" class="block reversed-link text-sm-lg leading-tight">მიწოდება</a>
</li><li class="inline-flex">
<a href="/pages/faq" class="block reversed-link text-sm-lg leading-tight">ხ.დ.კ</a>
</li><li class="inline-flex">
<a href="/pages/gauqmeba-newsletteris" class="block reversed-link text-sm-lg leading-tight">სმს & მეილი</a>
</li><li class="inline-flex">
<a href="/pages/sagarantio-pirobebi" class="block reversed-link text-sm-lg leading-tight">საგარანტიო პირობები</a>
</li><li class="inline-flex">
<a href="/policies/privacy-policy" class="block reversed-link text-sm-lg leading-tight">კონფიდენციალურობა</a>
</li><li class="inline-flex">
<a href="/pages/wesebi-da-pirobebi" class="block reversed-link text-sm-lg leading-tight">წესები და პირობები</a>
</li><li class="inline-flex">
<a href="/pages/contact" class="block reversed-link text-sm-lg leading-tight">კონტაქტი</a>
</li><li class="inline-flex">
<a href="https://www.meamanext.io/" class="block reversed-link text-sm-lg leading-tight">კარიერა</a>
</li><li class="inline-flex">
<a href="https://www.meama.ge/pages/meama-collect-franchise" class="block reversed-link text-sm-lg leading-tight">გახსენი შენი MEAMA Collect</a>
</li><li class="inline-flex">
<a href="https://business.meama.ge/" class="block reversed-link text-sm-lg leading-tight">MEAMA ბიზნესი</a>
</li></ul>
</div>
<style>
@media (min-width: 1280px) {
.footer__item--link_list_yHG4yF { width: calc(50% - var(--sp-12)); }
}
</style></details></div>
</div><div class="footer__right grid gap-10"><div class="footer__newsletter grid gap-6"><p class="footer__logo leading-none">
<a href="/">
<span class="sr-only">MEAMA</span><img src="//www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=2308" alt="" srcset="//www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=244 244w, //www.meama.ge/cdn/shop/files/meama_logo_text_white_1.svg?v=1761949521&width=488 488w" width="2308" height="378" loading="eager" sizes="244.23280423280423px" style="--image-width: 244.23280423280423px; --image-height: 40px;" is="lazy-image"></a>
</p><div class="rte text-sm leading-tight"><h6>მეამა ცვლის სასმლის დაგემოვნების საუკუნოვან ტრადიციებს და მომხმარებელს სთავაზობს ახალ, ინოვაციურ მიდგომებს.</h6></div></div><div class="footer__socials flex items-center gap-7 flex-wrap justify-start md:justify-end xl:justify-start"><ul class="flex flex-wrap items-center gap-7"><li><a href="https://www.facebook.com/MEAMAGeorgia" class="social_platform block relative" is="magnet-link" title="">
<svg class="icon icon-facebook icon-lg" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M9.03153 23L9 13H5V9H9V6.5C9 2.7886 11.2983 1 14.6091 1C16.1951 1 17.5581 1.11807 17.9553 1.17085V5.04948L15.6591 5.05052C13.8584 5.05052 13.5098 5.90614 13.5098 7.16171V9H18.75L16.75 13H13.5098V23H9.03153Z"/>
</svg>
<span class="sr-only">ფეისბუქი</span>
</a>
</li><li><a href="https://www.instagram.com/meama/" class="social_platform block relative" is="magnet-link" title="">
<svg class="icon icon-instagram icon-lg" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2.98C14.94 2.98 15.28 2.99 16.44 3.04C17.14 3.04 17.83 3.18 18.48 3.42C18.96 3.6 19.39 3.88 19.75 4.24C20.12 4.59 20.4 5.03 20.57 5.51C20.81 6.16 20.94 6.85 20.95 7.55C21 8.71 21.01 9.06 21.01 12C21.01 14.94 21 15.28 20.95 16.44C20.95 17.14 20.81 17.83 20.57 18.48C20.39 18.95 20.11 19.39 19.75 19.75C19.39 20.11 18.96 20.39 18.48 20.57C17.83 20.81 17.14 20.94 16.44 20.95C15.28 21 14.93 21.01 12 21.01C9.07 21.01 8.72 21 7.55 20.95C6.85 20.95 6.16 20.81 5.51 20.57C5.03 20.39 4.6 20.11 4.24 19.75C3.87 19.4 3.59 18.96 3.42 18.48C3.18 17.83 3.05 17.14 3.04 16.44C2.99 15.28 2.98 14.93 2.98 12C2.98 9.07 2.99 8.72 3.04 7.55C3.04 6.85 3.18 6.16 3.42 5.51C3.6 5.03 3.88 4.6 4.24 4.24C4.59 3.87 5.03 3.59 5.51 3.42C6.16 3.18 6.85 3.05 7.55 3.04C8.71 2.99 9.06 2.98 12 2.98ZM12 1C9.01 1 8.64 1.01 7.47 1.07C6.56 1.09 5.65 1.26 4.8 1.58C4.07 1.86 3.4 2.3 2.85 2.85C2.3 3.41 1.86 4.07 1.58 4.8C1.26 5.65 1.09 6.56 1.07 7.47C1.02 8.64 1 9.01 1 12C1 14.99 1.01 15.36 1.07 16.53C1.09 17.44 1.26 18.35 1.58 19.2C1.86 19.93 2.3 20.6 2.85 21.15C3.41 21.7 4.07 22.14 4.8 22.42C5.65 22.74 6.56 22.91 7.47 22.93C8.64 22.98 9.01 23 12 23C14.99 23 15.36 22.99 16.53 22.93C17.44 22.91 18.35 22.74 19.2 22.42C19.93 22.14 20.6 21.7 21.15 21.15C21.7 20.59 22.14 19.93 22.42 19.2C22.74 18.35 22.91 17.44 22.93 16.53C22.98 15.36 23 14.99 23 12C23 9.01 22.99 8.64 22.93 7.47C22.91 6.56 22.74 5.65 22.42 4.8C22.14 4.07 21.7 3.4 21.15 2.85C20.59 2.3 19.93 1.86 19.2 1.58C18.35 1.26 17.44 1.09 16.53 1.07C15.36 1.02 14.99 1 12 1ZM12 6.35C10.88 6.35 9.79 6.68 8.86 7.3C7.93 7.92 7.21 8.8 6.78 9.84C6.35 10.87 6.24 12.01 6.46 13.1C6.68 14.2 7.22 15.2 8.01 15.99C8.8 16.78 9.81 17.32 10.9 17.54C12 17.76 13.13 17.65 14.16 17.22C15.19 16.79 16.07 16.07 16.7 15.14C17.32 14.21 17.65 13.12 17.65 12C17.65 10.5 17.05 9.06 16 8.01C14.94 6.95 13.5 6.36 12.01 6.36L12 6.35ZM12 15.67C11.27 15.67 10.57 15.45 9.96 15.05C9.36 14.65 8.89 14.07 8.61 13.4C8.33 12.73 8.26 11.99 8.4 11.28C8.54 10.57 8.89 9.92 9.4 9.4C9.91 8.88 10.57 8.54 11.28 8.4C11.99 8.26 12.73 8.33 13.4 8.61C14.07 8.89 14.64 9.36 15.05 9.96C15.45 10.56 15.67 11.27 15.67 12C15.67 12.97 15.28 13.91 14.6 14.59C13.91 15.28 12.98 15.66 12.01 15.66L12 15.67ZM17.87 7.45C18.6 7.45 19.19 6.86 19.19 6.13C19.19 5.4 18.6 4.81 17.87 4.81C17.14 4.81 16.55 5.4 16.55 6.13C16.55 6.86 17.14 7.45 17.87 7.45Z"/>
</svg>
<span class="sr-only">ინსტაგრამი</span>
</a>
</li><li><a href="https://www.youtube.com/@Meama" class="social_platform block relative" is="magnet-link" title="">
<svg class="icon icon-youtube icon-lg" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M23.8 7.6C23.8 7.6 23.6 5.9 22.8 5.2C21.9 4.2 20.9 4.2 20.4 4.2C17 4 12 4 12 4C12 4 7 4 3.6 4.2C3.1 4.3 2.1 4.3 1.2 5.2C0.5 5.9 0.2 7.6 0.2 7.6C0.2 7.6 0 9.5 0 11.5V13.3C0 15.2 0.2 17.2 0.2 17.2C0.2 17.2 0.4 18.9 1.2 19.6C2.1 20.6 3.3 20.5 3.8 20.6C5.7 20.8 12 20.8 12 20.8C12 20.8 17 20.8 20.4 20.5C20.9 20.4 21.9 20.4 22.8 19.5C23.5 18.8 23.8 17.1 23.8 17.1C23.8 17.1 24 15.2 24 13.2V11.4C24 9.5 23.8 7.6 23.8 7.6ZM9.5 15.5V8.8L16 12.2L9.5 15.5Z"/>
</svg>
<span class="sr-only"></span>
</a>
</li><li><a href="https://www.tiktok.com/@meama" class="social_platform block relative" is="magnet-link" title="">
<svg class="icon icon-tiktok icon-lg" viewbox="0 0 24 24" stroke="none" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M10.6315 8.937V13.059C10.1123 12.9221 9.56911 12.9034 9.0418 13.0044C8.5145 13.1054 8.01657 13.3234 7.58473 13.6424C7.15288 13.9613 6.79813 14.3732 6.54661 14.8475C6.2951 15.3218 6.15324 15.8466 6.13148 16.383C6.10175 16.8449 6.17125 17.3078 6.33531 17.7405C6.49938 18.1733 6.7542 18.5659 7.08266 18.892C7.41111 19.2181 7.80557 19.4701 8.23952 19.631C8.67346 19.7919 9.13684 19.8581 9.59848 19.825C10.0648 19.8608 10.5333 19.7949 10.9717 19.6319C11.41 19.4689 11.8078 19.2126 12.1374 18.8809C12.4671 18.5491 12.7208 18.1498 12.881 17.7104C13.0413 17.271 13.1042 16.8021 13.0655 16.336V0H17.1425C17.8355 4.315 19.9935 5.316 22.8825 5.778V9.913C20.8804 9.74881 18.9491 9.09645 17.2575 8.013V16.18C17.2575 19.88 15.0675 24 9.63048 24C8.61045 23.9955 7.60156 23.7875 6.66297 23.3881C5.72437 22.9886 4.87496 22.4059 4.16451 21.6739C3.45407 20.942 2.89689 20.0755 2.52563 19.1254C2.15438 18.1754 1.97652 17.1607 2.00248 16.141C2.03479 15.0794 2.29174 14.0366 2.75639 13.0815C3.22105 12.1265 3.88285 11.2807 4.69819 10.6C5.51352 9.9193 6.46387 9.41915 7.48658 9.1325C8.50929 8.84586 9.58114 8.77923 10.6315 8.937Z"/>
</svg>
<span class="sr-only"></span>
</a>
</li></ul><p class="footer__social-text text-sm leading-tight"><p><a href="tel:2800808">2 800 808</a></p><p><a href="mailto:info@meama.ge">info@meama.ge</a></p></p></div></div></footer><parallax-overlay class="footer-overlay hidden md:block z-20 absolute left-0 top-0 w-full pointer-events-none" data-target="height" data-start="100%" data-stop="0%"></parallax-overlay></div>
</div>
<!-- END sections: meama-footer-group --></footer>
</div>
<ul hidden>
<li id="a11y-refresh-page-message">შერჩევის არჩევის შედეგად ხდება გვერდის სრული განახლება.</li>
<li id="a11y-new-window-message">იხსნება ახალ ფანჯარაში.</li>
</ul><script src="//www.meama.ge/cdn/shop/t/123/assets/instant-page.js?v=99963444960178710701769936433" type="module" fetchpriority="low" defer="defer"></script><div id="shopify-block-AYkpjcWFINkF3RWlJV__1513253815146976218" class="shopify-block shopify-app-block">
</div><div id="shopify-block-AYUkxbm05Wmkyd3VlS__4143866229958350875" class="shopify-block shopify-app-block"> <!-- BEGIN app snippet: booster --> <!-- END app snippet --> <!-- BEGIN app snippet: koala-ids --> <koala-ids id="koala-ids" data-deal-ids="cmipqj0c608o8vunvx9dpqc4w,cmipz332e0jxw1089zcc9hy29,cmipznntl0etcvunvbqkomvz4,cmipzsasc0evrvunvva1a1g24,cmipzxwx00kmz1089drg9h3kp,cmiq0158i0f2wvunv1px5lgxy,cmiq044xp0krg1089zisjfzwh,cmiq09frm0fahvunv6fu359ci,cmiq0c6uo0fc3vunvz3yyxtkr,cmiq0dmq50fd8vunvg5bbqufp,cmiq0g5vq0l0w1089fepe1e84,cmiq0n53x0l5a1089s1ohef6i,cmir7uc2p0fanzwr33xw9cknl" data-contract-ids="1a8f7633-bd89-428f-b15e-afbaaedafe09,a005e6a3-e60c-4781-a9dc-73e4d6af698a,b87407e7-10f2-4625-a85b-d4a10fd90331,4c5343bb-432c-4471-b06d-89c1bc4e66d8,ec345ac5-7dbf-40b6-969c-88e2a929936f,93acc183-9f76-444c-85d9-79f8f3a030cc" style="display: none;"></koala-ids><!-- END app snippet --> </div><div id="shopify-block-AQzZUdjQ3SXVxbUpNb__11348531219507317188" class="shopify-block shopify-app-block">
<script>
(function(){
window.gbbExtEmbed = { f :{} };
function getProductData() {
return {
handle: null,
productId: null,
productData : null,
collections: [
],
selected_or_first_available_variant: null
};
}
function debugConsole(...messages){
try {
let isDebug = localStorage.getItem("debug");
if (isDebug) {
for (let message of messages) {
console.error(message);
}
}
} catch (err) {
console.error('error inside the debugError function ->', err)
}
}
function removeProductHtmlForBundles(){
try{
let customSelector = window.easybundles_ext_data?.userData?.customSettings?.customSelectorToRenderFullPageBundle ?? ""
let targetWrapper =
document.querySelector('main') ||
document.querySelector('.main') ||
document.querySelector('#main') ||
document.querySelector('#main-content');
if(customSelector){
targetWrapper = document.querySelector(customSelector)
}
if(targetWrapper){
targetWrapper.innerHTML = ''
}
}catch(err){
debugConsole("error in removeProductHtmlForBundles",err)
}
}
// Load full page bundle from backend
async function getBundleDataFromS3() {
try {
const parentProductsData = window?.shopifyLiquidValuesApp4Ext?.product?.bundleProductConfiguration;
if(!parentProductsData?.bundleId) return null;
const shopName = window.Shopify.shop;
const s3Url = `https://gift-box-builder-app4.s3.us-east-2.amazonaws.com/public/backup-config/${shopName}/${parentProductsData?.bundleId}.json`
const fetchResponse = await fetch(s3Url);
const data = await fetchResponse.json();
return data || null;
} catch (error) {
debugConsole("Error in getBundleDataFromS3:", error);
return null;
}
}
function initializeShopifyValues() {
const productDetails = getProductData()
window.shopifyLiquidValuesApp4Ext = {
product: productDetails,
cartData: {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"GEL","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
selected_or_first_available_variant: productDetails.selected_or_first_available_variant
};
let ext_data = {"userData":{"shopName":"meama-georgia.myshopify.com","countryCode":"GE","countryName":"Georgia","currency":"GEL","currencyInfo":{"code":"GEL","symbol":"GEL","thousandsSeparator":" ","decimalSeparator":",","symbolOnLeft":false,"spaceBetweenAmountAndSymbol":true,"decimalDigits":2},"customSettings":{"initialModalPopupCnt":0,"disableCartSettings":false,"addToCartBtnSelectors":"","checkoutBtnSelectors":"","customStyle":".gbbProductActionContainer,\n.gbbProductItemPricesContainer,\n.gbbProductButtonWrapper {\n grid-template-rows: none !important;\n}","addAfterAddTocartBtn":false,"addAftercheckoutBtn":false,"disableApp":false,"loadingGif":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1746970032709.gif","stackDiscounts":true,"showOnlyAdminSelectedVariants":true,"overWriteCheckoutBtn":false,"addGiftMessageToNote":true,"enableStoreFrontGQLAPI":true,"bundleCartRepresentationObj":{"type":"OVERWRITE_LINE_ITEM","overwriteLineItemObj":{"renderItemsNameAsProperty":true,"renderItemsNameVirtually":false,"renderItemNameCustomized":false,"renderOfferIdVirtually":false,"renderBoxIdVirtually":false,"isEnabledForThirdPartyCheckout":false}},"buyNowBtn":"","cartItemQuantityBtnSelectors":"","cartItemRemoveParentSelectors":"","cartItemRemoveSelectors":"","cartItemSelectors":"","checkIfShowBundleAsProductEnabled":false,"customBundleScript":"\n\n\ndocument.addEventListener('gbb-cart-update', function() {\n if (gbb.state.giftBoxCartData.item_count \u003e= 5) {\n document.querySelector('.gbbPageBody').classList.add('add-custom-discount-text');\n } else {\n document.querySelector('.gbbPageBody').classList.remove('add-custom-discount-text');\n }\n});\ngbb.gbbDiscountComponent.f.replaceDiscountVariables = function (message, nextDiscountRule) {\n if (nextDiscountRule) {\n let boxCartData = gbb.gbbBrowser.getRelevantBoxDataFromSessionStorage();\n let discountConditionDiff;\n let discountUnit;\n let discountValue;\n let currentCartValue;\n let discountValueUnit;\n let currentDiscountMode = gbb.settings.discountsData.discountMode;\n if (gbb.settings.discountsData.isKiteDiscountMessagingEnabled){\n currentDiscountMode = gbb.settings.discountsData.kiteDiscountMessaging.discountMode\n }\n if (nextDiscountRule.type == \"amount\") {\n currentCartValue = parseFloat(boxCartData?.total_price \/ 100).toFixed(2);\n \/\/ currentCartValue = Math.round(currentCartValue);\n discountUnit = gbb.utility.getCurrencySymbol();\n \/\/ let activeCurrencyRate = gbb.utility.getActiveCurrencyRate();\n \/\/ currentCartValue = currentCartValue \/ activeCurrencyRate;\n } else if (nextDiscountRule.type == \"quantity\") {\n \/\/ currentCartValue = boxCartData.item_count || 0;\n let cartValue = JSON.parse(JSON.stringify(boxCartData.items));\n \/\/find cart item only that have more than 0 price\n cartValue = boxCartData.items.filter(item =\u003e item.price \u003e 0);\n \/\/\n \/\/ get me cartValue, boxCartData\n currentCartValue = 0;\n cartValue.forEach(item =\u003e {\n currentCartValue = currentCartValue + item.quantity;\n })\n discountUnit = \" product(s)\";\n if (parseInt(currentCartValue) \u003e= parseInt(nextDiscountRule.value)) {\n return \"\";\n }\n }\n if (currentDiscountMode == \"FIXED_BUNDLE_PRICE\") {\n discountUnit = \" product(s)\";\n discountValueUnit = gbb.utility.getCurrencySymbol();\n \/\/ discountValueUnit = gbb.utility.getStoreCurrencySymbol();\n }\n let isDiscountFromKiteAndPercentage = false;\n let isDiscountFromKiteAndFixed = false;\n if (gbb.settings.discountsData.isKiteIntegrationEnabled) {\n const discounts = gbb.settings.gbbKiteData?.discounts;\n if (discounts \u0026\u0026 discounts.length \u003e 0) {\n const fixedDiscountsType = [\"FIXED_TOTAL\", \"FIXED_DIS\"];\n const percentageDiscountsType = [\"PERCENTAGE_DIS\"];\n if (fixedDiscountsType.includes(discounts[0].disValueType)) {\n isDiscountFromKiteAndFixed = true;\n } else if (percentageDiscountsType.includes(discounts[0].disValueType)) {\n isDiscountFromKiteAndPercentage = true;\n }\n }\n }\n if (currentDiscountMode == \"FIXED\" || isDiscountFromKiteAndFixed) {\n discountValueUnit = gbb.utility.getCurrencySymbol();\n \/\/ discountValueUnit = gbb.utility.getStoreCurrencySymbol();\n } else if (currentDiscountMode == \"PERCENTAGE\" || isDiscountFromKiteAndPercentage) {\n discountValueUnit = \"%\"\n }\n discountConditionDiff = Math.round(nextDiscountRule.value) - Math.round(currentCartValue);\n if (discountConditionDiff \u003c 1 || true ){\n discountConditionDiff = parseFloat(nextDiscountRule.value) - parseFloat(currentCartValue)\n discountConditionDiff = parseFloat(discountConditionDiff).toFixed(2)\n }\n \/\/include item that was just added\n discountValue = nextDiscountRule.discountValue;\n let variableValues = {\n discountConditionDiff,\n discountUnit,\n discountValue,\n discountValueUnit\n }\n let variables;\n if (currentDiscountMode == \"PERCENTAGE\") {\n variables = [\"discountConditionDiff\", \"discountUnit\", \"discountValue\", \"discountValueUnit\"]\n } else {\n variables = [\"discountConditionDiff\", \"discountUnit\", \"discountValueUnit\", \"discountValue\"]\n }\n for (let i = 0; i \u003c variables.length; i++) {\n let VariableName = \"##\" + variables[i] + \"##\";\n let value = variableValues[variables[i]];\n message = message.replace(new RegExp(`${VariableName}`, 'g'), value);\n }\n } else {\n message = \"\";\n }\n return message;\n }","customCartIntegrationScript":"","customStyleForBuilderPages":".gbbProductsCardLayoutV2 .gbbProductItem {\n padding: 0px 0px 8px 0px !important;\nborder: 1px solid #EEEEEE;\n}\n.gbbProductButtonWrapper{\nmargin: 10px !important;\n}\n .gbbProductImageContainer {\n border-radius: 20px 20px 0px 0px !important;\n}\n .gbbProductImageContainerImg {\n max-height: 100% !important;\n }\n .gbbProductItem {\n grid-template-rows: 2fr 0.4fr 0.6fr !important;\n }\n@media only screen and (max-width: 768px) {\n .gbbMultipleCategoriesRibbonContainer {\n display: flex;\n }\n .gbbMultipleCategoriesDropdownContainer {\n display: none;\n }\n}\n.gbbProductsFooterHTML, .gbbAddProductsPageFooterHTML, .gbbPersonalizePageFooterHTML {\n z-index: 10 !important;\n}\n.gbbProductImageContainer{\npointer-events: none !important;\n}\n@media (min-width: 1024px) {\n .gbbProductItemPrice {\n padding-bottom: 10px !important;\n}\n .gbbProductItemPrice ~ .gbbProductQuantityHTML {\n margin-bottom: 16px !important;\n }\n}\n\n@media screen and (max-width: 767px) {\n .gbbAddProductsPageFooterHTML {\n z-index: 999 !important;\n }\n}\n\n.gbbAddonProductsWrapper{\n .gbbProductItem {\n grid-template-rows: 3fr .3fr .2fr .3fr !important;\n }\n .gbbProductItem .gbbProductDynamicContentContainer {\n display: block;\n}\n.gbb-addons-product-stock {\n text-align: center;\n}\n}\n.gbbProductDynamicContentContainer{\n display:none;\n}\n\n.gbbHTMLWrapper {\n font-family: 'Noto Serif Georgian', serif !important;\n}\n\n.gbbFooterBackButton.gbbDisabled {\n display: none !important;\n}\n\n\n\n","customStyleForDummyProductPage":"","customThemeIntegrationScript":"","enableCustomThemeIntegrationScript":false,"integrations":{"judgeme":{"isEnabled":false,"public_token":""}},"isCartIntegrationEnabled":false,"loadingBgColor":"#ffffff","preparingBundleGif":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1746970035577.gif","redirectToCartEnabled":false,"redirectToCheckoutEnabled":true,"redirectToScript":"","redirectUrlForCheckoutBtn":"","selectorToRenderBundlePostionOnCart":"Over","selectorToRenderBundlePostionOnSideCart":"Over","selectorToRenderBundleProduct":"","selectorToRenderBundleProductOnSideCart":"","sideCartCheckoutBtnSelectors":"","dynamicScriptForHTMLContent":"dynamicScriptForHTMLContent(productData);\nfunction dynamicScriptForHTMLContent(productData) {\n let inStockLabel = gbb.utility.renderLanguageValue(gbb?.settings?.languageData?.general?.inventoryInStockText) || \"in Stock\"\n let firstVariantStock = productData.variants[0].quantityAvailable || 0;\n const isMultiVariant = productData.renderChooseOptionsButton_forcefully == true || productData.variants?.length \u003e 1 \u0026\u0026 productData.available == true\n let productStock = firstVariantStock || productData.quantityAvailable || 0;\n if (isMultiVariant) {\n let variantProductFromCart = gbb.utility.getTheVariantProductPresentInCart(productData);\n if (variantProductFromCart) {\n productStock = variantProductFromCart.quantityAvailable || 0;\n }\n }\n return gbb.$('\u003cdiv\u003e', { class: 'gbb-addons-product-stock', text: `${productStock} ${inStockLabel}` })\n}","optimizeFullPageBundleSpeed":true},"isAppLevelMetafieldCreated":true,"storefrontAccessToken":"3626f3192972d1de3dd9cf1a8fd8e934","createdAt":"2025-04-26T23:13:01.759Z","multipleCurrenciesInfo":{"GEL":{"code":"GEL","symbol":"₾","thousandsSeparator":" ","decimalSeparator":",","symbolOnLeft":false,"spaceBetweenAmountAndSymbol":true,"decimalDigits":2}}},"languageData":{"_id":"680d687eef5b7ebae4967e6e","shopName":"meama-georgia.myshopify.com","__v":0,"createdAt":"2025-04-26T23:13:02.086Z","en":{"landingPage":{"bannerText":{"id":"bannerText","label":"Banner Text","type":"text","value":"Build your own Bundle in just a few clicks!"},"bannerSubtext":{"id":"bannerSubtext","label":"Banner Subtext","type":"text","value":"Send a custom bundle to your loved one in just a few steps"},"bannerButtonText":{"id":"bannerButtonText","label":"Banner Button Text","type":"text","value":"Start Building your Bundle"},"selectPreCuratedBoxLabel":{"id":"selectPreCuratedBoxLabel","label":"Select Pre-Curated Box Label","type":"text","value":"Or select from a range of pre-curated Gift Boxes"}},"navigationSteps":{"productPageStepText":{"id":"productPageStepText","label":"Product Page Step Text","type":"text","value":"Add Products"},"giftBoxStepText":{"id":"giftBoxStepText","label":"Bundle Step Text","type":"text","value":"Add Gift Box"},"personalizeStepText":{"id":"personalizeStepText","label":"Personalize Step Text","type":"text","value":"Personalize"},"multipleCategoriesStepText":{"id":"multipleCategoriesStepText","label":"Multiple Categories Step Text","type":"text","value":"Multiple Categories"}},"productPage":{"selectProductsLabel":{"id":"selectProductsLabel","label":"Select Products Label","type":"text","value":"Select Products"},"productPageSubtext":{"id":"productPageSubtext","label":"Product Page Subtext","type":"text","value":""}},"giftBoxPage":{"selectGiftBoxLabel":{"id":"selectGiftBoxLabel","label":"Select Bundle Label","type":"text","value":"Select a Bundle Box"},"giftBoxPageSubtext":{"id":"giftBoxPageSubtext","label":"Gift Box Page Subtext","type":"text","value":""}},"videoMessage":{"permissionDenied":{"id":"permissionDenied","label":"Permission Denied","type":"text","value":"Permission Denied"},"uploadConfirmation":{"id":"uploadConfirmation","label":"Upload Confirmation","type":"text","value":"Your video has been successfully uploaded!"},"pressToRecord":{"id":"pressToRecord","label":"Press to record","type":"text","value":"Press to record"},"recording":{"id":"recording","label":"Recording","type":"text","value":"Recording...."},"errorMessage":{"id":"errorMessage","label":"Error Message","type":"text","value":"An error occured, Please try again!"},"loading":{"id":"loading","label":"Loading","type":"text","value":"Loading...."},"uploading":{"id":"uploading","label":"Uploading","type":"text","value":"Uploading...."},"sendVideoMessageText":{"id":"sendVideoMessageText","label":"Send Video Message Text","type":"text","value":"Send Video Message"},"giftMessageDeliveryInfo":{"id":"giftMessageDeliveryInfo","label":"Message Delivery Info","type":"text","value":"The message will be sent to the recipient via email as soon as the order is placed"},"saveVideoText":{"id":"saveVideoText","label":"Save Video Text","type":"text","value":"Save Video"},"reRecordVideoText":{"id":"reRecordVideoText","label":"Re-Record Video Text","type":"text","value":"Re-Record Video"}},"personalizePage":{"messageLabel":{"id":"messageLabel","label":"Message Label","type":"text","value":"Message"},"senderNamePlaceholder":{"id":"senderNamePlaceholder","label":"Sender Name Placeholder","type":"text","value":"From"},"recipientNamePlaceholder":{"id":"recipientNamePlaceholder","label":"Recipient Name Placeholder","type":"text","value":"To"},"messagePlaceholder":{"id":"messagePlaceholder","label":"Message Placeholder","type":"text","value":"Enter a message here..."},"emailAddressLabel":{"id":"emailAddressLabel","label":"Recipient Email Address Label","type":"text","value":"Recipient Email Address"},"emailAddressPlaceholder":{"id":"emailAddressPlaceholder","label":"Recipient Email Address Placeholder","type":"text","value":"Enter a recipient email address here..."},"emailValidationMessage":{"id":"emailValidationMessage","label":"Email Validation Message","type":"text","value":"Please enter a valid email address"},"sendNow":{"id":"sendNow","label":"Send Now Label","type":"text","value":"Send Now"},"sendLater":{"id":"sendLater","label":"Send Later Label","type":"text","value":"Send Later"},"personalizePageSubtext":{"id":"personalizePageSubtext","label":"Personalize Page Subtext","type":"text","value":""},"messageIsRequiredError":{"id":"messageIsRequiredError","label":"Message is required warning","type":"text","value":"Please enter a message"}},"reviewPage":{"reviewPageBannerText":{"id":"reviewPageBannerText","label":"Review Page Banner Text","type":"text","value":"You’ve made the Right Choice!"},"reviewPageBannerSubtext":{"id":"reviewPageBannerSubtext","label":"Review Page Banner Subtext","type":"text","value":"Review your bundle and proceed to checkout"},"addOnsLabel":{"id":"addOnsLabel","label":"Add Ons Label","type":"text","value":"Add on"},"totalValueLabel":{"id":"totalValueLabel","label":"Total Value Label","type":"text","value":"Total"},"totalLabel":{"id":"totalLabel","label":"Total Label","type":"text","value":"Total"},"productLabel":{"id":"productLabel","label":"Product Header Label","type":"text","value":"Product"},"priceLabel":{"id":"priceLabel","label":"Price Header Text","type":"text","value":"Price"},"quantityLabel":{"id":"quantityLabel","label":"Quantity Header Text","type":"text","value":"Quantity"},"deliveryDateLabel":{"id":"deliveryDateLabel","label":"Delivery Date Label","type":"text","value":"Delivery Date"},"productsLabelText":{"id":"productsLabelText","label":"Products Label Text","type":"text","value":"Products"},"messagesLabelText":{"id":"messagesLabelText","label":"Messages Label Text","type":"text","value":"Messages"},"discountAppliedLabel":{"id":"discountAppliedLabel","label":"Discount Applied Label","type":"text","value":"Discount"},"subtotalLabel":{"id":"subtotalLabel","label":"Sub Total Label","type":"text","value":"Total"},"orderDetailsLabel":{"id":"orderDetailsLabel","label":"Order Details Label","type":"text","value":"Order Details"},"itemsLabel":{"id":"itemsLabel","label":"No. of Items Label","type":"text","value":"Products"},"oneTimePurchaseLabel":{"id":"oneTimePurchaseLabel","label":"One-Time Purchase label","type":"text","value":"One-Time Purchase"},"subscribeAndSaveLabel":{"id":"subscribeAndSaveLabel","label":"Subscribe and Save label","type":"text","value":"Subscribe and Save"},"noSubscriptionFoundLabel":{"id":"noSubscriptionFoundLabel","label":"No Subscription plans found label","type":"text","value":"Oops! No Subscription plans were found"},"deliveryFrequencyLabel":{"id":"deliveryFrequencyLabel","label":"Delivery Frequency Label","type":"text","value":"Delivery Frequency"},"createNewBoxLabel":{"id":"createNewBoxLabel","label":"Create New Box Label","type":"text","value":"Create new Box"},"editButtonText":{"id":"editButtonText","label":"Edit Label","type":"text","value":"Edit"},"deliverySchedulerPlaceholderText":{"id":"deliverySchedulerPlaceholderText","label":"Delivery Scheduler Placeholder Text","type":"text","value":"Select a date"}},"discountRules":{"rule1":{"amount":{"id":"amount","label":"Amount","type":"text","value":"2"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 49 off"}},"rule2":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule3":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule4":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule5":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule6":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule7":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule8":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule9":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule10":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}}},"sortBy":{"sortLabel":{"id":"sortLabel","label":"Sort Label","type":"text","value":"Sort"},"alphabeticalAToZ":{"id":"alphabeticalAToZ","label":"Alphabetical, A-Z Label","value":"Alphabetical, A-Z"},"alphabeticalZToA":{"id":"alphabeticalZToA","label":"Alphabetical, Z-A Label","value":"Alphabetical, Z-A"},"priceHighToLow":{"id":"priceHighToLow","label":"Price, High to Low Label","value":"Price, High to Low"},"priceLowToHigh":{"id":"priceLowToHigh","label":"Price, Low to High Label","value":"Price, Low to High"},"featured":{"id":"featured","label":"Featured Label","type":"text","value":"Featured"}},"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ {{conditionAmount}} ღირებულების კოლოფი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of {{conditionAmount}} on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth {{conditionAmount}} on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ {{conditionQuantity}} კოლოფი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of {{conditionQuantity}} products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add exactly {{conditionQuantity}} products on this step"}},"weight":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products weighing at least {{conditionWeight}} on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products weighing maximum of {{conditionWeight}} on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products weighing {{conditionWeight}} on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"filtersLabel":{"id":"filtersLabel","label":"Filters Label","type":"text","value":"Filters"},"clearSelection":{"id":"clearSelection","label":"Clear Filters Selection","type":"text","value":"Clear Selection"},"searchLabel":{"id":"searchLabel","label":"Search Label","type":"text","value":"Search"},"addToBoxButtonText":{"id":"addToBoxButtonText","label":"Add To Box Button","type":"text","value":"Add"},"chooseOptionsButtonText":{"id":"chooseOptionsButtonText","label":"Choose Options Button","type":"text","value":"Choose"},"loadMoreProductsButtonText":{"id":"loadMoreProductsButtonText","label":"Load More Products Button","type":"text","value":"Load More Products"},"loadingCheckoutButtonText":{"id":"loadingCheckoutButtonText","label":"Loading Checkout Button","type":"text","value":"Loading Checkout..."},"addedText":{"id":"addedText","label":"Added Label","type":"text","value":"Added"},"addButtonText":{"id":"addButtonText","label":"Add Button Text","type":"text","value":"Add"},"nextButtonText":{"id":"nextButtonText","label":"Next Button Text","type":"text","value":"Next"},"addToCartButtonText":{"id":"addToCartButtonText","label":"Add To Cart Button Text","type":"text","value":"Add to cart"},"backButtonText":{"id":"backButtonText","label":"Back Button Text","type":"text","value":"Back"},"checkoutButtonText":{"id":"checkoutButtonText","label":"Checkout Button Text","type":"text","value":"Buy"},"removeButtonText":{"id":"removeButtonText","label":"Remove Button Text","type":"text","value":"Delete"},"reviewButtonText":{"id":"reviewButtonText","label":"Review Button Text","type":"text","value":"Review"},"combinationNotAvailable":{"id":"combinationNotAvailable","label":"Combination Not Available","type":"text","value":"Combination Not Available"},"quantity":{"id":"quantity","label":"Quantity Label","type":"text","value":"Quantity"},"inventoryInStockText":{"id":"inventoryInStockText","label":"Inventory in Stock Label","type":"text","value":"in Stock"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"viewCartProductsLabel":{"id":"viewCartProductsLabel","label":"View Cart Products Label","type":"text","value":"View Selected Products"},"selectedProductsLabel":{"id":"selectedProductsLabel","label":"Selected Products Label","type":"text","value":"Selected Products"},"selectBundleProductsText":{"id":"selectBundleProductsText","label":"Select Bundle Products label","type":"text","value":"Select Bundle Products"},"redirectingText":{"id":"redirectingText","label":"Redirecting label","type":"text","value":"Redirecting..."},"preparingBundleText":{"id":"preparingBundleText","label":"Preparing Bundle Label","type":"text","value":"Loading..."},"productsNotAvailableText":{"id":"productsNotAvailableText","label":"Products Not Available Label","type":"text","value":"Oops! Some Products are not available"},"discountsMayNotApplyText":{"id":"discountsMayNotApplyText","label":"Discounts may not be applied Label","type":"text","value":"discounts may not be applied"},"removeAllBoxProducts":{"id":"removeAllBoxProducts","label":"Remove all Box Products Label (Cart Page Popup)","type":"text","value":"This is a Box Product. Removing this will remove all the products from box"},"cartPageCheckoutButtonLoadingText":{"id":"cartPageCheckoutButtonLoadingText","label":"Cart Page Checkout Button Loading Text","type":"text","value":"Loading..."},"boxSelectionEligibilityToast":{"id":"boxSelectionEligibilityToast","label":"Box Selection Eligibility Toast","type":"text","value":"Remove {{boxSelectionDifference}} item(s) to select this box"},"removeFooterProductFrom":{"id":"removeFooterProductFrom","label":"Remove Product from Footer Text","type":"text","value":"Remove This Product From {{stepName}}"},"discountRibbonSuffix":{"id":"discountRibbonSuffix","label":"Discount Badge Suffix","type":"text","value":"off"},"itemsInCartLabel":{"id":"itemsInCartLabel","label":"Cart Inclusion Title","type":"text","value":"item(s)"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added"},"selectSubscriptionPlanButtonText":{"id":"selectSubscriptionPlanButtonText","label":"Subscription Selection Label","type":"text","value":"Select Subscription Plan"}},"multipleCategoriesPage":{"multipleCategoriesSubtext":{"id":"multipleCategoriesSubtext","label":"Multiple Categories Page Subtext","type":"text","value":""}},"multipleCategories":{},"addons":{"maxAddonProductsAllowed":{"id":"maxAddonProductsAllowed","label":"Max Addon Products Allowed message","type":"text","value":"Add a maximum of {{maxAllowedAddons}} addon products on this step"},"addonProductsMandatory":{"id":"addonProductsMandatory","label":"Addon Products Mandatory message","type":"text","value":"Addon product is mandatory on this step"},"firstBundleInteraction":{"id":"firstBundleInteraction","label":"Mobile Add On Notification","type":"text","value":"Additional offers to be unlocked"}},"modals":{"clearCart":{"title":{"id":"title","label":"Modal - Title","type":"text","value":"Are you sure?"},"description":{"id":"description","label":"Modal - Description","type":"text","value":"Are you sure you want to clear all items from your cart? This action cannot be undone..."},"triggerButtonText":{"id":"triggerButtonText","label":"Clear Cart Button Text","type":"text","value":"Clear"},"cancelButtonText":{"id":"cancelButtonText","label":"Modal - Cancel Button Text","type":"text","value":"Cancel"},"confirmButtonText":{"id":"confirmButtonText","label":"Modal - Confirm Button Text","type":"text","value":"Clear Cart"}}}},"languageMode":"MULTIPLE","mixAndMatchTextData":{"en":{"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products worth at least {{conditionAmount}} on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of {{conditionAmount}} on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth {{conditionAmount}} on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add at least {{conditionQuantity}} products on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of {{conditionQuantity}} products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add exactly {{conditionQuantity}} products on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"addBundleToCartBtnText":{"id":"addBundleToCartBtnText","label":"Add Bundle Cart label","type":"text","value":"Add Bundle to Cart"},"addBundleToCartLoadingBtnText":{"id":"addBundleToCartLoadingBtnText","label":"Add Bundle Loading label","type":"text","value":"Adding Bundle..."},"addBundleToCartSuccessBtnText":{"id":"addBundleToCartSuccessBtnText","label":"Add Bundle Success label","type":"text","value":"Bundle Added"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"emptyCardText":{"id":"emptyCardText","label":"Add Empty Product Card Text","type":"text","value":"Product"},"boxSelectionEligibilityToast_inPage":{"id":"boxSelectionEligibilityToast_inPage","label":"Box Selection Eligibility Toast","type":"text","value":"Remove {{boxSelectionDifference}} item(s) to select this box"},"subtotalLabelText_inPage":{"id":"subtotalLabelText_inPage","label":"Subtotal Text","type":"text","value":"Subtotal"},"boxConditionInitialText_inPage":{"id":"boxConditionInitialText_inPage","label":"Inline Add To Cart Button - Quantity Selection message","type":"text","value":"Select {{quantityDifference}} Items"},"stepsDrawerPillText":{"id":"stepsDrawerPillText","label":"Steps Drawer Pill Text","type":"text","value":"Show all steps"}},"footer":{"footerPrevBtnText":{"id":"footerPrevBtnText","label":"Footer Previous Button","type":"text","value":"Prev"},"footerNextBtnText":{"id":"footerNextBtnText","label":"Footer Next Button","type":"text","value":"Next"},"footerFinishBtnText":{"id":"footerFinishBtnText","label":"Footer Finish Button","type":"text","value":"Done"}},"productCard":{"productCardAddBtnText":{"id":"productCardAddBtnText","label":"Product Add to Cart Button","type":"text","value":"Add to Cart"},"productVariantLabelText":{"id":"productVariantLabelText","label":"Product Variant Label","type":"text","value":"Select variant"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added x{{allowedQuantity}}"},"productCardAddBtnText_inPage":{"id":"productCardAddBtnText_inPage","label":"Inline Product - Add Button Text","type":"text","value":"Add +"}}}},"updatedAt":"2026-02-03T14:46:31.883Z","ka":{"landingPage":{"bannerText":{"id":"bannerText","label":"Banner Text","type":"text","value":"Build your own Bundle in just a few clicks!"},"bannerSubtext":{"id":"bannerSubtext","label":"Banner Subtext","type":"text","value":"Send a custom bundle to your loved one in just a few steps"},"bannerButtonText":{"id":"bannerButtonText","label":"Banner Button Text","type":"text","value":"Start Building your Bundle"},"selectPreCuratedBoxLabel":{"id":"selectPreCuratedBoxLabel","label":"Select Pre-Curated Box Label","type":"text","value":"Or select from a range of pre-curated Gift Boxes"}},"navigationSteps":{"productPageStepText":{"id":"productPageStepText","label":"Product Page Step Text","type":"text","value":"Add Products"},"giftBoxStepText":{"id":"giftBoxStepText","label":"Bundle Step Text","type":"text","value":"Add Gift Box"},"personalizeStepText":{"id":"personalizeStepText","label":"Personalize Step Text","type":"text","value":"Personalize"},"multipleCategoriesStepText":{"id":"multipleCategoriesStepText","label":"Multiple Categories Step Text","type":"text","value":"Multiple Categories"}},"productPage":{"selectProductsLabel":{"id":"selectProductsLabel","label":"Select Products Label","type":"text","value":"Select Products"},"productPageSubtext":{"id":"productPageSubtext","label":"Product Page Subtext","type":"text","value":""}},"giftBoxPage":{"selectGiftBoxLabel":{"id":"selectGiftBoxLabel","label":"Select Bundle Label","type":"text","value":"Select a Bundle Box"},"giftBoxPageSubtext":{"id":"giftBoxPageSubtext","label":"Gift Box Page Subtext","type":"text","value":""}},"videoMessage":{"permissionDenied":{"id":"permissionDenied","label":"Permission Denied","type":"text","value":"Permission Denied"},"uploadConfirmation":{"id":"uploadConfirmation","label":"Upload Confirmation","type":"text","value":"Your video has been successfully uploaded!"},"pressToRecord":{"id":"pressToRecord","label":"Press to record","type":"text","value":"Press to record"},"recording":{"id":"recording","label":"Recording","type":"text","value":"Recording...."},"errorMessage":{"id":"errorMessage","label":"Error Message","type":"text","value":"An error occured, Please try again!"},"loading":{"id":"loading","label":"Loading","type":"text","value":"Loading...."},"uploading":{"id":"uploading","label":"Uploading","type":"text","value":"Uploading...."},"sendVideoMessageText":{"id":"sendVideoMessageText","label":"Send Video Message Text","type":"text","value":"Send Video Message"},"giftMessageDeliveryInfo":{"id":"giftMessageDeliveryInfo","label":"Message Delivery Info","type":"text","value":"The message will be sent to the recipient via email as soon as the order is placed"},"saveVideoText":{"id":"saveVideoText","label":"Save Video Text","type":"text","value":"Save Video"},"reRecordVideoText":{"id":"reRecordVideoText","label":"Re-Record Video Text","type":"text","value":"Re-Record Video"}},"personalizePage":{"messageLabel":{"id":"messageLabel","label":"Message Label","type":"text","value":"Message"},"senderNamePlaceholder":{"id":"senderNamePlaceholder","label":"Sender Name Placeholder","type":"text","value":"From"},"recipientNamePlaceholder":{"id":"recipientNamePlaceholder","label":"Recipient Name Placeholder","type":"text","value":"To"},"messagePlaceholder":{"id":"messagePlaceholder","label":"Message Placeholder","type":"text","value":"Enter a message here..."},"emailAddressLabel":{"id":"emailAddressLabel","label":"Recipient Email Address Label","type":"text","value":"Recipient Email Address"},"emailAddressPlaceholder":{"id":"emailAddressPlaceholder","label":"Recipient Email Address Placeholder","type":"text","value":"Enter a recipient email address here..."},"emailValidationMessage":{"id":"emailValidationMessage","label":"Email Validation Message","type":"text","value":"Please enter a valid email address"},"sendNow":{"id":"sendNow","label":"Send Now Label","type":"text","value":"Send Now"},"sendLater":{"id":"sendLater","label":"Send Later Label","type":"text","value":"Send Later"},"personalizePageSubtext":{"id":"personalizePageSubtext","label":"Personalize Page Subtext","type":"text","value":""},"messageIsRequiredError":{"id":"messageIsRequiredError","label":"Message is required warning","type":"text","value":"Please enter a message"}},"reviewPage":{"reviewPageBannerText":{"id":"reviewPageBannerText","label":"Review Page Banner Text","type":"text","value":"You’ve made the Right Choice!"},"reviewPageBannerSubtext":{"id":"reviewPageBannerSubtext","label":"Review Page Banner Subtext","type":"text","value":"Review your bundle and proceed to checkout"},"addOnsLabel":{"id":"addOnsLabel","label":"Add Ons Label","type":"text","value":"საჩუქარი"},"totalValueLabel":{"id":"totalValueLabel","label":"Total Value Label","type":"text","value":"სულ"},"totalLabel":{"id":"totalLabel","label":"Total Label","type":"text","value":"სულ"},"productLabel":{"id":"productLabel","label":"Product Header Label","type":"text","value":"პროდუქტი"},"priceLabel":{"id":"priceLabel","label":"Price Header Text","type":"text","value":"ფასი"},"quantityLabel":{"id":"quantityLabel","label":"Quantity Header Text","type":"text","value":"რაოდენობა"},"deliveryDateLabel":{"id":"deliveryDateLabel","label":"Delivery Date Label","type":"text","value":"Delivery Date"},"productsLabelText":{"id":"productsLabelText","label":"Products Label Text","type":"text","value":"Products"},"messagesLabelText":{"id":"messagesLabelText","label":"Messages Label Text","type":"text","value":"Messages"},"discountAppliedLabel":{"id":"discountAppliedLabel","label":"Discount Applied Label","type":"text","value":"ფასდაკლება"},"subtotalLabel":{"id":"subtotalLabel","label":"Sub Total Label","type":"text","value":"სულ"},"orderDetailsLabel":{"id":"orderDetailsLabel","label":"Order Details Label","type":"text","value":"შეკვეთის დეტალები"},"itemsLabel":{"id":"itemsLabel","label":"No. of Items Label","type":"text","value":"პროდუქტი"},"oneTimePurchaseLabel":{"id":"oneTimePurchaseLabel","label":"One-Time Purchase label","type":"text","value":"One-Time Purchase"},"subscribeAndSaveLabel":{"id":"subscribeAndSaveLabel","label":"Subscribe and Save label","type":"text","value":"Subscribe and Save"},"noSubscriptionFoundLabel":{"id":"noSubscriptionFoundLabel","label":"No Subscription plans found label","type":"text","value":"Oops! No Subscription plans were found"},"deliveryFrequencyLabel":{"id":"deliveryFrequencyLabel","label":"Delivery Frequency Label","type":"text","value":"Delivery Frequency"},"createNewBoxLabel":{"id":"createNewBoxLabel","label":"Create New Box Label","type":"text","value":"Create new Box"},"editButtonText":{"id":"editButtonText","label":"Edit Label","type":"text","value":"შეცვლა"},"deliverySchedulerPlaceholderText":{"id":"deliverySchedulerPlaceholderText","label":"Delivery Scheduler Placeholder Text","type":"text","value":"Select a date"}},"discountRules":{"rule1":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule2":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 100"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 15 off"}},"rule3":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 150"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 30 off"}},"rule4":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 200"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 50 off"}},"rule5":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule6":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule7":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule8":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule9":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule10":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}}},"sortBy":{"sortLabel":{"id":"sortLabel","label":"Sort Label","type":"text","value":"Sort"},"alphabeticalAToZ":{"id":"alphabeticalAToZ","label":"Alphabetical, A-Z Label","value":"Alphabetical, A-Z"},"alphabeticalZToA":{"id":"alphabeticalZToA","label":"Alphabetical, Z-A Label","value":"Alphabetical, Z-A"},"priceHighToLow":{"id":"priceHighToLow","label":"Price, High to Low Label","value":"Price, High to Low"},"priceLowToHigh":{"id":"priceLowToHigh","label":"Price, Low to High Label","value":"Price, Low to High"},"featured":{"id":"featured","label":"Featured Label","type":"text","value":"Featured"}},"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products worth at least {{conditionAmount}} on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of {{conditionAmount}} on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth {{conditionAmount}} on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ {{conditionQuantity}} პროდუქტი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of {{conditionQuantity}} products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"დაამატე კალათაში ზუსტად {{conditionQuantity}} პროდუქტი"}},"weight":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products weighing at least {{conditionWeight}} on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products weighing maximum of {{conditionWeight}} on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products weighing {{conditionWeight}} on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"filtersLabel":{"id":"filtersLabel","label":"Filters Label","type":"text","value":"Filters"},"clearSelection":{"id":"clearSelection","label":"Clear Filters Selection","type":"text","value":"Clear Selection"},"searchLabel":{"id":"searchLabel","label":"Search Label","type":"text","value":"Search"},"addToBoxButtonText":{"id":"addToBoxButtonText","label":"Add To Box Button","type":"text","value":"დამატება"},"chooseOptionsButtonText":{"id":"chooseOptionsButtonText","label":"Choose Options Button","type":"text","value":"არჩევა"},"loadMoreProductsButtonText":{"id":"loadMoreProductsButtonText","label":"Load More Products Button","type":"text","value":"Load More Products"},"loadingCheckoutButtonText":{"id":"loadingCheckoutButtonText","label":"Loading Checkout Button","type":"text","value":"Loading Checkout..."},"addedText":{"id":"addedText","label":"Added Label","type":"text","value":"დამატებულია"},"addButtonText":{"id":"addButtonText","label":"Add Button Text","type":"text","value":"დამატება"},"nextButtonText":{"id":"nextButtonText","label":"Next Button Text","type":"text","value":"შემდეგი"},"addToCartButtonText":{"id":"addToCartButtonText","label":"Add To Cart Button Text","type":"text","value":"კალათაში დამატება"},"backButtonText":{"id":"backButtonText","label":"Back Button Text","type":"text","value":"უკან"},"checkoutButtonText":{"id":"checkoutButtonText","label":"Checkout Button Text","type":"text","value":"ყიდვა"},"removeButtonText":{"id":"removeButtonText","label":"Remove Button Text","type":"text","value":"წაშლა"},"reviewButtonText":{"id":"reviewButtonText","label":"Review Button Text","type":"text","value":"Review"},"combinationNotAvailable":{"id":"combinationNotAvailable","label":"Combination Not Available","type":"text","value":"Combination Not Available"},"quantity":{"id":"quantity","label":"Quantity Label","type":"text","value":"რაოდენობა"},"inventoryInStockText":{"id":"inventoryInStockText","label":"Inventory in Stock Label","type":"text","value":"მარაგშია"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"viewCartProductsLabel":{"id":"viewCartProductsLabel","label":"View Cart Products Label","type":"text","value":"View Selected Products"},"selectedProductsLabel":{"id":"selectedProductsLabel","label":"Selected Products Label","type":"text","value":"Selected Products"},"selectBundleProductsText":{"id":"selectBundleProductsText","label":"Select Bundle Products label","type":"text","value":"Select Bundle Products"},"redirectingText":{"id":"redirectingText","label":"Redirecting label","type":"text","value":"Redirecting..."},"preparingBundleText":{"id":"preparingBundleText","label":"Preparing Bundle Label","type":"text","value":"იტვირთება..."},"productsNotAvailableText":{"id":"productsNotAvailableText","label":"Products Not Available Label","type":"text","value":"Oops! Some Products are not available"},"discountsMayNotApplyText":{"id":"discountsMayNotApplyText","label":"Discounts may not be applied Label","type":"text","value":"discounts may not be applied"},"removeAllBoxProducts":{"id":"removeAllBoxProducts","label":"Remove all Box Products Label (Cart Page Popup)","type":"text","value":"This is a Box Product. Removing this will remove all the products from box"},"cartPageCheckoutButtonLoadingText":{"id":"cartPageCheckoutButtonLoadingText","label":"Cart Page Checkout Button Loading Text","type":"text","value":"იტვირთება..."},"boxSelectionEligibilityToast":{"id":"boxSelectionEligibilityToast","label":"Box Selection Eligibility Toast","type":"text","value":"Remove {{boxSelectionDifference}} item(s) to select this box"},"removeFooterProductFrom":{"id":"removeFooterProductFrom","label":"Remove Product from Footer Text","type":"text","value":"Remove This Product From {{stepName}}"},"discountRibbonSuffix":{"id":"discountRibbonSuffix","label":"Discount Badge Suffix","type":"text","value":"off"},"itemsInCartLabel":{"id":"itemsInCartLabel","label":"Cart Inclusion Title","type":"text","value":"item(s)"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added"}},"multipleCategoriesPage":{"multipleCategoriesSubtext":{"id":"multipleCategoriesSubtext","label":"Multiple Categories Page Subtext","type":"text","value":""}},"multipleCategories":{},"addons":{"maxAddonProductsAllowed":{"id":"maxAddonProductsAllowed","label":"Max Addon Products Allowed message","type":"text","value":"Add a maximum of {{maxAllowedAddons}} addon products on this step"},"addonProductsMandatory":{"id":"addonProductsMandatory","label":"Addon Products Mandatory message","type":"text","value":"Addon product is mandatory on this step"}},"modals":{"clearCart":{"title":{"id":"title","label":"Modal - Title","type":"text","value":"Are you sure?"},"description":{"id":"description","label":"Modal - Description","type":"text","value":"Are you sure you want to clear all items from your cart? This action cannot be undone..."},"triggerButtonText":{"id":"triggerButtonText","label":"Clear Cart Button Text","type":"text","value":"Clear"},"cancelButtonText":{"id":"cancelButtonText","label":"Modal - Cancel Button Text","type":"text","value":"Cancel"},"confirmButtonText":{"id":"confirmButtonText","label":"Modal - Confirm Button Text","type":"text","value":"Clear Cart"}}}}},"pageCustomizationData":{"_id":"680d687eef5b7ebae4967e6c","shopName":"meama-georgia.myshopify.com","__v":0,"banners":{"landingPageImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/landing_page_bannerv2.png","pageBannerImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/page_banner_temp.png","productReviewImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/landing_page_bannerv2.png"},"cartFooter":{"cartFooterBgColor":"#ffffff","cartFooterButtonsContainerBgColor":"#ffffff","cartFooterBorderRadius":"0px","cartFooterProductImageBorderRadius":"0px","cartFooterButtonsContainerBorderRadius":"9px","cartFooterShowHidePrices":"Show","cartFooterTextColor":"#000000","cartFooterDiscountedPriceColor":"#8D8D8D","cartFooterFinalPriceFontThickness":"Bold","cartFooterFinalPriceFontColor":"#000000","cartFooterStrikethroughPriceFontThickness":"Regular","cartFooterBackButtonColor":"#6d7175","cartFooterBackButtonTextColor":"#FFFFFF","cartFooterBackButtonBorderColor":"#000000","cartFooterBackButtonBorderThickness":"2px","cartFooterNextButtonTextColor":"#ffffff","cartFooterNextButtonColor":"#000000","cartFooterNextButtonBorderColor":"#000000","cartFooterNextButtonBorderThickness":"2px","cartFooterButtonsBorderRadius":"40px","cartFooterButtonsPadding":"10px","cartFooterDiscountProgressBarEmptyColor":"#C1E7C5","cartFooterDiscountProgressBarFilledColor":"#15A524","cartFooterDiscountTextVisibility":"Show","cartFooterDiscountTextColor":"#000000","cartFooterTotalLabelColor":"#000000"},"categoryBlock":{"categoryBgColor":"#f5f5f5"},"colors":{"disabledColor":"gray","primaryColor":"blue","productBox":"blue","secondaryColor":"aqua","textColor":"black"},"createdAt":"2025-04-26T23:13:02.086Z","generalSettings":{"bundleBgColor":"#ffffff","scrollBarColor":"#000000","productPageTitleColor":"#000000","productPageFontSize":"18px","bundleUpSellButtonBg":"#000000","bundleUpSellButtonBorderColor":"#000000","bundleUpsellTextColor":"#ffffff","conditionToastBgColor":"#000000","conditionToastTextColor":"#ffffff","iconColor":"#000000","iconBgColor":"#ffffff","iconTextColor":"#1d1d1b","applyNewPageCustomization":true},"landingPage":{"landingPageTextColor":"#000000","landingPageButtonBgColor":"#000000","landingPageButtonTextColor":"#ffffff"},"mixAndMatchData":{"executeScriptAfterAddToCart":"","redirectToCartEnabled":false,"redirectToCheckoutEnabled":false,"isExecuteCustomScriptAfterAddToCartEnabled":false,"executeDefaultSideCartUpdate":true,"sideCartSectionId":"","sideCartSectionSelector":"","cartPageItemsSelector":"","cartPageItemsSectionId":"","hideOutOfStockProducts":true,"isValidateInventoryEnabled":false,"sideCartOpenBtnSelector":"","executeCustomAfterPageLoad":"","customStyle":null,"showProductComparedAtPrice":false,"addBundleToCartOnDone":false,"renderSlotsBasedOnCondition":false,"renderFilledSlotsAsHorizontalStacked":false,"addToBundleOnProductCardClick":true},"navigationBanner":{"navigationBannerStepTextColor":"#000000","navigationBannerStepFontSize":"16px","navigationCheckColor":"#ffffff","navigationBannerStepCompletionColor":"#000000","navigationBannerStepCompletedBorderColor":"#000000","navigationBannerStepCompletedBorderWidth":"4px","navigationBannerStepIncompleteBgColor":"#FFFFFF","navigationBannerStepIncompleteBorderColor":"#cccccc","navigationBannerStepIncompleteBorderWidth":"4px","navigationBannerStepProgressBarFilledColor":"#1E1E1E","navigationBannerStepProgressBarEmptyColor":"#cccccc","tabsActiveBgColor":"#000000","tabsActiveTextColor":"#F6f6f6","tabsInactiveBgColor":"#FFFFFF","tabsInactiveTextColor":"#000000","tabsBorderColor":"#3c3c3c","tabsCornerRadius":"40px","navigationBannerTitleColor":"#ffffff","navigationBannerTextColor":"#ffffff","navigationBannerStepDoneColor":"#FFFFFF"},"previewPage":{"bannerTextColor":"#ffffff"},"primaryFont":"Noto Serif Georgian","productCard":{"productCardBgColor":"#ffffff","cardBorderRadius":"22px","cardImageBorderRadius":"20px","productImageFit":"cover","cardsPerRowXL":5,"cardsPerRowL":5,"productCardTextColor":"#252525","productTitleFontSize":"20px","productTitleFontWeight":"Bold","productPriceVisibility":"Show","compareAtPriceColor":"#8D8D8D","compareAtPriceFontSize":"13px","compareAtPriceFontWeight":"Bold","compareAtPriceVisibility":"Show","finalPriceFontSize":"16px","finalPriceFontColor":"#252525","finalPriceFontWeight":"Bold","productCardButtonColor":"#000000","productCardButtonTextColor":"#ffffff","buttonBorderRadius":"40px","quantitySelectorTextColor":"#000000","allowOnlyOneQuantity":false,"quantitySelectorBgColor":"#000000","productCardQuantitySelectorBgColor":"#ffffff","quantitySelectorButtonTextColor":"#FFFFFF","quantitySelectorButtonBorderRadius":"40px"},"quickSettings":{"isQuickSettingsEnabled":true,"colors":{"primaryColor":"#000000","buttonBgColor":"#000000","buttonTextColor":"#ffffff"}},"summaryBlock":{"summaryBlockAddToCartButtonColor":"#000000","summaryBlockAddToCartButtonTextColor":"#ffffff","summaryBlockBackButtonColor":"#252525","summaryBlockBackButtonTextColor":"#ffffff","summaryBuildNewBoxButtonColor":"#6d7175","summaryBuildNewBoxTextColor":"#ffffff"},"updatedAt":"2026-02-03T11:49:25.111Z","templateLevelConfig":{},"mixAndMatchConfig":{"productCard":{"productCardBgColor":"#FFFFFF","productCardBorderRadius":"12px","productCardImageBorderRadius":"5px","productCardImageFit":"cover","productCardTitleColor":"#1E1E1E","productCardTitleFont":"16px","productCardTitleWeight":"Bold","productCardTitleVisibility":"Show","productCardPriceColor":"#000000","productCardPriceFont":"16px","productCardPriceWeight":"Bold","productCardPriceVisibility":"Show","productCardComparedAtPriceColor":"#ABABAB","productCardComparedAtPriceFont":"12px","productCardComparedAtPriceWeight":"Regular","productCardComparedAtPriceVisibility":"Hide","productCardButtonBgColor":"#000000","productCardButtonTextColor":"#FFFFFF","productCardButtonBorderRadius":"5px","productCardQuantityButtonBorderRadius":"5px","productCardQuantityLabelColor":"#000000","productCardQuantityBgColor":"#EEEEEE","productCardQuantityBorderRadius":"6px","productCardVariantSelectorBgColor":"#FFFFFF","productCardVariantSelectorTextColor":"#000000","productCardVariantSelectorBorderRadius":"5px"},"emptyStateCard":{"emptyStateCardBgColor":"#FFFFFF","emptyStateCardBorderColor":"#000","emptyStateCardIconColor":"#000","emptyStateCardTextColor":"#3E3E3E","emptyStateCardBorderStyle":"Dashed"},"drawer":{"drawerBgColor":"#F4F9F9","drawerBorderRadius":"15px 15px 0 0","drawerCloseIconColor":"#303030","drawerScrollBarColor":"#555555","drawerOverlayBgColor":"#1E1E1E80","drawerCloseIconBgColor":"#D4D4D4"},"tabs":{"tabsActiveBgColor":"#1E1E1E","tabsActiveTextColor":"#FFFFFF","tabsInactiveBgColor":"#F4F9F9","tabsInactiveTextColor":"#1E1E1E","tabsBorderRadius":"8px"},"bundleHeader":{"headerConditionTextColor":"#000000","headerConditionTextFont":"24px","headerDiscountTextColor":"#444","headerDiscountTextFont":"16px"},"toast":{"toastBgColor":"#1E1E1EE6","toastTextColor":"#FFF"},"footer":{"footerBgColor":"#1E1E1ECC","footerTotalPriceAndQuantityPillBgColor":"#FFF","footerBorderRadius":"15px","footerTotalPriceAndQuantityPillBorderRadius":"16px","footerPriceSectionVisibility":"Show","footerFinalPriceColor":"#000","footerStrikeThroughPriceColor":"#000","footerBackBtnBgColor":"#FFF","footerBackBtnTextColor":"#000","footerNextBtnBgColor":"#FFF","footerNextBtnTextColor":"#000","footerButtonsBorderRadius":"10px"},"addBundleBtn":{"addBundleBtnBgColor":"#000000","addBundleBtnBorderRadius":"5px","addBundleBtnTextColor":"#ffffff"}}},"bundleLinkData":[{"_id":"68208fb18a1b8261c88cb5bd","bundleId":"4","bundleName":"იყიდე მეტი - დაზოგე მეტი","createdAt":"2025-05-11T11:53:21.159Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"},{"collectionId":331047665856,"collectionName":"ესპრესო \u0026 ლუნგო"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},{"_id":"68ffb870d24134e53a4c2656","bundleId":"43","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Multicapsule Machine + 5 Boxes - 399 Gel","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-10-27T18:22:39.613Z","productsForBundleLink":[]},{"_id":"68ffba09d24134e53a4c2e9b","bundleId":"44","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Versatile + 5 Boxes 799₾","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-10-27T18:29:28.895Z","productsForBundleLink":[]},{"_id":"690dba3db44c31dc5c5fa18a","bundleId":"45","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Versatile + 2 box (12 capsules) + cup + holder","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-11-07T09:22:04.542Z","productsForBundleLink":[]},{"_id":"690dc22db44c31dc5c5fbf2b","bundleId":"46","bundleName":"Multi + 1 Box + cup + holder","createdAt":"2025-11-07T09:55:57.794Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},{"_id":"690dc5a3b44c31dc5c5fcd16","bundleId":"47","bundleName":"espresso + 1 box + holder","createdAt":"2025-11-07T10:10:42.897Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},{"_id":"692c8265c92c3c465bdf0b13","bundleId":"48","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"vers+boxes","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-11-30T17:44:04.171Z","productsForBundleLink":[]},{"_id":"692c9bd2c92c3c465be0b6a1","bundleId":"49","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"mult+boxes","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-11-30T19:32:33.856Z","productsForBundleLink":[]},{"_id":"692d5d4fc92c3c465bea61bb","bundleId":"50","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"winter-offer","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-01T09:18:06.690Z","productsForBundleLink":[]},{"_id":"6931383dc92c3c465b0f32a5","bundleId":"51","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleName":"OLD MIX","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":331047665856,"collectionName":"ესპრესო \u0026 ლუნგო"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-04T07:29:00.138Z","productsForBundleLink":[]},{"_id":"693722e87a55abc08ae8b2d0","bundleId":"53","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Cappuccino time ","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-08T19:11:35.896Z","productsForBundleLink":[]},{"_id":"693c30297a55abc08a09d180","bundleId":"54","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"test","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-12T15:09:29.858Z","productsForBundleLink":[]},{"_id":"693d30127a55abc08a10c0bc","bundleId":"55","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Overstock_discount","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-13T09:21:21.468Z","productsForBundleLink":[]},{"_id":"696a71feb12ae3d57a2f5979","bundleId":"57","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleName":"Multicapsule Offer","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-16T17:14:38.147Z","productsForBundleLink":[]},{"_id":"696aa69eb12ae3d57a3072bb","bundleId":"58","bundleName":"multioffer20","createdAt":"2026-01-16T20:59:09.101Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},{"_id":"69789af1652a72d0068d2a23","bundleId":"59","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"6 Multi - 89","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-27T11:01:04.758Z","productsForBundleLink":[]},{"_id":"6978a045652a72d0068d3be1","bundleId":"60","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"7-espreso-89","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-27T11:23:48.823Z","productsForBundleLink":[]},{"_id":"69790683652a72d0068f3c96","bundleId":"61","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Versatile + 12 Boxes 599₾","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-27T18:40:03.472Z","productsForBundleLink":[]},{"_id":"69791112652a72d0068f73fa","bundleId":"62","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Multicapsule Machine + 6 Boxes - 249 Gel","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-27T19:25:06.116Z","productsForBundleLink":[]},{"_id":"697b00fcc99b2b0731e71a47","bundleId":"63","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"6 multi + metal cup 115","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-29T06:41:00.587Z","productsForBundleLink":[]},{"_id":"697b1087c99b2b0731e7524d","bundleId":"64","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"7 espresso + metal cup 115","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-29T07:47:19.280Z","productsForBundleLink":[]},{"_id":"697c567cc99b2b0731f086d6","bundleId":"66","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleName":"Milk Frother + 7 Multicapsule Boxes - 159 Gel","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-30T06:58:03.596Z","productsForBundleLink":[]},{"_id":"697c6131c99b2b0731f0b0e8","bundleId":"67","bundleName":"espresso machine + 7 Box 349","createdAt":"2026-01-30T07:43:45.936Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1757150701058.png","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},{"_id":"697db711c99b2b0731f70ec4","bundleId":"68","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"6 ukofeino - 89","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-31T08:02:24.946Z","productsForBundleLink":[]},{"_id":"6980504dc99b2b073108a3a2","bundleId":"69","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"kids-drinks","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-02-02T07:20:45.766Z","productsForBundleLink":[]},{"_id":"69805160c99b2b073108a77a","bundleId":"70","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"strong drinks","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-02-02T07:25:20.734Z","productsForBundleLink":[]},{"_id":"69806034c99b2b073108e1d0","bundleId":"71","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"Winter Drinks offer","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-02-02T08:28:36.260Z","productsForBundleLink":[]},{"_id":"6981cd14c99b2b07310f95af","bundleId":"72","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1756485439188.png","bundleName":"gamajansagebeli sasmelebi","bundleUpsellConfig":{"isEnabled":false,"showOnAllBundleProducts":true,"showOnSpecificProductPages":[],"showOnSpecificCollectionPages":[],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-02-03T10:25:24.565Z","productsForBundleLink":[]},{"_id":"6981df73c99b2b07310fd7ae","bundleId":"73","bundleName":"6 ფერის ნაკრები პატარა ჭიქა = 89 ლარი","createdAt":"2026-02-03T11:43:47.505Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/default_bundle_image.jpg"},{"_id":"6981e354c99b2b07310fe6db","bundleId":"74","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/default_bundle_image.jpg","bundleName":"6 ფერის ნაკრები დიდი ჭიქა = 119 ლარი","createdAt":"2026-02-03T12:00:20.044Z"},{"_id":"6981ee1cc99b2b0731101096","bundleId":"75","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/default_bundle_image.jpg","bundleName":"0.5 კგ. მოხალული მარცვალი + 2 დიდი თეთრი ჭიქა = 49 ლ","createdAt":"2026-02-03T12:46:20.113Z"},{"_id":"6981f0bdc99b2b0731101ba8","bundleId":"76","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/default_bundle_image.jpg","bundleName":"1 კგ. მოხალული მარცვალი + 2 დიდი თეთრი ჭიქა = 89 ლ","createdAt":"2026-02-03T12:57:33.561Z"},{"_id":"6981f1a3c99b2b0731101fa9","bundleId":"77","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/default_bundle_image.jpg","bundleName":"5 თურქული ყავა + 2 გამჭ ჭიქა = 49 ლარი","createdAt":"2026-02-03T13:01:23.379Z"}],"bundleUpsellData":{"4":{"_id":"68208fb18a1b8261c88cb5bd","bundleId":"4","bundleName":"იყიდე მეტი - დაზოგე მეტი","createdAt":"2025-05-11T11:53:21.159Z","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"},{"collectionId":331047665856,"collectionName":"ესპრესო \u0026 ლუნგო"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"productsForBundleLink":[]},"51":{"_id":"6931383dc92c3c465b0f32a5","bundleId":"51","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleName":"OLD MIX","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":331047665856,"collectionName":"ესპრესო \u0026 ლუნგო"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2025-12-04T07:29:00.138Z","productsForBundleLink":[]},"57":{"_id":"696a71feb12ae3d57a2f5979","bundleId":"57","bundleImg":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747111685676.png","bundleName":"Multicapsule Offer","bundleUpsellConfig":{"isEnabled":true,"showOnAllBundleProducts":true,"selectedProducts":[],"showOnSpecificProductPages":[],"collectionsSelectedData":[],"showOnSpecificCollectionPages":[{"collectionId":331244667072,"collectionName":"ფილტრის ყავა"},{"collectionId":331048091840,"collectionName":"ჩაი \u0026 ნაყენი"},{"collectionId":340783169728,"collectionName":"საბავშვო სასმელები"},{"collectionId":340789461184,"collectionName":"გამაჯანსაღებელი სასმელები"}],"bundleWidgetText":"იყიდე მეტი - დაზოგე მეტი","bundleWidgetRedirectText":"Redirecting","useLinkProductAsDefaultProduct":false,"widgetConfiguration":{"title":"იყიდე მეტი - დაზოგე მეტი","description":"შექმენი შენი ნაკრები","buttonText":"დაზოგე 50₾","imageUrl":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1747129840298.png"},"widgetType":"OFFER_WIDGET","multiLangText":{"ru":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Купи больше — сэкономь больше","description":"Создай свой набор","buttonText":"Сэкономь 50₾"}},"de":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Kaufe mehr – spare mehr","description":"Stell dir dein Set zusammen","buttonText":"Spare 50₾"}},"tr":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Daha fazla al – daha fazla tasarruf et","description":"Kendi setini oluştur","buttonText":"50₾ tasarruf et"}},"en":{"bundleWidgetText":"Save More With Bundle","bundleWidgetRedirectText":"Redirecting","widgetConfiguration":{"title":"Buy more – save more","description":"Create your set","buttonText":"Save 50₾"}}},"languageMode":"MULTIPLE"},"createdAt":"2026-01-16T17:14:38.147Z","productsForBundleLink":[]}},"mixAndMatchData":[]};
if (ext_data && !ext_data?.errorMsg) {
window.easybundles_ext_data = ext_data;
}
let full_page_ext_data = {"userData":{"_id":"680d687def5b7ebae4967db7","shopName":"meama-georgia.myshopify.com","brandName":"Meama","bundleSettings":{"allowMultipleBoxesFromSameBundle":false,"showCompareAtPrice":true,"dontIndexGiftboxBuilderPages_onGoogle":false,"isValidateInventoryEnabled":true,"calculateAutomaticDiscountInPercentage":true,"combineWithOrderDiscounts":false,"isDiscountMethodAutomatic":false,"removeUnUsedVariantImages":false},"counters":{"reviewModal":100,"themeExtensionModal":5,"instructionsModalCnt":1,"viewBundleModalCnt":0,"createBundleModalCnt":1,"chatMigratedModalCnt":0},"countryCode":"GE","countryName":"Georgia","createdAt":"2025-04-26T23:13:01.759Z","currency":"GEL","currencyInfo":{"code":"GEL","symbol":"GEL","thousandsSeparator":" ","decimalSeparator":",","symbolOnLeft":false,"spaceBetweenAmountAndSymbol":true,"decimalDigits":2},"customSettings":{"initialModalPopupCnt":0,"disableCartSettings":false,"addToCartBtnSelectors":"","checkoutBtnSelectors":"","customStyle":".gbbProductActionContainer,\n.gbbProductItemPricesContainer,\n.gbbProductButtonWrapper {\n grid-template-rows: none !important;\n}","addAfterAddTocartBtn":false,"addAftercheckoutBtn":false,"disableApp":false,"loadingGif":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1746970032709.gif","stackDiscounts":true,"showOnlyAdminSelectedVariants":true,"overWriteCheckoutBtn":false,"addGiftMessageToNote":true,"enableStoreFrontGQLAPI":true,"bundleCartRepresentationObj":{"type":"OVERWRITE_LINE_ITEM","overwriteLineItemObj":{"renderItemsNameAsProperty":true,"renderItemsNameVirtually":false,"renderItemNameCustomized":false,"renderOfferIdVirtually":false,"renderBoxIdVirtually":false,"isEnabledForThirdPartyCheckout":false}},"buyNowBtn":"","cartItemQuantityBtnSelectors":"","cartItemRemoveParentSelectors":"","cartItemRemoveSelectors":"","cartItemSelectors":"","checkIfShowBundleAsProductEnabled":false,"customBundleScript":"\n\n\ndocument.addEventListener('gbb-cart-update', function() {\n if (gbb.state.giftBoxCartData.item_count \u003e= 5) {\n document.querySelector('.gbbPageBody').classList.add('add-custom-discount-text');\n } else {\n document.querySelector('.gbbPageBody').classList.remove('add-custom-discount-text');\n }\n});\ngbb.gbbDiscountComponent.f.replaceDiscountVariables = function (message, nextDiscountRule) {\n if (nextDiscountRule) {\n let boxCartData = gbb.gbbBrowser.getRelevantBoxDataFromSessionStorage();\n let discountConditionDiff;\n let discountUnit;\n let discountValue;\n let currentCartValue;\n let discountValueUnit;\n let currentDiscountMode = gbb.settings.discountsData.discountMode;\n if (gbb.settings.discountsData.isKiteDiscountMessagingEnabled){\n currentDiscountMode = gbb.settings.discountsData.kiteDiscountMessaging.discountMode\n }\n if (nextDiscountRule.type == \"amount\") {\n currentCartValue = parseFloat(boxCartData?.total_price \/ 100).toFixed(2);\n \/\/ currentCartValue = Math.round(currentCartValue);\n discountUnit = gbb.utility.getCurrencySymbol();\n \/\/ let activeCurrencyRate = gbb.utility.getActiveCurrencyRate();\n \/\/ currentCartValue = currentCartValue \/ activeCurrencyRate;\n } else if (nextDiscountRule.type == \"quantity\") {\n \/\/ currentCartValue = boxCartData.item_count || 0;\n let cartValue = JSON.parse(JSON.stringify(boxCartData.items));\n \/\/find cart item only that have more than 0 price\n cartValue = boxCartData.items.filter(item =\u003e item.price \u003e 0);\n \/\/\n \/\/ get me cartValue, boxCartData\n currentCartValue = 0;\n cartValue.forEach(item =\u003e {\n currentCartValue = currentCartValue + item.quantity;\n })\n discountUnit = \" product(s)\";\n if (parseInt(currentCartValue) \u003e= parseInt(nextDiscountRule.value)) {\n return \"\";\n }\n }\n if (currentDiscountMode == \"FIXED_BUNDLE_PRICE\") {\n discountUnit = \" product(s)\";\n discountValueUnit = gbb.utility.getCurrencySymbol();\n \/\/ discountValueUnit = gbb.utility.getStoreCurrencySymbol();\n }\n let isDiscountFromKiteAndPercentage = false;\n let isDiscountFromKiteAndFixed = false;\n if (gbb.settings.discountsData.isKiteIntegrationEnabled) {\n const discounts = gbb.settings.gbbKiteData?.discounts;\n if (discounts \u0026\u0026 discounts.length \u003e 0) {\n const fixedDiscountsType = [\"FIXED_TOTAL\", \"FIXED_DIS\"];\n const percentageDiscountsType = [\"PERCENTAGE_DIS\"];\n if (fixedDiscountsType.includes(discounts[0].disValueType)) {\n isDiscountFromKiteAndFixed = true;\n } else if (percentageDiscountsType.includes(discounts[0].disValueType)) {\n isDiscountFromKiteAndPercentage = true;\n }\n }\n }\n if (currentDiscountMode == \"FIXED\" || isDiscountFromKiteAndFixed) {\n discountValueUnit = gbb.utility.getCurrencySymbol();\n \/\/ discountValueUnit = gbb.utility.getStoreCurrencySymbol();\n } else if (currentDiscountMode == \"PERCENTAGE\" || isDiscountFromKiteAndPercentage) {\n discountValueUnit = \"%\"\n }\n discountConditionDiff = Math.round(nextDiscountRule.value) - Math.round(currentCartValue);\n if (discountConditionDiff \u003c 1 || true ){\n discountConditionDiff = parseFloat(nextDiscountRule.value) - parseFloat(currentCartValue)\n discountConditionDiff = parseFloat(discountConditionDiff).toFixed(2)\n }\n \/\/include item that was just added\n discountValue = nextDiscountRule.discountValue;\n let variableValues = {\n discountConditionDiff,\n discountUnit,\n discountValue,\n discountValueUnit\n }\n let variables;\n if (currentDiscountMode == \"PERCENTAGE\") {\n variables = [\"discountConditionDiff\", \"discountUnit\", \"discountValue\", \"discountValueUnit\"]\n } else {\n variables = [\"discountConditionDiff\", \"discountUnit\", \"discountValueUnit\", \"discountValue\"]\n }\n for (let i = 0; i \u003c variables.length; i++) {\n let VariableName = \"##\" + variables[i] + \"##\";\n let value = variableValues[variables[i]];\n message = message.replace(new RegExp(`${VariableName}`, 'g'), value);\n }\n } else {\n message = \"\";\n }\n return message;\n }","customCartIntegrationScript":"","customStyleForBuilderPages":".gbbProductsCardLayoutV2 .gbbProductItem {\n padding: 0px 0px 8px 0px !important;\nborder: 1px solid #EEEEEE;\n}\n.gbbProductButtonWrapper{\nmargin: 10px !important;\n}\n .gbbProductImageContainer {\n border-radius: 20px 20px 0px 0px !important;\n}\n .gbbProductImageContainerImg {\n max-height: 100% !important;\n }\n .gbbProductItem {\n grid-template-rows: 2fr 0.4fr 0.6fr !important;\n }\n@media only screen and (max-width: 768px) {\n .gbbMultipleCategoriesRibbonContainer {\n display: flex;\n }\n .gbbMultipleCategoriesDropdownContainer {\n display: none;\n }\n}\n.gbbProductsFooterHTML, .gbbAddProductsPageFooterHTML, .gbbPersonalizePageFooterHTML {\n z-index: 10 !important;\n}\n.gbbProductImageContainer{\npointer-events: none !important;\n}\n@media (min-width: 1024px) {\n .gbbProductItemPrice {\n padding-bottom: 10px !important;\n}\n .gbbProductItemPrice ~ .gbbProductQuantityHTML {\n margin-bottom: 16px !important;\n }\n}\n\n@media screen and (max-width: 767px) {\n .gbbAddProductsPageFooterHTML {\n z-index: 999 !important;\n }\n}\n\n.gbbAddonProductsWrapper{\n .gbbProductItem {\n grid-template-rows: 3fr .3fr .2fr .3fr !important;\n }\n .gbbProductItem .gbbProductDynamicContentContainer {\n display: block;\n}\n.gbb-addons-product-stock {\n text-align: center;\n}\n}\n.gbbProductDynamicContentContainer{\n display:none;\n}\n\n.gbbHTMLWrapper {\n font-family: 'Noto Serif Georgian', serif !important;\n}\n\n.gbbFooterBackButton.gbbDisabled {\n display: none !important;\n}\n\n\n\n","customStyleForDummyProductPage":"","customThemeIntegrationScript":"","enableCustomThemeIntegrationScript":false,"integrations":{"judgeme":{"isEnabled":false,"public_token":""}},"isCartIntegrationEnabled":false,"loadingBgColor":"#ffffff","preparingBundleGif":"https:\/\/d3ks0ngva6go34.cloudfront.net\/giftBox\/meama-georgia.myshopify.com\/1746970035577.gif","redirectToCartEnabled":false,"redirectToCheckoutEnabled":true,"redirectToScript":"","redirectUrlForCheckoutBtn":"","selectorToRenderBundlePostionOnCart":"Over","selectorToRenderBundlePostionOnSideCart":"Over","selectorToRenderBundleProduct":"","selectorToRenderBundleProductOnSideCart":"","sideCartCheckoutBtnSelectors":"","dynamicScriptForHTMLContent":"dynamicScriptForHTMLContent(productData);\nfunction dynamicScriptForHTMLContent(productData) {\n let inStockLabel = gbb.utility.renderLanguageValue(gbb?.settings?.languageData?.general?.inventoryInStockText) || \"in Stock\"\n let firstVariantStock = productData.variants[0].quantityAvailable || 0;\n const isMultiVariant = productData.renderChooseOptionsButton_forcefully == true || productData.variants?.length \u003e 1 \u0026\u0026 productData.available == true\n let productStock = firstVariantStock || productData.quantityAvailable || 0;\n if (isMultiVariant) {\n let variantProductFromCart = gbb.utility.getTheVariantProductPresentInCart(productData);\n if (variantProductFromCart) {\n productStock = variantProductFromCart.quantityAvailable || 0;\n }\n }\n return gbb.$('\u003cdiv\u003e', { class: 'gbb-addons-product-stock', text: `${productStock} ${inStockLabel}` })\n}","optimizeFullPageBundleSpeed":true},"isAffiliate":false,"isAppFree":false,"isSubscription":{"id":28486205632,"name":"Essential_49_EasyBundle_Monthly","price":"49.00","billing_on":"2025-05-12","status":"active","created_at":"2025-04-27T03:59:57+04:00","updated_at":"2025-04-27T04:00:41+04:00","activated_on":"2025-04-27","return_url":"https:\/\/meama-georgia.myshopify.com\/admin\/apps\/10b4272bede142b02924feec498b4009","test":false,"cancelled_on":null,"trial_days":15,"trial_ends_on":"2025-05-12","api_client_id":3918921729,"decorated_return_url":"https:\/\/meama-georgia.myshopify.com\/admin\/apps\/10b4272bede142b02924feec498b4009?charge_id=28486205632","capped_amount":"399.00","balance_used":"0.0","balance_remaining":"399.00","risk_level":0,"currency":"USD"},"multipleCurrenciesInfo":{"GEL":{"code":"GEL","symbol":"₾","thousandsSeparator":" ","decimalSeparator":",","symbolOnLeft":false,"spaceBetweenAmountAndSymbol":true,"decimalDigits":2}},"otherInfo":[],"planId":"","shopDomain":"www.meama.ge","status":"1","storefrontAccessToken":"3626f3192972d1de3dd9cf1a8fd8e934","timezone":"","updatedAt":"2026-02-03T19:41:01.550Z","isAppLevelMetafieldCreated":true,"mantleApiToken":"878811c11dae4d0a2ae0a6e568e520ac98b73c77f5e7810d795f373dacfff8425010f8ee87b96c306020b7eabdb043b5","trackEvents":{"OB Welcome page visited":true,"OB Pricing Accepted":true},"lastVisitTime":"2026-02-03T14:19:22.298Z","loginData":{"lastLoggedInAt":"2026-02-03T14:19:22.313Z"},"isAppLevelMetafieldForFullPageBundlesCreated":true,"videoPage":{"backgroundColor":"#ffffff","logoImg":"https:\/\/db07ji0eqime4.cloudfront.net\/redeemPage\/giftcard\/default-no-logo.jpg"},"totalBundleRevenue":350834.22340002033,"totalOrdersCount":6434,"reviewData":{"lastShownAt":"2025-08-14T12:16:51.717Z"},"pageId":"1e17013d-07a4-81ec-8aa1-f44779b1274f","orderSummary":{"last30Days":{"totalOrderValue":127770.93,"totalOrderValueUSD":48954.37,"totalBundlesValue":125951.7,"totalBundlesValueUSD":48257.36,"totalBundlesSold":907,"totalOrderCount":901,"dateRange":{"from":"2026-01-04T00:00:00.000Z","to":"2026-02-03T00:00:00.000Z"},"lastUpdatedAt":"2026-02-03T09:00:25.516Z"},"shopOrderDataBeforeInstall":{"previousMonthRevenue":null,"previousMonthRevenueUSD":0,"previousMonthOrderCount":0}},"crispCustomerUrl":"https:\/\/app.crisp.chat\/website\/b94f5216-4b9e-4f2f-a3d5-71bfbdb0487b\/inbox\/session_3cac187e-1a27-41e7-985a-d00005529941","mantleCustomerData":{"id":"7da7aad4-9317-41c9-b053-ec2d4ba3e014","customerId":"ff8c853d-35b7-411b-91b9-7a613b5d5cd4","name":"MEAMA","test":false,"preferredCurrency":"USD","shopify":{"id":"65216217280","myshopifyDomain":"meama-georgia.myshopify.com","planName":"Shopify Plus"},"apiId":"84f442a1-2d4a-4012-85da-b4a4b38fc795","profileUrl":"https:\/\/app.heymantle.com\/apps\/84f442a1-2d4a-4012-85da-b4a4b38fc795\/customers\/ff8c853d-35b7-411b-91b9-7a613b5d5cd4"},"cancelledOrderWebhookRegistered":"success","webhooksCount":5,"webhooksLastAttempted":"2025-10-04T09:15:07.946Z","webhooksRegistered":["orders\/cancelled","app\/uninstalled","orders\/create","app\/uninstalled","themes\/publish"],"reRegisterCron":"success","webhooksLastUpdated":"2025-10-04T10:52:19.852Z","migration4thOctober":"success","ordersToProcess":917,"ordersProcessed":917,"ordersProcessedTime":5.2781666666666665,"cancelledOrderCount":14,"cancelledOrderValue":844.7049000000001,"intercomContactId":"69789aac060fafc1d38aebd8","SERVER_URL":"https:\/\/prod.backend.giftbox.giftkart.app"},"languageData":{"_id":"680d687eef5b7ebae4967e6e","shopName":"meama-georgia.myshopify.com","__v":0,"createdAt":"2025-04-26T23:13:02.086Z","en":{"landingPage":{"bannerText":{"id":"bannerText","label":"Banner Text","type":"text","value":"Build your own Bundle in just a few clicks!"},"bannerSubtext":{"id":"bannerSubtext","label":"Banner Subtext","type":"text","value":"Send a custom bundle to your loved one in just a few steps"},"bannerButtonText":{"id":"bannerButtonText","label":"Banner Button Text","type":"text","value":"Start Building your Bundle"},"selectPreCuratedBoxLabel":{"id":"selectPreCuratedBoxLabel","label":"Select Pre-Curated Box Label","type":"text","value":"Or select from a range of pre-curated Gift Boxes"}},"navigationSteps":{"productPageStepText":{"id":"productPageStepText","label":"Product Page Step Text","type":"text","value":"Add Products"},"giftBoxStepText":{"id":"giftBoxStepText","label":"Bundle Step Text","type":"text","value":"Add Gift Box"},"personalizeStepText":{"id":"personalizeStepText","label":"Personalize Step Text","type":"text","value":"Personalize"},"multipleCategoriesStepText":{"id":"multipleCategoriesStepText","label":"Multiple Categories Step Text","type":"text","value":"Multiple Categories"}},"productPage":{"selectProductsLabel":{"id":"selectProductsLabel","label":"Select Products Label","type":"text","value":"Select Products"},"productPageSubtext":{"id":"productPageSubtext","label":"Product Page Subtext","type":"text","value":""}},"giftBoxPage":{"selectGiftBoxLabel":{"id":"selectGiftBoxLabel","label":"Select Bundle Label","type":"text","value":"Select a Bundle Box"},"giftBoxPageSubtext":{"id":"giftBoxPageSubtext","label":"Gift Box Page Subtext","type":"text","value":""}},"videoMessage":{"permissionDenied":{"id":"permissionDenied","label":"Permission Denied","type":"text","value":"Permission Denied"},"uploadConfirmation":{"id":"uploadConfirmation","label":"Upload Confirmation","type":"text","value":"Your video has been successfully uploaded!"},"pressToRecord":{"id":"pressToRecord","label":"Press to record","type":"text","value":"Press to record"},"recording":{"id":"recording","label":"Recording","type":"text","value":"Recording...."},"errorMessage":{"id":"errorMessage","label":"Error Message","type":"text","value":"An error occured, Please try again!"},"loading":{"id":"loading","label":"Loading","type":"text","value":"Loading...."},"uploading":{"id":"uploading","label":"Uploading","type":"text","value":"Uploading...."},"sendVideoMessageText":{"id":"sendVideoMessageText","label":"Send Video Message Text","type":"text","value":"Send Video Message"},"giftMessageDeliveryInfo":{"id":"giftMessageDeliveryInfo","label":"Message Delivery Info","type":"text","value":"The message will be sent to the recipient via email as soon as the order is placed"},"saveVideoText":{"id":"saveVideoText","label":"Save Video Text","type":"text","value":"Save Video"},"reRecordVideoText":{"id":"reRecordVideoText","label":"Re-Record Video Text","type":"text","value":"Re-Record Video"}},"personalizePage":{"messageLabel":{"id":"messageLabel","label":"Message Label","type":"text","value":"Message"},"senderNamePlaceholder":{"id":"senderNamePlaceholder","label":"Sender Name Placeholder","type":"text","value":"From"},"recipientNamePlaceholder":{"id":"recipientNamePlaceholder","label":"Recipient Name Placeholder","type":"text","value":"To"},"messagePlaceholder":{"id":"messagePlaceholder","label":"Message Placeholder","type":"text","value":"Enter a message here..."},"emailAddressLabel":{"id":"emailAddressLabel","label":"Recipient Email Address Label","type":"text","value":"Recipient Email Address"},"emailAddressPlaceholder":{"id":"emailAddressPlaceholder","label":"Recipient Email Address Placeholder","type":"text","value":"Enter a recipient email address here..."},"emailValidationMessage":{"id":"emailValidationMessage","label":"Email Validation Message","type":"text","value":"Please enter a valid email address"},"sendNow":{"id":"sendNow","label":"Send Now Label","type":"text","value":"Send Now"},"sendLater":{"id":"sendLater","label":"Send Later Label","type":"text","value":"Send Later"},"personalizePageSubtext":{"id":"personalizePageSubtext","label":"Personalize Page Subtext","type":"text","value":""},"messageIsRequiredError":{"id":"messageIsRequiredError","label":"Message is required warning","type":"text","value":"Please enter a message"}},"reviewPage":{"reviewPageBannerText":{"id":"reviewPageBannerText","label":"Review Page Banner Text","type":"text","value":"You’ve made the Right Choice!"},"reviewPageBannerSubtext":{"id":"reviewPageBannerSubtext","label":"Review Page Banner Subtext","type":"text","value":"Review your bundle and proceed to checkout"},"addOnsLabel":{"id":"addOnsLabel","label":"Add Ons Label","type":"text","value":"Add on"},"totalValueLabel":{"id":"totalValueLabel","label":"Total Value Label","type":"text","value":"Total"},"totalLabel":{"id":"totalLabel","label":"Total Label","type":"text","value":"Total"},"productLabel":{"id":"productLabel","label":"Product Header Label","type":"text","value":"Product"},"priceLabel":{"id":"priceLabel","label":"Price Header Text","type":"text","value":"Price"},"quantityLabel":{"id":"quantityLabel","label":"Quantity Header Text","type":"text","value":"Quantity"},"deliveryDateLabel":{"id":"deliveryDateLabel","label":"Delivery Date Label","type":"text","value":"Delivery Date"},"productsLabelText":{"id":"productsLabelText","label":"Products Label Text","type":"text","value":"Products"},"messagesLabelText":{"id":"messagesLabelText","label":"Messages Label Text","type":"text","value":"Messages"},"discountAppliedLabel":{"id":"discountAppliedLabel","label":"Discount Applied Label","type":"text","value":"Discount"},"subtotalLabel":{"id":"subtotalLabel","label":"Sub Total Label","type":"text","value":"Total"},"orderDetailsLabel":{"id":"orderDetailsLabel","label":"Order Details Label","type":"text","value":"Order Details"},"itemsLabel":{"id":"itemsLabel","label":"No. of Items Label","type":"text","value":"Products"},"oneTimePurchaseLabel":{"id":"oneTimePurchaseLabel","label":"One-Time Purchase label","type":"text","value":"One-Time Purchase"},"subscribeAndSaveLabel":{"id":"subscribeAndSaveLabel","label":"Subscribe and Save label","type":"text","value":"Subscribe and Save"},"noSubscriptionFoundLabel":{"id":"noSubscriptionFoundLabel","label":"No Subscription plans found label","type":"text","value":"Oops! No Subscription plans were found"},"deliveryFrequencyLabel":{"id":"deliveryFrequencyLabel","label":"Delivery Frequency Label","type":"text","value":"Delivery Frequency"},"createNewBoxLabel":{"id":"createNewBoxLabel","label":"Create New Box Label","type":"text","value":"Create new Box"},"editButtonText":{"id":"editButtonText","label":"Edit Label","type":"text","value":"Edit"},"deliverySchedulerPlaceholderText":{"id":"deliverySchedulerPlaceholderText","label":"Delivery Scheduler Placeholder Text","type":"text","value":"Select a date"}},"discountRules":{"rule1":{"amount":{"id":"amount","label":"Amount","type":"text","value":"2"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 49 off"}},"rule2":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule3":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule4":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule5":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule6":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule7":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule8":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule9":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule10":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}}},"sortBy":{"sortLabel":{"id":"sortLabel","label":"Sort Label","type":"text","value":"Sort"},"alphabeticalAToZ":{"id":"alphabeticalAToZ","label":"Alphabetical, A-Z Label","value":"Alphabetical, A-Z"},"alphabeticalZToA":{"id":"alphabeticalZToA","label":"Alphabetical, Z-A Label","value":"Alphabetical, Z-A"},"priceHighToLow":{"id":"priceHighToLow","label":"Price, High to Low Label","value":"Price, High to Low"},"priceLowToHigh":{"id":"priceLowToHigh","label":"Price, Low to High Label","value":"Price, Low to High"},"featured":{"id":"featured","label":"Featured Label","type":"text","value":"Featured"}},"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ ##conditionAmount## ღირებულების კოლოფი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of ##conditionAmount## on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth ##conditionAmount## on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ ##conditionQuantity## კოლოფი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of ##conditionQuantity## products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add exactly ##conditionQuantity## products on this step"}},"weight":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products weighing at least ##conditionWeight## on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products weighing maximum of ##conditionWeight## on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products weighing ##conditionWeight## on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"filtersLabel":{"id":"filtersLabel","label":"Filters Label","type":"text","value":"Filters"},"clearSelection":{"id":"clearSelection","label":"Clear Filters Selection","type":"text","value":"Clear Selection"},"searchLabel":{"id":"searchLabel","label":"Search Label","type":"text","value":"Search"},"addToBoxButtonText":{"id":"addToBoxButtonText","label":"Add To Box Button","type":"text","value":"Add"},"chooseOptionsButtonText":{"id":"chooseOptionsButtonText","label":"Choose Options Button","type":"text","value":"Choose"},"loadMoreProductsButtonText":{"id":"loadMoreProductsButtonText","label":"Load More Products Button","type":"text","value":"Load More Products"},"loadingCheckoutButtonText":{"id":"loadingCheckoutButtonText","label":"Loading Checkout Button","type":"text","value":"Loading Checkout..."},"addedText":{"id":"addedText","label":"Added Label","type":"text","value":"Added"},"addButtonText":{"id":"addButtonText","label":"Add Button Text","type":"text","value":"Add"},"nextButtonText":{"id":"nextButtonText","label":"Next Button Text","type":"text","value":"Next"},"addToCartButtonText":{"id":"addToCartButtonText","label":"Add To Cart Button Text","type":"text","value":"Add to cart"},"backButtonText":{"id":"backButtonText","label":"Back Button Text","type":"text","value":"Back"},"checkoutButtonText":{"id":"checkoutButtonText","label":"Checkout Button Text","type":"text","value":"Buy"},"removeButtonText":{"id":"removeButtonText","label":"Remove Button Text","type":"text","value":"Delete"},"reviewButtonText":{"id":"reviewButtonText","label":"Review Button Text","type":"text","value":"Review"},"combinationNotAvailable":{"id":"combinationNotAvailable","label":"Combination Not Available","type":"text","value":"Combination Not Available"},"quantity":{"id":"quantity","label":"Quantity Label","type":"text","value":"Quantity"},"inventoryInStockText":{"id":"inventoryInStockText","label":"Inventory in Stock Label","type":"text","value":"in Stock"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"viewCartProductsLabel":{"id":"viewCartProductsLabel","label":"View Cart Products Label","type":"text","value":"View Selected Products"},"selectedProductsLabel":{"id":"selectedProductsLabel","label":"Selected Products Label","type":"text","value":"Selected Products"},"selectBundleProductsText":{"id":"selectBundleProductsText","label":"Select Bundle Products label","type":"text","value":"Select Bundle Products"},"redirectingText":{"id":"redirectingText","label":"Redirecting label","type":"text","value":"Redirecting..."},"preparingBundleText":{"id":"preparingBundleText","label":"Preparing Bundle Label","type":"text","value":"Loading..."},"productsNotAvailableText":{"id":"productsNotAvailableText","label":"Products Not Available Label","type":"text","value":"Oops! Some Products are not available"},"discountsMayNotApplyText":{"id":"discountsMayNotApplyText","label":"Discounts may not be applied Label","type":"text","value":"discounts may not be applied"},"removeAllBoxProducts":{"id":"removeAllBoxProducts","label":"Remove all Box Products Label (Cart Page Popup)","type":"text","value":"This is a Box Product. Removing this will remove all the products from box"},"cartPageCheckoutButtonLoadingText":{"id":"cartPageCheckoutButtonLoadingText","label":"Cart Page Checkout Button Loading Text","type":"text","value":"Loading..."},"boxSelectionEligibilityToast":{"id":"boxSelectionEligibilityToast","label":"Box Selection Eligibility Toast","type":"text","value":"Remove ##boxSelectionDifference## item(s) to select this box"},"removeFooterProductFrom":{"id":"removeFooterProductFrom","label":"Remove Product from Footer Text","type":"text","value":"Remove This Product From ##stepName##"},"discountRibbonSuffix":{"id":"discountRibbonSuffix","label":"Discount Badge Suffix","type":"text","value":"off"},"itemsInCartLabel":{"id":"itemsInCartLabel","label":"Cart Inclusion Title","type":"text","value":"item(s)"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added"},"selectSubscriptionPlanButtonText":{"id":"selectSubscriptionPlanButtonText","label":"Subscription Selection Label","type":"text","value":"Select Subscription Plan"}},"multipleCategoriesPage":{"multipleCategoriesSubtext":{"id":"multipleCategoriesSubtext","label":"Multiple Categories Page Subtext","type":"text","value":""}},"multipleCategories":{},"addons":{"maxAddonProductsAllowed":{"id":"maxAddonProductsAllowed","label":"Max Addon Products Allowed message","type":"text","value":"Add a maximum of ##maxAllowedAddons## addon products on this step"},"addonProductsMandatory":{"id":"addonProductsMandatory","label":"Addon Products Mandatory message","type":"text","value":"Addon product is mandatory on this step"},"firstBundleInteraction":{"id":"firstBundleInteraction","label":"Mobile Add On Notification","type":"text","value":"Additional offers to be unlocked"}},"modals":{"clearCart":{"title":{"id":"title","label":"Modal - Title","type":"text","value":"Are you sure?"},"description":{"id":"description","label":"Modal - Description","type":"text","value":"Are you sure you want to clear all items from your cart? This action cannot be undone..."},"triggerButtonText":{"id":"triggerButtonText","label":"Clear Cart Button Text","type":"text","value":"Clear"},"cancelButtonText":{"id":"cancelButtonText","label":"Modal - Cancel Button Text","type":"text","value":"Cancel"},"confirmButtonText":{"id":"confirmButtonText","label":"Modal - Confirm Button Text","type":"text","value":"Clear Cart"}}}},"languageMode":"MULTIPLE","mixAndMatchTextData":{"en":{"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products worth at least ##conditionAmount## on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of ##conditionAmount## on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth ##conditionAmount## on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add at least ##conditionQuantity## products on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of ##conditionQuantity## products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add exactly ##conditionQuantity## products on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"addBundleToCartBtnText":{"id":"addBundleToCartBtnText","label":"Add Bundle Cart label","type":"text","value":"Add Bundle to Cart"},"addBundleToCartLoadingBtnText":{"id":"addBundleToCartLoadingBtnText","label":"Add Bundle Loading label","type":"text","value":"Adding Bundle..."},"addBundleToCartSuccessBtnText":{"id":"addBundleToCartSuccessBtnText","label":"Add Bundle Success label","type":"text","value":"Bundle Added"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"emptyCardText":{"id":"emptyCardText","label":"Add Empty Product Card Text","type":"text","value":"Product"},"boxSelectionEligibilityToast_inPage":{"id":"boxSelectionEligibilityToast_inPage","label":"Box Selection Eligibility Toast","type":"text","value":"Remove ##boxSelectionDifference## item(s) to select this box"},"subtotalLabelText_inPage":{"id":"subtotalLabelText_inPage","label":"Subtotal Text","type":"text","value":"Subtotal"},"boxConditionInitialText_inPage":{"id":"boxConditionInitialText_inPage","label":"Inline Add To Cart Button - Quantity Selection message","type":"text","value":"Select {{quantityDifference}} Items"},"stepsDrawerPillText":{"id":"stepsDrawerPillText","label":"Steps Drawer Pill Text","type":"text","value":"Show all steps"}},"footer":{"footerPrevBtnText":{"id":"footerPrevBtnText","label":"Footer Previous Button","type":"text","value":"Prev"},"footerNextBtnText":{"id":"footerNextBtnText","label":"Footer Next Button","type":"text","value":"Next"},"footerFinishBtnText":{"id":"footerFinishBtnText","label":"Footer Finish Button","type":"text","value":"Done"}},"productCard":{"productCardAddBtnText":{"id":"productCardAddBtnText","label":"Product Add to Cart Button","type":"text","value":"Add to Cart"},"productVariantLabelText":{"id":"productVariantLabelText","label":"Product Variant Label","type":"text","value":"Select variant"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added x{{allowedQuantity}}"},"productCardAddBtnText_inPage":{"id":"productCardAddBtnText_inPage","label":"Inline Product - Add Button Text","type":"text","value":"Add +"}}}},"updatedAt":"2026-02-03T14:46:31.883Z","ka":{"landingPage":{"bannerText":{"id":"bannerText","label":"Banner Text","type":"text","value":"Build your own Bundle in just a few clicks!"},"bannerSubtext":{"id":"bannerSubtext","label":"Banner Subtext","type":"text","value":"Send a custom bundle to your loved one in just a few steps"},"bannerButtonText":{"id":"bannerButtonText","label":"Banner Button Text","type":"text","value":"Start Building your Bundle"},"selectPreCuratedBoxLabel":{"id":"selectPreCuratedBoxLabel","label":"Select Pre-Curated Box Label","type":"text","value":"Or select from a range of pre-curated Gift Boxes"}},"navigationSteps":{"productPageStepText":{"id":"productPageStepText","label":"Product Page Step Text","type":"text","value":"Add Products"},"giftBoxStepText":{"id":"giftBoxStepText","label":"Bundle Step Text","type":"text","value":"Add Gift Box"},"personalizeStepText":{"id":"personalizeStepText","label":"Personalize Step Text","type":"text","value":"Personalize"},"multipleCategoriesStepText":{"id":"multipleCategoriesStepText","label":"Multiple Categories Step Text","type":"text","value":"Multiple Categories"}},"productPage":{"selectProductsLabel":{"id":"selectProductsLabel","label":"Select Products Label","type":"text","value":"Select Products"},"productPageSubtext":{"id":"productPageSubtext","label":"Product Page Subtext","type":"text","value":""}},"giftBoxPage":{"selectGiftBoxLabel":{"id":"selectGiftBoxLabel","label":"Select Bundle Label","type":"text","value":"Select a Bundle Box"},"giftBoxPageSubtext":{"id":"giftBoxPageSubtext","label":"Gift Box Page Subtext","type":"text","value":""}},"videoMessage":{"permissionDenied":{"id":"permissionDenied","label":"Permission Denied","type":"text","value":"Permission Denied"},"uploadConfirmation":{"id":"uploadConfirmation","label":"Upload Confirmation","type":"text","value":"Your video has been successfully uploaded!"},"pressToRecord":{"id":"pressToRecord","label":"Press to record","type":"text","value":"Press to record"},"recording":{"id":"recording","label":"Recording","type":"text","value":"Recording...."},"errorMessage":{"id":"errorMessage","label":"Error Message","type":"text","value":"An error occured, Please try again!"},"loading":{"id":"loading","label":"Loading","type":"text","value":"Loading...."},"uploading":{"id":"uploading","label":"Uploading","type":"text","value":"Uploading...."},"sendVideoMessageText":{"id":"sendVideoMessageText","label":"Send Video Message Text","type":"text","value":"Send Video Message"},"giftMessageDeliveryInfo":{"id":"giftMessageDeliveryInfo","label":"Message Delivery Info","type":"text","value":"The message will be sent to the recipient via email as soon as the order is placed"},"saveVideoText":{"id":"saveVideoText","label":"Save Video Text","type":"text","value":"Save Video"},"reRecordVideoText":{"id":"reRecordVideoText","label":"Re-Record Video Text","type":"text","value":"Re-Record Video"}},"personalizePage":{"messageLabel":{"id":"messageLabel","label":"Message Label","type":"text","value":"Message"},"senderNamePlaceholder":{"id":"senderNamePlaceholder","label":"Sender Name Placeholder","type":"text","value":"From"},"recipientNamePlaceholder":{"id":"recipientNamePlaceholder","label":"Recipient Name Placeholder","type":"text","value":"To"},"messagePlaceholder":{"id":"messagePlaceholder","label":"Message Placeholder","type":"text","value":"Enter a message here..."},"emailAddressLabel":{"id":"emailAddressLabel","label":"Recipient Email Address Label","type":"text","value":"Recipient Email Address"},"emailAddressPlaceholder":{"id":"emailAddressPlaceholder","label":"Recipient Email Address Placeholder","type":"text","value":"Enter a recipient email address here..."},"emailValidationMessage":{"id":"emailValidationMessage","label":"Email Validation Message","type":"text","value":"Please enter a valid email address"},"sendNow":{"id":"sendNow","label":"Send Now Label","type":"text","value":"Send Now"},"sendLater":{"id":"sendLater","label":"Send Later Label","type":"text","value":"Send Later"},"personalizePageSubtext":{"id":"personalizePageSubtext","label":"Personalize Page Subtext","type":"text","value":""},"messageIsRequiredError":{"id":"messageIsRequiredError","label":"Message is required warning","type":"text","value":"Please enter a message"}},"reviewPage":{"reviewPageBannerText":{"id":"reviewPageBannerText","label":"Review Page Banner Text","type":"text","value":"You’ve made the Right Choice!"},"reviewPageBannerSubtext":{"id":"reviewPageBannerSubtext","label":"Review Page Banner Subtext","type":"text","value":"Review your bundle and proceed to checkout"},"addOnsLabel":{"id":"addOnsLabel","label":"Add Ons Label","type":"text","value":"საჩუქარი"},"totalValueLabel":{"id":"totalValueLabel","label":"Total Value Label","type":"text","value":"სულ"},"totalLabel":{"id":"totalLabel","label":"Total Label","type":"text","value":"სულ"},"productLabel":{"id":"productLabel","label":"Product Header Label","type":"text","value":"პროდუქტი"},"priceLabel":{"id":"priceLabel","label":"Price Header Text","type":"text","value":"ფასი"},"quantityLabel":{"id":"quantityLabel","label":"Quantity Header Text","type":"text","value":"რაოდენობა"},"deliveryDateLabel":{"id":"deliveryDateLabel","label":"Delivery Date Label","type":"text","value":"Delivery Date"},"productsLabelText":{"id":"productsLabelText","label":"Products Label Text","type":"text","value":"Products"},"messagesLabelText":{"id":"messagesLabelText","label":"Messages Label Text","type":"text","value":"Messages"},"discountAppliedLabel":{"id":"discountAppliedLabel","label":"Discount Applied Label","type":"text","value":"ფასდაკლება"},"subtotalLabel":{"id":"subtotalLabel","label":"Sub Total Label","type":"text","value":"სულ"},"orderDetailsLabel":{"id":"orderDetailsLabel","label":"Order Details Label","type":"text","value":"შეკვეთის დეტალები"},"itemsLabel":{"id":"itemsLabel","label":"No. of Items Label","type":"text","value":"პროდუქტი"},"oneTimePurchaseLabel":{"id":"oneTimePurchaseLabel","label":"One-Time Purchase label","type":"text","value":"One-Time Purchase"},"subscribeAndSaveLabel":{"id":"subscribeAndSaveLabel","label":"Subscribe and Save label","type":"text","value":"Subscribe and Save"},"noSubscriptionFoundLabel":{"id":"noSubscriptionFoundLabel","label":"No Subscription plans found label","type":"text","value":"Oops! No Subscription plans were found"},"deliveryFrequencyLabel":{"id":"deliveryFrequencyLabel","label":"Delivery Frequency Label","type":"text","value":"Delivery Frequency"},"createNewBoxLabel":{"id":"createNewBoxLabel","label":"Create New Box Label","type":"text","value":"Create new Box"},"editButtonText":{"id":"editButtonText","label":"Edit Label","type":"text","value":"შეცვლა"},"deliverySchedulerPlaceholderText":{"id":"deliverySchedulerPlaceholderText","label":"Delivery Scheduler Placeholder Text","type":"text","value":"Select a date"}},"discountRules":{"rule1":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule2":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 100"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 15 off"}},"rule3":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 150"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 30 off"}},"rule4":{"amount":{"id":"amount","label":"Amount","type":"text","value":"when shopped for GEL 200"},"text":{"id":"text","label":"Text","type":"text","value":"Get GEL 50 off"}},"rule5":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule6":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule7":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule8":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule9":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}},"rule10":{"amount":{"id":"amount","label":"Amount","type":"text","value":""},"text":{"id":"text","label":"Text","type":"text","value":""}}},"sortBy":{"sortLabel":{"id":"sortLabel","label":"Sort Label","type":"text","value":"Sort"},"alphabeticalAToZ":{"id":"alphabeticalAToZ","label":"Alphabetical, A-Z Label","value":"Alphabetical, A-Z"},"alphabeticalZToA":{"id":"alphabeticalZToA","label":"Alphabetical, Z-A Label","value":"Alphabetical, Z-A"},"priceHighToLow":{"id":"priceHighToLow","label":"Price, High to Low Label","value":"Price, High to Low"},"priceLowToHigh":{"id":"priceLowToHigh","label":"Price, Low to High Label","value":"Price, Low to High"},"featured":{"id":"featured","label":"Featured Label","type":"text","value":"Featured"}},"conditions":{"amount":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products worth at least ##conditionAmount## on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products worth maximum of ##conditionAmount## on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products worth ##conditionAmount## on this step"}},"quantity":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"დაამატეთ მინიმუმ ##conditionQuantity## პროდუქტი"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add a maximum of ##conditionQuantity## products to continue"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"დაამატე კალათაში ზუსტად ##conditionQuantity## პროდუქტი"}},"weight":{"greaterThanOrEqualTo":{"id":"greaterThanOrEqualTo","label":"Greater than condition message","type":"text","value":"Add products weighing at least ##conditionWeight## on this step"},"lessThanOrEqualTo":{"id":"lessThanOrEqualTo","label":"Less than condition message","type":"text","value":"Add products weighing maximum of ##conditionWeight## on this step"},"equalTo":{"id":"equalTo","label":"Equal to condition message","type":"text","value":"Add products weighing ##conditionWeight## on this step"}}},"general":{"noProductsAvailable":{"id":"noProductsAvailable","label":"No Products Available label","type":"text","value":"No Products Available"},"filtersLabel":{"id":"filtersLabel","label":"Filters Label","type":"text","value":"Filters"},"clearSelection":{"id":"clearSelection","label":"Clear Filters Selection","type":"text","value":"Clear Selection"},"searchLabel":{"id":"searchLabel","label":"Search Label","type":"text","value":"Search"},"addToBoxButtonText":{"id":"addToBoxButtonText","label":"Add To Box Button","type":"text","value":"დამატება"},"chooseOptionsButtonText":{"id":"chooseOptionsButtonText","label":"Choose Options Button","type":"text","value":"არჩევა"},"loadMoreProductsButtonText":{"id":"loadMoreProductsButtonText","label":"Load More Products Button","type":"text","value":"Load More Products"},"loadingCheckoutButtonText":{"id":"loadingCheckoutButtonText","label":"Loading Checkout Button","type":"text","value":"Loading Checkout..."},"addedText":{"id":"addedText","label":"Added Label","type":"text","value":"დამატებულია"},"addButtonText":{"id":"addButtonText","label":"Add Button Text","type":"text","value":"დამატება"},"nextButtonText":{"id":"nextButtonText","label":"Next Button Text","type":"text","value":"შემდეგი"},"addToCartButtonText":{"id":"addToCartButtonText","label":"Add To Cart Button Text","type":"text","value":"კალათაში დამატება"},"backButtonText":{"id":"backButtonText","label":"Back Button Text","type":"text","value":"უკან"},"checkoutButtonText":{"id":"checkoutButtonText","label":"Checkout Button Text","type":"text","value":"ყიდვა"},"removeButtonText":{"id":"removeButtonText","label":"Remove Button Text","type":"text","value":"წაშლა"},"reviewButtonText":{"id":"reviewButtonText","label":"Review Button Text","type":"text","value":"Review"},"combinationNotAvailable":{"id":"combinationNotAvailable","label":"Combination Not Available","type":"text","value":"Combination Not Available"},"quantity":{"id":"quantity","label":"Quantity Label","type":"text","value":"რაოდენობა"},"inventoryInStockText":{"id":"inventoryInStockText","label":"Inventory in Stock Label","type":"text","value":"მარაგშია"},"inventoryLimitReachedText":{"id":"inventoryLimitReachedText","label":"Inventory Limit Reached Label","type":"text","value":"No More Stock"},"viewCartProductsLabel":{"id":"viewCartProductsLabel","label":"View Cart Products Label","type":"text","value":"View Selected Products"},"selectedProductsLabel":{"id":"selectedProductsLabel","label":"Selected Products Label","type":"text","value":"Selected Products"},"selectBundleProductsText":{"id":"selectBundleProductsText","label":"Select Bundle Products label","type":"text","value":"Select Bundle Products"},"redirectingText":{"id":"redirectingText","label":"Redirecting label","type":"text","value":"Redirecting..."},"preparingBundleText":{"id":"preparingBundleText","label":"Preparing Bundle Label","type":"text","value":"იტვირთება..."},"productsNotAvailableText":{"id":"productsNotAvailableText","label":"Products Not Available Label","type":"text","value":"Oops! Some Products are not available"},"discountsMayNotApplyText":{"id":"discountsMayNotApplyText","label":"Discounts may not be applied Label","type":"text","value":"discounts may not be applied"},"removeAllBoxProducts":{"id":"removeAllBoxProducts","label":"Remove all Box Products Label (Cart Page Popup)","type":"text","value":"This is a Box Product. Removing this will remove all the products from box"},"cartPageCheckoutButtonLoadingText":{"id":"cartPageCheckoutButtonLoadingText","label":"Cart Page Checkout Button Loading Text","type":"text","value":"იტვირთება..."},"boxSelectionEligibilityToast":{"id":"boxSelectionEligibilityToast","label":"Box Selection Eligibility Toast","type":"text","value":"Remove ##boxSelectionDifference## item(s) to select this box"},"removeFooterProductFrom":{"id":"removeFooterProductFrom","label":"Remove Product from Footer Text","type":"text","value":"Remove This Product From ##stepName##"},"discountRibbonSuffix":{"id":"discountRibbonSuffix","label":"Discount Badge Suffix","type":"text","value":"off"},"itemsInCartLabel":{"id":"itemsInCartLabel","label":"Cart Inclusion Title","type":"text","value":"item(s)"},"productAddedBtnText":{"id":"productAddedBtnText","label":"Product Added label","type":"text","value":"Added"}},"multipleCategoriesPage":{"multipleCategoriesSubtext":{"id":"multipleCategoriesSubtext","label":"Multiple Categories Page Subtext","type":"text","value":""}},"multipleCategories":{},"addons":{"maxAddonProductsAllowed":{"id":"maxAddonProductsAllowed","label":"Max Addon Products Allowed message","type":"text","value":"Add a maximum of ##maxAllowedAddons## addon products on this step"},"addonProductsMandatory":{"id":"addonProductsMandatory","label":"Addon Products Mandatory message","type":"text","value":"Addon product is mandatory on this step"}},"modals":{"clearCart":{"title":{"id":"title","label":"Modal - Title","type":"text","value":"Are you sure?"},"description":{"id":"description","label":"Modal - Description","type":"text","value":"Are you sure you want to clear all items from your cart? This action cannot be undone..."},"triggerButtonText":{"id":"triggerButtonText","label":"Clear Cart Button Text","type":"text","value":"Clear"},"cancelButtonText":{"id":"cancelButtonText","label":"Modal - Cancel Button Text","type":"text","value":"Cancel"},"confirmButtonText":{"id":"confirmButtonText","label":"Modal - Confirm Button Text","type":"text","value":"Clear Cart"}}}}},"pageCustomizationData":{"_id":"680d687eef5b7ebae4967e6c","shopName":"meama-georgia.myshopify.com","__v":0,"banners":{"landingPageImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/landing_page_bannerv2.png","pageBannerImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/page_banner_temp.png","productReviewImageSrc":"https:\/\/d3ks0ngva6go34.cloudfront.net\/public\/banners\/landing_page_bannerv2.png"},"cartFooter":{"cartFooterBgColor":"#ffffff","cartFooterButtonsContainerBgColor":"#ffffff","cartFooterBorderRadius":"0px","cartFooterProductImageBorderRadius":"0px","cartFooterButtonsContainerBorderRadius":"9px","cartFooterShowHidePrices":"Show","cartFooterTextColor":"#000000","cartFooterDiscountedPriceColor":"#8D8D8D","cartFooterFinalPriceFontThickness":"Bold","cartFooterFinalPriceFontColor":"#000000","cartFooterStrikethroughPriceFontThickness":"Regular","cartFooterBackButtonColor":"#6d7175","cartFooterBackButtonTextColor":"#FFFFFF","cartFooterBackButtonBorderColor":"#000000","cartFooterBackButtonBorderThickness":"2px","cartFooterNextButtonTextColor":"#ffffff","cartFooterNextButtonColor":"#000000","cartFooterNextButtonBorderColor":"#000000","cartFooterNextButtonBorderThickness":"2px","cartFooterButtonsBorderRadius":"40px","cartFooterButtonsPadding":"10px","cartFooterDiscountProgressBarEmptyColor":"#C1E7C5","cartFooterDiscountProgressBarFilledColor":"#15A524","cartFooterDiscountTextVisibility":"Show","cartFooterDiscountTextColor":"#000000","cartFooterTotalLabelColor":"#000000"},"categoryBlock":{"categoryBgColor":"#f5f5f5"},"colors":{"disabledColor":"gray","primaryColor":"blue","productBox":"blue","secondaryColor":"aqua","textColor":"black"},"createdAt":"2025-04-26T23:13:02.086Z","generalSettings":{"bundleBgColor":"#ffffff","scrollBarColor":"#000000","productPageTitleColor":"#000000","productPageFontSize":"18px","bundleUpSellButtonBg":"#000000","bundleUpSellButtonBorderColor":"#000000","bundleUpsellTextColor":"#ffffff","conditionToastBgColor":"#000000","conditionToastTextColor":"#ffffff","iconColor":"#000000","iconBgColor":"#ffffff","iconTextColor":"#1d1d1b","applyNewPageCustomization":true},"landingPage":{"landingPageTextColor":"#000000","landingPageButtonBgColor":"#000000","landingPageButtonTextColor":"#ffffff"},"mixAndMatchData":{"executeScriptAfterAddToCart":"","redirectToCartEnabled":false,"redirectToCheckoutEnabled":false,"isExecuteCustomScriptAfterAddToCartEnabled":false,"executeDefaultSideCartUpdate":true,"sideCartSectionId":"","sideCartSectionSelector":"","cartPageItemsSelector":"","cartPageItemsSectionId":"","hideOutOfStockProducts":true,"isValidateInventoryEnabled":false,"sideCartOpenBtnSelector":"","executeCustomAfterPageLoad":"","customStyle":null,"showProductComparedAtPrice":false,"addBundleToCartOnDone":false,"renderSlotsBasedOnCondition":false,"renderFilledSlotsAsHorizontalStacked":false,"addToBundleOnProductCardClick":true},"navigationBanner":{"navigationBannerStepTextColor":"#000000","navigationBannerStepFontSize":"16px","navigationCheckColor":"#ffffff","navigationBannerStepCompletionColor":"#000000","navigationBannerStepCompletedBorderColor":"#000000","navigationBannerStepCompletedBorderWidth":"4px","navigationBannerStepIncompleteBgColor":"#FFFFFF","navigationBannerStepIncompleteBorderColor":"#cccccc","navigationBannerStepIncompleteBorderWidth":"4px","navigationBannerStepProgressBarFilledColor":"#1E1E1E","navigationBannerStepProgressBarEmptyColor":"#cccccc","tabsActiveBgColor":"#000000","tabsActiveTextColor":"#F6f6f6","tabsInactiveBgColor":"#FFFFFF","tabsInactiveTextColor":"#000000","tabsBorderColor":"#3c3c3c","tabsCornerRadius":"40px","navigationBannerTitleColor":"#ffffff","navigationBannerTextColor":"#ffffff","navigationBannerStepDoneColor":"#FFFFFF"},"previewPage":{"bannerTextColor":"#ffffff"},"primaryFont":"Noto Serif Georgian","productCard":{"productCardBgColor":"#ffffff","cardBorderRadius":"22px","cardImageBorderRadius":"20px","productImageFit":"cover","cardsPerRowXL":5,"cardsPerRowL":5,"productCardTextColor":"#252525","productTitleFontSize":"20px","productTitleFontWeight":"Bold","productPriceVisibility":"Show","compareAtPriceColor":"#8D8D8D","compareAtPriceFontSize":"13px","compareAtPriceFontWeight":"Bold","compareAtPriceVisibility":"Show","finalPriceFontSize":"16px","finalPriceFontColor":"#252525","finalPriceFontWeight":"Bold","productCardButtonColor":"#000000","productCardButtonTextColor":"#ffffff","buttonBorderRadius":"40px","quantitySelectorTextColor":"#000000","allowOnlyOneQuantity":false,"quantitySelectorBgColor":"#000000","productCardQuantitySelectorBgColor":"#ffffff","quantitySelectorButtonTextColor":"#FFFFFF","quantitySelectorButtonBorderRadius":"40px"},"quickSettings":{"isQuickSettingsEnabled":true,"colors":{"primaryColor":"#000000","buttonBgColor":"#000000","buttonTextColor":"#ffffff"}},"summaryBlock":{"summaryBlockAddToCartButtonColor":"#000000","summaryBlockAddToCartButtonTextColor":"#ffffff","summaryBlockBackButtonColor":"#252525","summaryBlockBackButtonTextColor":"#ffffff","summaryBuildNewBoxButtonColor":"#6d7175","summaryBuildNewBoxTextColor":"#ffffff"},"updatedAt":"2026-02-03T11:49:25.111Z","templateLevelConfig":{},"mixAndMatchConfig":{"productCard":{"productCardBgColor":"#FFFFFF","productCardBorderRadius":"12px","productCardImageBorderRadius":"5px","productCardImageFit":"cover","productCardTitleColor":"#1E1E1E","productCardTitleFont":"16px","productCardTitleWeight":"Bold","productCardTitleVisibility":"Show","productCardPriceColor":"#000000","productCardPriceFont":"16px","productCardPriceWeight":"Bold","productCardPriceVisibility":"Show","productCardComparedAtPriceColor":"#ABABAB","productCardComparedAtPriceFont":"12px","productCardComparedAtPriceWeight":"Regular","productCardComparedAtPriceVisibility":"Hide","productCardButtonBgColor":"#000000","productCardButtonTextColor":"#FFFFFF","productCardButtonBorderRadius":"5px","productCardQuantityButtonBorderRadius":"5px","productCardQuantityLabelColor":"#000000","productCardQuantityBgColor":"#EEEEEE","productCardQuantityBorderRadius":"6px","productCardVariantSelectorBgColor":"#FFFFFF","productCardVariantSelectorTextColor":"#000000","productCardVariantSelectorBorderRadius":"5px"},"emptyStateCard":{"emptyStateCardBgColor":"#FFFFFF","emptyStateCardBorderColor":"#000","emptyStateCardIconColor":"#000","emptyStateCardTextColor":"#3E3E3E","emptyStateCardBorderStyle":"Dashed"},"drawer":{"drawerBgColor":"#F4F9F9","drawerBorderRadius":"15px 15px 0 0","drawerCloseIconColor":"#303030","drawerScrollBarColor":"#555555","drawerOverlayBgColor":"#1E1E1E80","drawerCloseIconBgColor":"#D4D4D4"},"tabs":{"tabsActiveBgColor":"#1E1E1E","tabsActiveTextColor":"#FFFFFF","tabsInactiveBgColor":"#F4F9F9","tabsInactiveTextColor":"#1E1E1E","tabsBorderRadius":"8px"},"bundleHeader":{"headerConditionTextColor":"#000000","headerConditionTextFont":"24px","headerDiscountTextColor":"#444","headerDiscountTextFont":"16px"},"toast":{"toastBgColor":"#1E1E1EE6","toastTextColor":"#FFF"},"footer":{"footerBgColor":"#1E1E1ECC","footerTotalPriceAndQuantityPillBgColor":"#FFF","footerBorderRadius":"15px","footerTotalPriceAndQuantityPillBorderRadius":"16px","footerPriceSectionVisibility":"Show","footerFinalPriceColor":"#000","footerStrikeThroughPriceColor":"#000","footerBackBtnBgColor":"#FFF","footerBackBtnTextColor":"#000","footerNextBtnBgColor":"#FFF","footerNextBtnTextColor":"#000","footerButtonsBorderRadius":"10px"},"addBundleBtn":{"addBundleBtnBgColor":"#000000","addBundleBtnBorderRadius":"5px","addBundleBtnTextColor":"#ffffff"}}}};
let parent_product_data = null;
if(full_page_ext_data && !full_page_ext_data?.errorMsg) {
window.easybundle_user_ext_data = full_page_ext_data.userData || {}
}
if (parent_product_data && !parent_product_data?.errorMsg) {
window.shopifyLiquidValuesApp4Ext.product.bundleProductConfiguration = parent_product_data;
const isAutoPlaceFullPageBundleEnabled = full_page_ext_data?.userData?.customSettings?.isAutoPlaceFullPageBundleEnabled ?? true
let bundle_data = null;
if(full_page_ext_data && bundle_data){
isAutoPlaceFullPageBundleEnabled && removeProductHtmlForBundles()
const discountsConfiguration = bundle_data?.discountsData;
delete bundle_data.discountsData;
let required_bundle_ext_data = {
...full_page_ext_data,
stepsConfigurationData:bundle_data,
discountsData: discountsConfiguration || {}
}
window.easybundle_full_page_ext_data = required_bundle_ext_data;
}
}
}
function checkIfShouldImportMixAndMatchAssets(allMixAndMatchBundles) {
try{
const currentProductId = window.shopifyLiquidValuesApp4Ext?.product?.productData?.id;
if(!currentProductId || allMixAndMatchBundles?.length <= 0){
return false;
}
const isThisParentProductPage = allMixAndMatchBundles.some(bundle => bundle.parentProductShopifyData?.id == currentProductId);
if(isThisParentProductPage) return true;
const currentProductCollections = window.shopifyLiquidValuesApp4Ext?.product?.collections?.map(collection => collection.id);
for(let bundle of allMixAndMatchBundles){
const bundleUpsellConfig = bundle.bundleUpsellConfig;
const isBundleUpsellEmbedEnabled = bundleUpsellConfig?.upsellConfiguration?.isEnabled;
const isBundleUpsellWidgetEnabled = bundleUpsellConfig?.widgetConfiguration?.isEnabled;
if(!isBundleUpsellEmbedEnabled && !isBundleUpsellWidgetEnabled) continue;
const widgetDisplayConfig = bundleUpsellConfig?.widgetConfiguration?.displayConfiguration;
const upsellDisplayConfig = bundleUpsellConfig?.upsellConfiguration?.displayConfiguration;
let showOnAllBundleProducts = false;
let productIdsToCheck = [];
let collectionIdsToCheck = [];
if(isBundleUpsellEmbedEnabled){
showOnAllBundleProducts = upsellDisplayConfig?.showOnAllBundleProducts;
productIdsToCheck = upsellDisplayConfig?.showOnSpecificProductPages?.map(product => product?.productId) || []
collectionIdsToCheck = upsellDisplayConfig?.showOnSpecificCollectionPages?.map(collection => collection?.collectionId) || []
}
if(isBundleUpsellWidgetEnabled){
showOnAllBundleProducts = showOnAllBundleProducts || widgetDisplayConfig?.showOnAllBundleProducts;
const productIds = widgetDisplayConfig?.showOnSpecificProductPages?.map(product => product?.productId) || [];
const collectionIds = widgetDisplayConfig?.showOnSpecificCollectionPages?.map(collection => collection?.collectionId) || [];
productIdsToCheck = [ ...productIdsToCheck, ...productIds ];
collectionIdsToCheck = [ ...collectionIdsToCheck, ...collectionIds ];
}
if(showOnAllBundleProducts){
Object.keys(bundle ?? {}).filter(key => key?.startsWith('productsData')).forEach(stepKey => {
const stepData = bundle?.[stepKey];
Object.values(stepData?.categories ?? {}).forEach(category => {
const productIds = category?.products?.map(product => product.productId) || [];
const collectionIds = category?.collectionsSelectedData?.map(collection => collection.id?.replace("gid://shopify/Collection/", "")) || [];
productIdsToCheck = [ ...productIdsToCheck, ...productIds ];
collectionIdsToCheck = [ ...collectionIdsToCheck, ...collectionIds ];
})
})
}
const isThisProductRelevant = productIdsToCheck?.some(productId => productId == currentProductId);
const isThisProductCollectionsRelevant = collectionIdsToCheck?.some(collectionId => currentProductCollections?.includes(collectionId));
if(isThisProductRelevant || isThisProductCollectionsRelevant) return true;
}
return false;
}catch(err){
debugConsole("error in checkIfShouldImportMixAndMatchAssets",err)
return false;
}
}
window.gbbExtEmbed.f.checkIfShouldImportMixAndMatchAssets = checkIfShouldImportMixAndMatchAssets;
function loadAssetFiles(assets){
try{
assets.forEach(({ id, tag, attrs, onload }) => {
if (!document.getElementById(id)) {
const el = Object.assign(document.createElement(tag), { id, ...attrs });
if (onload) el.onload = () => onload(el);
document.head.appendChild(el);
}
});
}catch(err){
debugConsole("error in loadAssetFiles",err)
}
}
async function importAppEmbedAssets (loadUnminifiedFiles){
try{
const jsBaseUrl = loadUnminifiedFiles ? 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/giftBoxLogicv1.js' : 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/easy-bundle-min.js';
const cssBaseUrl = loadUnminifiedFiles ? 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/giftBoxv1.css' : 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/easy-bundle-min.css';
const assets = [
{ id: 'gbbExt-bundle-embed-css',
tag: 'link',
attrs: { href: cssBaseUrl, rel: 'stylesheet', media: 'all' },
onload: (el) => el.media = 'all'
},
{ id: 'gbbExt-bundle-embed-js',
tag: 'script',
attrs: { src: jsBaseUrl, defer: true, crossOrigin: 'anonymous' }
}
];
loadAssetFiles(assets);
}catch(err){
debugConsole("error in importAppEmbedAssets",err)
}
}
async function importMixAndMatchAssets (loadUnminifiedFiles){
try{
const customSettings = window.easybundles_ext_data?.userData?.customSettings ?? window.easybundle_user_ext_data?.customSettings ?? {};
const isAutoPlacementEnabled = customSettings?.isLoadMixAndMatchAssetsFromS3Enabled ?? false;
if(!isAutoPlacementEnabled) return;
const allMixAndMatchBundles = window.easybundles_ext_data?.mixAndMatchData ?? [];
const shouldImportMixAndMatchAssets = checkIfShouldImportMixAndMatchAssets(allMixAndMatchBundles);
if(!shouldImportMixAndMatchAssets) return;
const baseURL = loadUnminifiedFiles ? 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/mixAndMatchBundle' : 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/easy-bundle-product-page-min';
const assets = [
{ id: 'gbbMix-bundle-embed-css',
tag: 'link',
attrs: { href: baseURL + '.css', rel: 'stylesheet', media: 'all' },
onload: (el) => el.media = 'all'
},
{ id: 'gbbMix-bundle-embed-js',
tag: 'script',
attrs: { src: baseURL + '.js', defer: true, crossOrigin: 'anonymous' }
}
];
loadAssetFiles(assets);
}catch(err){
debugConsole("error in checkAndImportMixAndMatchScript",err)
}
}
async function importFullPageAssets (loadUnminifiedFiles){
try{
const fullPageExtData = window.easybundle_full_page_ext_data;
const customSettings = fullPageExtData?.userData?.customSettings ?? window.easybundle_user_ext_data?.customSettings ?? {};
const isAutoPlaceFullPageBundleEnabled = customSettings && (customSettings?.isAutoPlaceFullPageBundleEnabled ?? true);
if(!isAutoPlaceFullPageBundleEnabled) return;
if(!fullPageExtData?.stepsConfigurationData || fullPageExtData?.stepsConfigurationData?.errorMsg){
debugConsole("importFullPageAssets => bundleData metafield limit exceeded, fetching from backup S3");
const data = await getBundleDataFromS3();
if(!data || !data?.stepsConfigurationData){
debugConsole("error in importFullPageAssets => Failed to load the backup bundle data from s3.");
return;
}
fullPageExtData.stepsConfigurationData = data?.stepsConfigurationData;
fullPageExtData.discountsData = data?.discountsData;
}
const baseURL = loadUnminifiedFiles ? 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/easy-bundle-full-page' : 'https://cdn.shopify.com/extensions/019bfeaf-9de3-7c16-9ed9-38b5b9dbe4bb/appatticserver-377/assets/easy-bundle-full-page-min';
const assets = [
{ id: 'gbb-bundle-embed-css',
tag: 'link',
attrs: { href: baseURL + '.css', rel: 'stylesheet', media: 'all' },
onload: (el) => el.media = 'all'
},
{ id: 'gbb-bundle-embed-js',
tag: 'script',
attrs: { src: baseURL + '.js', defer: true, crossOrigin: 'anonymous' }
}
];
loadAssetFiles(assets);
}catch(err){
debugConsole("error in importFullPageAssets",err)
}
}
function importAssets(isDevMode){
const customSettings = window.easybundles_ext_data?.userData?.customSettings ?? window.easybundle_full_page_ext_data?.userData?.customSettings ?? {};
const loadUnminifiedFiles = isDevMode || (customSettings.loadUnminifiedStorefrontFiles ?? false);
importAppEmbedAssets(loadUnminifiedFiles);
importMixAndMatchAssets(loadUnminifiedFiles);
importFullPageAssets(loadUnminifiedFiles);
}
function initialize(){
const urlParams = new URLSearchParams(window.location.search);
const isDevMode = urlParams.get('dev') == 'true';
const isDebugMode = urlParams.get('debug') == 'true';
if(isDebugMode){
debugger;
}
initializeShopifyValues();
importAssets(isDevMode);
}
initialize();
})();
</script>
</div></body>
</html>