/* ==========================================================================
   Gifty Core – header, footer, section widgets, wishlist, WhatsApp, delivery.
   Uses theme tokens (--g-*) with fallbacks.
   ========================================================================== */

/* ---------- Shared ---------- */
.g-grid { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 24px; list-style: none; margin: 0; padding: 0; }
.g-center { text-align: center; margin-top: 28px; }
.g-editor-note { padding: 16px; border: 1px dashed #CDB4E8; border-radius: 12px; color: #5F5A66; text-align: center; }
.g-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	background: var(--g-yellow, #FFD900);
	color: var(--g-ink, #1C1C1C);
	font-size: 11px;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
	box-sizing: border-box;
	transition: transform .2s ease;
}
.g-count.is-empty { display: none; }
.g-count.is-bump { animation: gBump .4s ease; }
@keyframes gBump { 50% { transform: scale(1.35); } }

/* Section heading */
.g-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: clamp(20px, 3vw, 36px); }
.g-head--center { flex-direction: column; align-items: center; text-align: center; }
.g-head--center.has-link { position: relative; }
.g-head__text { max-width: 720px; }
.g-head__title { margin: 0; }
.g-head__sub { margin: 10px 0 0; color: var(--g-muted, #5F5A66); font-size: clamp(15px, 1.2vw, 17px); }
.g-head__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; white-space: nowrap; }
.g-head__link .g-icon { transition: transform .2s ease; }
.g-head__link:hover .g-icon { transform: translateX(4px); }
.g-head--center .g-head__link { margin-top: 4px; }
@media (min-width: 1025px) {
	.g-head--center.has-link .g-head__link { position: absolute; right: 0; bottom: 4px; margin: 0; }
}

/* ---------- Carousel ---------- */
.g-carousel { --gap: 24px; position: relative; }
.g-carousel__track,
.g-carousel ul.products.g-carousel__track {
	display: flex !important;
	gap: var(--gap);
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 4px;
	scroll-behavior: smooth;
	scrollbar-width: none;
	list-style: none;
	margin: -10px -4px -24px !important;
	padding: 10px 4px 24px !important;
}
.g-carousel__track::-webkit-scrollbar { display: none; }
.g-carousel__track > * {
	flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per)) !important;
	min-width: 0;
	scroll-snap-align: start;
}
.g-carousel__nav {
	position: absolute;
	top: 38%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--g-purple, #7A00C8);
	box-shadow: 0 6px 20px rgba(42, 0, 73, .15);
	cursor: pointer;
	transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.g-carousel__nav:hover { background: var(--g-purple, #7A00C8); color: #fff; }
.g-carousel__nav--prev { left: -22px; }
.g-carousel__nav--next { right: -22px; }
.g-carousel__nav[disabled], .g-carousel.is-static .g-carousel__nav { opacity: 0; pointer-events: none; }
@media (max-width: 1280px) { .g-carousel__nav--prev { left: -8px; } .g-carousel__nav--next { right: -8px; } }
@media (max-width: 1024px) { .g-carousel__track > * { flex-basis: calc((100% - (var(--per-t) - 1) * var(--gap)) / var(--per-t)) !important; } }
@media (max-width: 767px) {
	.g-carousel { --gap: 12px; }
	.g-carousel__track, .g-carousel ul.products.g-carousel__track {
		margin: -10px calc(-1 * var(--g-gutter, 16px)) -20px !important;
		padding: 10px var(--g-gutter, 16px) 20px !important;
		scroll-padding-inline: var(--g-gutter, 16px);
	}
	.g-carousel__track > * { flex-basis: calc((100% - (var(--per-m) - 1) * var(--gap)) / var(--per-m)) !important; }
	.g-carousel__nav { display: none; }
}

/* ---------- Announcement marquee ---------- */
.gifty-marquee { position: relative; overflow: hidden; color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: .01em; }
.gifty-marquee--purple { background: linear-gradient(90deg, #6400A8, var(--g-purple, #7A00C8) 50%, #6400A8); }
.gifty-marquee--deep { background: var(--g-purple-deep, #2A0049); }
.gifty-marquee--yellow { background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); }
.gifty-marquee a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.gifty-marquee__track { display: flex; width: max-content; animation: gMarquee var(--speed, 35s) linear infinite; }
.gifty-marquee--right .gifty-marquee__track { animation-direction: reverse; }
.gifty-marquee:hover .gifty-marquee__track, .gifty-marquee:focus-within .gifty-marquee__track { animation-play-state: paused; }
.gifty-marquee__group { display: flex; flex-shrink: 0; margin: 0; padding: 0; list-style: none; }
.gifty-marquee__item { display: inline-flex; align-items: center; min-height: 38px; margin: 0; padding: 0 0 0 28px; white-space: nowrap; }
.gifty-marquee__sep { margin-left: 28px; color: var(--g-yellow, #FFD900); font-size: 11px; }
.gifty-marquee--yellow .gifty-marquee__sep { color: var(--g-purple, #7A00C8); }
@keyframes gMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.gifty-marquee__track { animation: none; width: auto; justify-content: center; }
	.gifty-marquee__group[aria-hidden="true"] { display: none; }
	.gifty-marquee__group { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 767px) { .gifty-marquee { font-size: 12.5px; } .gifty-marquee__item { min-height: 34px; padding-left: 20px; } .gifty-marquee__sep { margin-left: 20px; } }

/* Legacy top bar (kept for templates that still use it) */
.gifty-topbar { background: var(--g-purple-deep, #2A0049); color: #fff; font-size: 13px; }
.gifty-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.gifty-topbar a { color: #fff; }
.gifty-topbar__msgs { position: relative; flex: 1; min-width: 0; height: 20px; overflow: hidden; }
.gifty-topbar__msg { position: absolute; inset: 0; display: flex; align-items: center; gap: 8px; white-space: nowrap; opacity: 0; transition: opacity .4s ease; font-weight: 600; }
.gifty-topbar__msg.is-active { opacity: 1; }
.gifty-topbar__right { display: flex; gap: 20px; }
.gifty-topbar__right a { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.gifty-header { position: relative; z-index: 900; background: #fff; }
/* Above the nav row so icon tooltips are not hidden behind it. */
.gifty-header__main { position: relative; z-index: 3; background: rgba(255, 255, 255, .98); }
.gifty-nav { z-index: 2; }
.gifty-header__bar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 36px; min-height: 80px; }
.gifty-header .gifty-header__burger,
.gifty-header .gifty-header__search-toggle { display: none; }

.gifty-logo { display: inline-flex; align-items: center; line-height: 0; transition: transform .2s ease; }
.gifty-logo:hover { transform: scale(1.02); }
.gifty-logo__img { width: auto !important; height: var(--logo-h, 52px) !important; max-width: 220px; object-fit: contain; }
.gifty-logo__text { font-family: var(--g-font-head, serif); font-size: 32px; font-weight: 800; line-height: 1; color: var(--g-purple, #7A00C8); }

.gifty-header__search { width: 100%; max-width: 620px; justify-self: center; }
.gifty-header__actions { display: flex; align-items: center; gap: 4px; }

/* Round icon buttons with hover tooltip */
.gifty-hbtn {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--g-ink, #1C1C1C);
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
	-webkit-tap-highlight-color: transparent;
}
.gifty-hbtn:hover, .gifty-hbtn:focus-visible { background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
/* Desktop: account & wishlist as soft lavender circles beside the cart pill */
@media (min-width: 1025px) {
	.gifty-header__actions { gap: 10px; }
	.gifty-header__actions .gifty-hbtn { background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); box-shadow: inset 0 0 0 1px #EADCF8; }
	.gifty-header__actions .gifty-hbtn:hover { background: var(--g-purple, #7A00C8); color: #fff; box-shadow: none; }
	.gifty-header__actions .gifty-hbtn .g-count { top: -2px; right: -2px; border: 2px solid #fff; min-width: 20px; height: 20px; line-height: 16px; }
	.gifty-cartbtn { margin-left: 4px; }
}
.gifty-hbtn .g-count { top: 4px; right: 3px; }
.gifty-hbtn__tip {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 20;
	padding: 6px 12px;
	border-radius: 8px;
	background: var(--g-purple-deep, #2A0049);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(42, 0, 73, .2);
	transform: translate(-50%, -4px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.gifty-hbtn__tip::before { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: inherit; transform: translateX(-50%) rotate(45deg); }
.gifty-hbtn:hover .gifty-hbtn__tip,
.gifty-hbtn:focus-visible .gifty-hbtn__tip { visibility: visible; opacity: 1; transform: translate(-50%, 0); }

/* Cart pill */
.gifty-cartbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	margin-left: 8px;
	padding: 0 18px 0 16px;
	border-radius: 999px;
	background: var(--g-purple, #7A00C8);
	color: #fff;
	font-weight: 700;
	font-size: 14.5px;
	box-shadow: 0 8px 20px rgba(122, 0, 200, .25);
	transition: background .2s ease, transform .2s ease;
}
.gifty-cartbtn:hover { background: var(--g-purple-dark, #5A0096); color: #fff; transform: translateY(-1px); }
.gifty-cartbtn .g-count { position: static; min-width: 22px; height: 22px; line-height: 22px; border-radius: 11px; font-size: 12px; }
.gifty-cartbtn .g-count.is-empty { display: inline-block; background: rgba(255, 255, 255, .22); color: #fff; }

/* Search – plain form */
.gifty-search { position: relative; display: flex; align-items: center; width: 100%; }
form.gifty-search > .g-icon { position: absolute; left: 18px; color: var(--g-muted, #5F5A66); pointer-events: none; }
form.gifty-search input[type="search"] { height: 50px; min-height: 0; padding: 0 110px 0 48px; border: 1.5px solid #E4D9F0; border-radius: 999px; background: #fff; font-size: 15px; box-shadow: 0 2px 10px rgba(42, 0, 73, .04); }
form.gifty-search input[type="search"]:focus { border-color: var(--g-purple, #7A00C8); box-shadow: 0 0 0 4px rgba(122, 0, 200, .1); }
form.gifty-search button { position: absolute; right: 5px; height: 40px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--g-purple, #7A00C8); color: #fff; font-weight: 700; font-family: inherit; cursor: pointer; }

/* Search – FiboSearch (live suggestions) restyled to match */
.gifty-search.gifty-search--fibo { display: block; width: 100%; }
.gifty-search--fibo .dgwt-wcas-search-wrapp { display: block !important; width: 100% !important; max-width: none !important; min-width: 0 !important; margin: 0 !important; }
.gifty-search--fibo .dgwt-wcas-search-form,
.gifty-search--fibo .dgwt-wcas-sf-wrapp { width: 100% !important; max-width: none !important; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp { position: relative; padding: 0 !important; background: transparent !important; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 18px;
	z-index: 2;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F5A66' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") center / contain no-repeat;
	pointer-events: none;
}
.gifty-search--fibo .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	height: 50px !important;
	padding: 0 112px 0 48px !important;
	border: 1.5px solid #E4D9F0 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--g-ink, #1C1C1C) !important;
	font-family: var(--g-font-body, sans-serif) !important;
	font-size: 15px !important;
	box-shadow: 0 2px 10px rgba(42, 0, 73, .04) !important;
	transition: border-color .2s ease, box-shadow .2s ease !important;
}
.gifty-search--fibo .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus { border-color: var(--g-purple, #7A00C8) !important; box-shadow: 0 0 0 4px rgba(122, 0, 200, .1) !important; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp input::placeholder { color: #9A93A3 !important; opacity: 1; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	top: 5px !important;
	right: 5px !important;
	left: auto !important;
	width: auto !important;
	min-width: 0 !important;
	height: 40px !important;
	min-height: 0 !important;
	padding: 0 22px !important;
	border-radius: 999px !important;
	background: var(--g-purple, #7A00C8) !important;
	color: #fff !important;
	font-family: var(--g-font-body, sans-serif) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: none !important;
	box-shadow: none !important;
	transition: background .2s ease !important;
}
.gifty-search--fibo .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover { background: var(--g-purple-dark, #5A0096) !important; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit::before { display: none !important; }
.gifty-search--fibo .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit svg { display: none !important; }
.gifty-search--fibo .dgwt-wcas-preloader { right: 110px !important; }
.gifty-search--fibo .dgwt-wcas-voice-search { display: none !important; }
.dgwt-wcas-suggestions-wrapp { margin-top: 6px !important; border: 1px solid var(--g-line, #ECE6F2) !important; border-radius: 16px !important; box-shadow: 0 18px 40px rgba(42, 0, 73, .14) !important; overflow: hidden; }
.dgwt-wcas-suggestion { padding: 10px 14px !important; }
.dgwt-wcas-suggestion-selected { background: var(--g-purple-50, #F6EEFD) !important; }
.dgwt-wcas-st strong, .dgwt-wcas-sp { color: var(--g-purple, #7A00C8) !important; }
.dgwt-wcas-si img { border-radius: 8px; }

/* Sticky */
.gifty-header.is-stuck { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 6px 24px rgba(42, 0, 73, .08); animation: gSlideDown .3s ease; }
.gifty-header.is-stuck .gifty-header__bar { min-height: 66px; }
.gifty-header.is-stuck .gifty-logo__img { height: calc(var(--logo-h, 52px) * .8) !important; }
.gifty-header.is-stuck .gifty-nav { display: none; }
body.admin-bar .gifty-header.is-stuck { top: 32px; }
@keyframes gSlideDown { from { transform: translateY(-100%); } to { transform: none; } }

/* Desktop navigation */
.gifty-nav { position: relative; background: #fff; border-top: 1px solid var(--g-line, #ECE6F2); border-bottom: 1px solid var(--g-line, #ECE6F2); }
.gifty-nav__list { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; list-style: none; }
.gifty-nav__item { position: relative; display: flex; align-items: center; }
.gifty-nav__item.is-mega { position: static; }
.gifty-nav__link { position: relative; display: block; padding: 14px 14px; color: #34303A; font-size: 14.5px; font-weight: 600; letter-spacing: .01em; }
.gifty-nav__link::after { content: ""; position: absolute; left: 50%; bottom: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--g-yellow, #FFD900); transform: translateX(-50%) scale(0); transition: transform .2s ease; }
.gifty-nav__item:hover > .gifty-nav__link, .gifty-nav__item.is-current > .gifty-nav__link { color: var(--g-purple, #7A00C8); }
.gifty-nav__item:hover > .gifty-nav__link::after, .gifty-nav__item.is-current > .gifty-nav__link::after { transform: translateX(-50%) scale(1); }
.gifty-nav__item.has-children > .gifty-nav__link { padding-right: 2px; }
.gifty-nav__caret { display: grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; padding: 0; border: 0; background: none; color: #8C8496; cursor: pointer; transition: transform .2s ease; }
.gifty-nav__item:hover > .gifty-nav__caret, .gifty-nav__item.is-open > .gifty-nav__caret { transform: rotate(180deg); color: var(--g-purple, #7A00C8); }

.gifty-dropdown, .gifty-mega { position: absolute; top: 100%; z-index: 50; visibility: hidden; opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.gifty-nav__item:hover > .gifty-dropdown, .gifty-nav__item:focus-within > .gifty-dropdown, .gifty-nav__item.is-open > .gifty-dropdown,
.gifty-nav__item:hover > .gifty-mega, .gifty-nav__item:focus-within > .gifty-mega, .gifty-nav__item.is-open > .gifty-mega { visibility: visible; opacity: 1; transform: none; }
.gifty-dropdown { left: 0; min-width: 240px; margin: 0; padding: 10px; list-style: none; background: #fff; border: 1px solid var(--g-line, #ECE6F2); border-radius: 18px; box-shadow: 0 18px 40px rgba(42, 0, 73, .12); }
.gifty-dropdown a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--g-ink, #1C1C1C); font-size: 14.5px; font-weight: 500; }
.gifty-dropdown a:hover { background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.gifty-mega { left: 0; right: 0; background: #fff; border-top: 1px solid var(--g-line, #ECE6F2); box-shadow: 0 24px 48px rgba(42, 0, 73, .12); }
.gifty-mega__inner { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 32px; max-width: var(--g-container, 1280px); margin: 0 auto; padding: 28px var(--g-gutter, 32px) 32px; }
.gifty-mega__cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px 32px; }
.gifty-mega__heading { display: block; margin-bottom: 10px; color: var(--g-purple, #7A00C8); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gifty-mega__col ul { margin: 0; padding: 0; list-style: none; }
.gifty-mega__col li a { display: block; padding: 5px 0; color: var(--g-ink, #1C1C1C); font-size: 14.5px; transition: color .15s ease, transform .15s ease; }
.gifty-mega__col li a:hover { color: var(--g-purple, #7A00C8); transform: translateX(3px); }
.gifty-mega__promo { position: relative; display: flex; align-items: flex-end; min-height: 260px; border-radius: 20px; overflow: hidden; background: linear-gradient(145deg, var(--g-purple, #7A00C8), var(--g-purple-deep, #2A0049)); color: #fff; }
.gifty-mega__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gifty-mega__promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(42, 0, 73, .85)); }
.gifty-mega__promo-text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; padding: 20px; }
.gifty-mega__promo-text strong { font-family: var(--g-font-head, serif); font-size: 22px; }
.gifty-mega__promo-text span { font-size: 14px; opacity: .9; }

/* Mobile search row (hidden on desktop) */
.gifty-header__msearch { display: none; }

@media (max-width: 1200px) { .gifty-header__bar { gap: 24px; } .gifty-cartbtn__label { display: none; } .gifty-cartbtn { padding: 0 14px; } }

/* ---------- Tablet & phone header ---------- */
@media (max-width: 1024px) {
	.gifty-nav { display: none; }
	.gifty-header__bar { grid-template-columns: auto minmax(0, 1fr) auto; gap: 4px; min-height: 60px; }
	.gifty-header .gifty-header__burger { display: inline-grid; margin-left: -8px; }
	.gifty-logo { justify-self: start; margin-left: 2px; }
	.gifty-logo__img { height: var(--logo-h-m, 38px) !important; max-width: 150px; }
	.gifty-header__search { display: none; }
	.gifty-header__actions { gap: 0; margin-right: -6px; }
	.gifty-hbtn { width: 44px; height: 44px; }
	.gifty-hbtn__tip { display: none; }
	.gifty-header__wishlist { display: none; }
	.gifty-cartbtn { width: 44px; height: 44px; margin-left: 2px; padding: 0; justify-content: center; background: transparent; color: var(--g-ink, #1C1C1C); box-shadow: none; }
	.gifty-cartbtn:hover { background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
	.gifty-cartbtn .g-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; line-height: 18px; font-size: 11px; }
	.gifty-cartbtn .g-count.is-empty { display: none; }
	.gifty-header__msearch { display: block; padding: 0 0 12px; }
	.gifty-header__msearch .gifty-search--fibo .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
	.gifty-header__msearch form.gifty-search input[type="search"] { height: 46px !important; background: #F7F4FA !important; border-color: transparent !important; font-size: 15px !important; padding-right: 16px !important; }
	.gifty-header__msearch .gifty-search--fibo .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
	.gifty-header__msearch form.gifty-search button { display: none !important; }
	/* When stuck: compact bar, search opens via icon */
	.gifty-header.is-stuck .gifty-header__bar { min-height: 56px; }
	.gifty-header.is-stuck .gifty-header__msearch { display: none; }
	.gifty-header.is-stuck.is-search-open .gifty-header__msearch { display: block; }
	.gifty-header.is-stuck .gifty-header__search-toggle { display: inline-grid; }
	.gifty-header.is-stuck .gifty-logo__img { height: calc(var(--logo-h-m, 38px) * .85) !important; }
}
@media (max-width: 782px) { body.admin-bar .gifty-header.is-stuck { top: 46px; } }
@media (max-width: 600px) { body.admin-bar .gifty-header.is-stuck { top: 0; } }

/* ---------- Mobile menu drawer ---------- */
.gifty-mnav { position: fixed; inset: 0; z-index: 1100; visibility: hidden; }
.gifty-mnav::before { content: ""; position: absolute; inset: 0; background: rgba(28, 12, 40, .5); opacity: 0; transition: opacity .3s ease; }
.gifty-mnav.is-open { visibility: visible; }
.gifty-mnav.is-open::before { opacity: 1; }
.gifty-mnav__panel { position: absolute; top: 0; bottom: 0; left: 0; display: flex; flex-direction: column; width: min(88vw, 390px); background: #fff; transform: translateX(-100%); transition: transform .32s cubic-bezier(.2, .7, .2, 1); border-radius: 0 24px 24px 0; overflow: hidden; }
.gifty-mnav.is-open .gifty-mnav__panel { transform: none; }
.gifty-mnav__head { display: flex; align-items: center; justify-content: space-between; padding: 10px 10px 10px 18px; border-bottom: 1px solid var(--g-line, #ECE6F2); }
.gifty-mnav__head .gifty-logo__img { height: 34px !important; }
.gifty-mnav__body { flex: 1; overflow-y: auto; padding: 14px 0 calc(24px + env(safe-area-inset-bottom)); -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.gifty-mnav__hello { display: flex; align-items: center; gap: 12px; margin: 0 14px 16px; padding: 14px; border-radius: 18px; background: linear-gradient(135deg, var(--g-purple, #7A00C8), #9B2EE6); color: #fff; }
.gifty-mnav__hello:hover { color: #fff; }
.gifty-mnav__hello > span:nth-child(2) { flex: 1; display: flex; flex-direction: column; }
.gifty-mnav__hello small { opacity: .85; font-size: 12.5px; }
.gifty-mnav__avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.gifty-mnav__cats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px 8px; margin: 0 14px; }
.gifty-mnav__cat { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--g-ink, #1C1C1C); font-size: 11.5px; font-weight: 600; line-height: 1.25; text-align: center; }
.gifty-mnav__cat-img { display: grid; place-items: center; width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.gifty-mnav__cat-img img { width: 100%; height: 100%; object-fit: cover; }
.gifty-mnav__allcats { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 14px 8px; padding: 11px; border: 1.5px solid var(--g-line, #ECE6F2); border-radius: 999px; font-weight: 700; font-size: 14px; }
.gifty-mnav__list { margin: 0; padding: 0; list-style: none; }
.gifty-mnav__list--0 { margin-top: 8px; border-top: 1px solid #F1ECF6; }
.gifty-mnav__row { display: flex; align-items: center; }
.gifty-mnav__row .gifty-mnav__link { flex: 1; }
.gifty-mnav__link { display: block; padding: 15px 20px; color: var(--g-ink, #1C1C1C); font-size: 16px; font-weight: 600; }
.gifty-mnav__list--1 .gifty-mnav__link { padding: 11px 20px 11px 32px; font-size: 15px; font-weight: 500; }
.gifty-mnav__list--2 .gifty-mnav__link { padding: 9px 20px 9px 44px; font-size: 14.5px; font-weight: 400; color: var(--g-muted, #5F5A66); }
.gifty-mnav__item { border-bottom: 1px solid #F4F0F8; }
.gifty-mnav__list--1 .gifty-mnav__item, .gifty-mnav__list--2 .gifty-mnav__item { border: 0; }
.gifty-mnav__toggle { display: grid; place-items: center; width: 52px; height: 52px; padding: 0; border: 0; background: none; color: var(--g-muted, #5F5A66); cursor: pointer; transition: transform .2s ease; }
.gifty-mnav__toggle[aria-expanded="true"] { transform: rotate(180deg); color: var(--g-purple, #7A00C8); }
.gifty-mnav__sub { background: #FBF9FD; padding: 4px 0 8px; }
.gifty-mnav__quick { display: grid; gap: 2px; margin: 16px 14px 0; padding: 8px; border-radius: 18px; background: var(--g-cream-light, #FFFBEA); }
.gifty-mnav__quick a { display: flex; align-items: center; gap: 12px; padding: 11px 10px; color: var(--g-ink, #1C1C1C); font-weight: 600; font-size: 14.5px; }
.gifty-mnav__quick .g-icon { color: var(--g-purple, #7A00C8); }

/* ---------- App-style bottom navigation (phones) ---------- */
.gifty-bnav { display: none; }
@media (max-width: 767px) {
	.gifty-bnav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 960;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
		padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, .97);
		border-top: 1px solid var(--g-line, #ECE6F2);
		box-shadow: 0 -8px 24px rgba(42, 0, 73, .06);
		backdrop-filter: blur(8px);
	}
	.gifty-bnav a { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px; min-height: 50px; justify-content: center; border-radius: 14px; color: #6B6474; font-size: 11px; font-weight: 600; -webkit-tap-highlight-color: transparent; }
	.gifty-bnav a.is-active { color: var(--g-purple, #7A00C8); }
	.gifty-bnav a.is-active::before { content: ""; position: absolute; top: -6px; width: 26px; height: 3px; border-radius: 0 0 3px 3px; background: var(--g-purple, #7A00C8); }
	.gifty-bnav .g-count { top: 2px; right: calc(50% - 22px); }
	body.gifty-has-bnav { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
	/* Product pages use the sticky Add to Cart bar instead; checkout stays distraction-free. */
	body.single-product .gifty-bnav, body.woocommerce-checkout .gifty-bnav, body.gifty-menu-open .gifty-bnav { display: none; }
	body.single-product.gifty-has-bnav, body.woocommerce-checkout.gifty-has-bnav { padding-bottom: 0; }
}

/* ---------- Footer ---------- */
.gifty-footer { position: relative; margin-top: 0; padding: clamp(48px, 7vw, 80px) 0 24px; background: var(--g-purple-deep, #2A0049); color: rgba(255, 255, 255, .78); font-size: 15px; overflow: hidden; }
.gifty-footer::before { content: ""; position: absolute; top: -140px; right: -140px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 217, 0, .18), transparent 70%); pointer-events: none; }
.gifty-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
.gifty-footer__brand p { max-width: 340px; margin: 16px 0 20px; }
.gifty-footer__logo { height: 64px !important; width: auto !important; }
.gifty-footer__name { font-family: var(--g-font-head, serif); font-size: 36px; font-weight: 800; color: #fff; }
.gifty-footer__title { margin: 0 0 16px; color: #fff; font-family: var(--g-font-body, sans-serif); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gifty-footer__links { margin: 0; padding: 0; list-style: none; }
.gifty-footer__links li { margin: 0 0 10px; }
.gifty-footer__links a, .gifty-footer__hours { display: inline-flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, .78); transition: color .2s ease; }
.gifty-footer__links a:hover { color: var(--g-yellow, #FFD900); }
.gifty-footer__links .g-icon { margin-top: 3px; color: var(--g-yellow, #FFD900); }
.gifty-footer__social { display: flex; gap: 10px; }
.gifty-footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; transition: background .2s ease, color .2s ease, transform .2s ease; }
.gifty-footer__social a:hover { background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); transform: translateY(-3px); }
.gifty-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13.5px; }
.gifty-footer__copy { margin: 0; }
.gifty-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.gifty-footer__payments li { padding: 5px 10px; border-radius: 6px; background: #fff; color: var(--g-purple-deep, #2A0049); font-size: 11.5px; font-weight: 800; letter-spacing: .02em; }
@media (max-width: 1024px) { .gifty-footer__grid { grid-template-columns: 1fr 1fr 1fr; } .gifty-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 767px) {
	.gifty-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
	.gifty-footer__contact { grid-column: 1 / -1; }
	.gifty-footer__bottom { flex-direction: column; align-items: flex-start; margin-top: 32px; }
	.gifty-footer { padding-bottom: 96px; } /* room for floating buttons */
}

/* ---------- Hero ---------- */
.g-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--g-cream-light, #FFFBEA) 0%, #F9F1FF 100%); }
.g-hero--md { --hero-h: clamp(320px, 42vh, 420px); }
.g-hero--lg { --hero-h: clamp(380px, 50vh, 500px); }
.g-hero--xl { --hero-h: clamp(460px, 68vh, 640px); }
/* All slides share one grid cell, so the hero is as tall as its tallest slide. */
.g-hero__slides { display: grid; grid-template-columns: minmax(0, 1fr); }
.g-hero__slide { position: relative; grid-area: 1 / 1; min-width: 0; display: flex; align-items: center; min-height: var(--hero-h); opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.g-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.g-hero__media { position: absolute; inset: 0; display: block; }
.g-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transform: scale(1.04); transition: transform 7s ease; }
.g-hero__slide.is-active .g-hero__img { transform: scale(1); }
.g-hero__slide--dark::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255, 251, 234, .96) 0%, rgba(255, 251, 234, .8) 36%, rgba(255, 251, 234, 0) 62%); }
.g-hero__slide--light::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(42, 0, 73, .88) 0%, rgba(42, 0, 73, .55) 40%, rgba(42, 0, 73, 0) 66%); }
.g-hero__slide.no-image::before { display: none; }
.g-hero__content { position: relative; z-index: 2; padding-top: 36px; padding-bottom: 44px; }
.g-hero__box { max-width: 560px; }
.g-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 6px 14px; border-radius: 999px; background: #fff; color: var(--g-purple, #7A00C8); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(122, 0, 200, .12); }
.g-hero__eyebrow .g-icon { color: var(--g-yellow-dark, #F2C500); }
.g-hero__title { margin: 0 0 14px; font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.9rem); line-height: 1.03; letter-spacing: -.025em; }
.g-hl { position: relative; white-space: nowrap; color: var(--g-purple, #7A00C8); background: linear-gradient(transparent 64%, var(--g-yellow, #FFD900) 64%, var(--g-yellow, #FFD900) 90%, transparent 90%); }
.g-hero__text { max-width: 470px; margin: 0 0 24px; color: var(--g-muted, #5F5A66); font-size: clamp(15.5px, 1.2vw, 18px); }
.g-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.g-hero__badges { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 13.5px; font-weight: 600; color: var(--g-ink, #1C1C1C); }
.g-hero__badges li { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.g-hero__badges .g-icon { color: var(--g-purple, #7A00C8); }
.g-hero__slide--light .g-hero__title, .g-hero__slide--light .g-hero__badges { color: #fff; }
.g-hero__slide--light .g-hero__text { color: rgba(255, 255, 255, .85); }
.g-hero__slide--light .g-hl { color: #fff; background: linear-gradient(transparent 64%, rgba(255, 217, 0, .75) 64%, rgba(255, 217, 0, .75) 90%, transparent 90%); }
.g-hero__slide--light .g-hero__badges .g-icon { color: var(--g-yellow, #FFD900); }
.g-hero__dots { position: absolute; left: 50%; bottom: 16px; z-index: 3; display: flex; gap: 8px; transform: translateX(-50%); }
.g-hero__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: rgba(122, 0, 200, .25); cursor: pointer; transition: width .3s ease, background .3s ease; }
.g-hero__dot.is-active { width: 28px; background: var(--g-purple, #7A00C8); }
/* Decorative art when no image is set */
.g-hero__art { position: absolute; inset: 0; pointer-events: none; }
.g-hero__art span { position: absolute; border-radius: 50%; }
.g-hero__art span:nth-child(1) { right: 8%; top: 50%; width: min(30vw, 400px); aspect-ratio: 1; transform: translateY(-50%); background: radial-gradient(circle at 35% 35%, #9B2EE6, var(--g-purple, #7A00C8) 60%, #5A0096); box-shadow: 0 40px 80px rgba(122, 0, 200, .3); }
.g-hero__art span:nth-child(2) { right: 32%; bottom: 12%; width: min(10vw, 130px); aspect-ratio: 1; background: var(--g-yellow, #FFD900); }
.g-hero__art span:nth-child(3) { right: 4%; top: 12%; width: min(7vw, 90px); aspect-ratio: 1; background: var(--g-cream, #FFF6B8); border: 8px solid #fff; }

/* Phones: image on top, text below – no text over busy photos, shorter overall. */
@media (max-width: 767px) {
	.g-hero__slide { flex-direction: column; align-items: stretch; min-height: 0; }
	.g-hero__media { position: relative; inset: auto; aspect-ratio: 16 / 9; overflow: hidden; }
	.g-hero__img { object-position: center; }
	.g-hero__slide::before { display: none; }
	.g-hero__slide--light { background: var(--g-purple-deep, #2A0049); }
	.g-hero__art { position: relative; height: 150px; }
	.g-hero__art span:nth-child(1) { width: 150px; right: 50%; top: 50%; transform: translate(50%, -50%); }
	.g-hero__art span:nth-child(2) { width: 50px; right: 22%; bottom: 14px; }
	.g-hero__art span:nth-child(3) { width: 40px; right: 16%; top: 14px; border-width: 5px; }
	.g-hero__content { padding-top: 18px; padding-bottom: 40px; }
	.g-hero__eyebrow { margin-bottom: 10px; padding: 5px 12px; font-size: 11px; }
	.g-hero__title { font-size: clamp(1.9rem, 8.4vw, 2.5rem); margin-bottom: 10px; }
	.g-hero .g-hl { white-space: normal; }
	.g-hero__content { width: 100%; }
	.g-hero__text { margin-bottom: 18px; font-size: 15px; }
	.g-hero__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
	.g-hero__actions .g-btn { min-height: 48px; padding: 10px 12px; font-size: 14.5px; }
	.g-hero__actions .g-btn:only-child { grid-column: 1 / -1; }
	.g-hero__badges { flex-wrap: nowrap; overflow-x: auto; margin: 16px calc(-1 * var(--g-gutter, 16px)) 0; padding: 0 var(--g-gutter, 16px); font-size: 12.5px; scrollbar-width: none; }
	.g-hero__badges::-webkit-scrollbar { display: none; }
	.g-hero__dots { bottom: 14px; }
}

/* ---------- Category cards ---------- */
.g-cats { list-style: none; margin: 0; padding: 0; }
.g-cat { margin: 0; }
.g-cat__link { display: flex; flex-direction: column; gap: 12px; color: var(--g-ink, #1C1C1C); }
.g-cat__media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: 22px; background: var(--g-purple-50, #F6EEFD); }
.g-cat__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-cat__link:hover .g-cat__img { transform: scale(1.07); }
.g-cat__ph { display: grid; place-items: center; width: 100%; height: 100%; color: var(--g-purple, #7A00C8); }
.g-cat__body { display: flex; flex-direction: column; align-items: center; text-align: center; }
.g-cat__name { font-weight: 700; font-size: 15.5px; transition: color .2s ease; }
.g-cat__count { font-size: 13px; color: var(--g-muted, #5F5A66); }
.g-cat__link:hover .g-cat__name { color: var(--g-purple, #7A00C8); }
.g-cats--tile .g-cat__media { box-shadow: 0 0 0 1px var(--g-line, #ECE6F2) inset; }
.g-cats--overlay .g-cat__link { position: relative; }
.g-cats--overlay .g-cat__media { aspect-ratio: 4 / 5; }
.g-cats--overlay .g-cat__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(42, 0, 73, .8)); }
.g-cats--overlay .g-cat__body { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 1; color: #fff; }
.g-cats--overlay .g-cat__name { font-size: 17px; color: #fff; }
.g-cats--overlay .g-cat__count { color: rgba(255, 255, 255, .8); }
.g-cats--circle .g-cat__media { border-radius: 50%; border: 4px solid #fff; box-shadow: 0 10px 28px rgba(42, 0, 73, .1); transition: box-shadow .3s ease, transform .3s ease; }
.g-cats--circle .g-cat__link:hover .g-cat__media { transform: translateY(-4px); box-shadow: 0 0 0 3px var(--g-yellow, #FFD900), 0 16px 32px rgba(42, 0, 73, .14); }
@media (max-width: 1024px) { .g-cats.g-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 767px) {
	.g-cats.g-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 10px; }
	.g-cat__name { font-size: 13.5px; }
	.g-cat__link { gap: 8px; }
	.g-cat__media { border-radius: 16px; }
}

/* ---------- Image cards ---------- */
.g-icards { list-style: none; margin: 0; padding: 0; }
.g-icard { margin: 0; }
.g-icard__link { position: relative; display: flex; flex-direction: column; gap: 12px; height: 100%; color: var(--g-ink, #1C1C1C); }
.g-icard__media { position: relative; display: block; overflow: hidden; border-radius: 22px; }
.g-ratio--square .g-icard__media { aspect-ratio: 1; }
.g-ratio--portrait .g-icard__media { aspect-ratio: 4 / 5; }
.g-ratio--landscape .g-icard__media { aspect-ratio: 16 / 10; }
.g-icard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-icard__link:hover .g-icard__img { transform: scale(1.06); }
.g-icard__ph { display: grid; place-items: center; width: 100%; height: 100%; transition: transform .4s ease; }
.g-icard__link:hover .g-icard__ph { transform: scale(1.05); }
.g-icard--purple .g-icard__media { background: linear-gradient(160deg, #F6EEFD, #E6D2FA); color: var(--g-purple, #7A00C8); }
.g-icard--cream .g-icard__media { background: linear-gradient(160deg, #FFFBEA, #FFF1A8); color: #8A6D00; }
.g-icard--yellow .g-icard__media { background: linear-gradient(160deg, #FFE55C, var(--g-yellow, #FFD900)); color: var(--g-purple-deep, #2A0049); }
.g-icard--deep .g-icard__media { background: linear-gradient(160deg, #7A00C8, #2A0049); color: var(--g-yellow, #FFD900); }
.g-icard__body { display: flex; flex-direction: column; gap: 2px; }
.g-icard__title { font-weight: 700; font-size: 16px; }
.g-icard__sub { font-size: 13.5px; color: var(--g-muted, #5F5A66); }
.g-icards--tile .g-icard__body, .g-icards--circle .g-icard__body { align-items: center; text-align: center; }
.g-icards--overlay .g-icard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(28, 0, 48, .78)); opacity: .9; transition: opacity .3s ease; }
.g-icards--overlay .g-icard__body { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; }
.g-icards--overlay .g-icard__title { font-family: var(--g-font-head, serif); font-size: 21px; color: #fff; }
.g-icards--overlay .g-icard__sub { color: rgba(255, 255, 255, .85); }
.g-icards--overlay .g-icard__link { gap: 0; }
.g-icards--circle .g-icard__media { border-radius: 50%; border: 4px solid #fff; box-shadow: 0 10px 28px rgba(42, 0, 73, .1); }
.g-icards--circle .g-icard__link:hover .g-icard__media { box-shadow: 0 0 0 3px var(--g-yellow, #FFD900), 0 16px 32px rgba(42, 0, 73, .14); }
.g-icards--circle .g-icard__title { font-size: 15px; }
.g-icards--wide .g-icard__link { gap: 0; }
.g-icards--wide .g-icard__media { aspect-ratio: 4 / 3; }
.g-icards--wide .g-icard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(28, 0, 48, .82)); }
.g-icards--wide .g-icard__body { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; color: #fff; }
.g-icards--wide .g-icard__title { font-family: var(--g-font-head, serif); font-size: 24px; color: #fff; }
.g-icards--wide .g-icard__sub { color: rgba(255, 255, 255, .85); }
.g-icard__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--g-yellow, #FFD900); font-weight: 700; font-size: 14px; }
.g-icard__link:hover .g-icard__cta .g-icon { transform: translateX(4px); }
.g-icard__cta .g-icon { transition: transform .2s ease; }
@media (max-width: 1024px) { .g-icards.g-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) {
	.g-icards.g-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.g-icards--circle.g-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.g-icards--overlay .g-icard__title { font-size: 17px; }
	.g-icards--overlay .g-icard__body { left: 12px; right: 12px; bottom: 12px; }
	.g-icard__media { border-radius: 16px; }
	.g-icards--circle .g-icard__title { font-size: 13px; }
}

/* ---------- Promo banner ---------- */
.g-banner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 64px); padding: clamp(28px, 5vw, 72px); border-radius: 32px; overflow: hidden; }
.g-banner--purple { background: radial-gradient(circle at 90% 10%, rgba(255, 217, 0, .28), transparent 40%), linear-gradient(135deg, #8A12D6, var(--g-purple, #7A00C8) 50%, #5A0096); color: #fff; }
.g-banner--cream { background: radial-gradient(circle at 10% 90%, rgba(122, 0, 200, .1), transparent 40%), var(--g-cream-light, #FFFBEA); border: 1px solid #F6E7A6; }
.g-banner--yellow { background: radial-gradient(circle at 90% 90%, rgba(255, 255, 255, .5), transparent 40%), var(--g-yellow, #FFD900); }
.g-banner--reverse .g-banner__content { order: 2; }
.g-banner__title { margin: 0 0 14px; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem); }
.g-banner--purple .g-banner__title { color: #fff; }
.g-banner--purple .g-eyebrow { color: var(--g-yellow, #FFD900); }
.g-banner__text { margin: 0 0 20px; font-size: 17px; opacity: .9; max-width: 520px; }
.g-banner__points { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; font-weight: 600; }
.g-banner__points li { display: flex; align-items: center; gap: 10px; }
.g-banner__points .g-icon { flex: 0 0 26px; width: 26px; height: 26px; padding: 4px; border-radius: 50%; background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); box-sizing: border-box; }
.g-banner--yellow .g-banner__points .g-icon, .g-banner--cream .g-banner__points .g-icon { background: var(--g-purple, #7A00C8); color: #fff; }
.g-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.g-banner__media { position: relative; min-height: 320px; display: grid; place-items: center; }
.g-banner__img { display: block; border-radius: 24px; box-shadow: 0 30px 60px rgba(28, 0, 48, .3); object-fit: cover; }
.g-banner__img--1 { width: 82%; aspect-ratio: 4 / 5; transform: rotate(-2deg); }
.g-banner__img--2, .g-banner__img--3 { position: absolute; width: 40%; aspect-ratio: 1; border: 6px solid #fff; }
.g-banner__img--2 { right: 0; top: 4%; transform: rotate(6deg); }
.g-banner__img--3 { left: 0; bottom: 4%; transform: rotate(-7deg); }
.g-banner__art { display: grid; place-items: center; width: min(100%, 340px); aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .14); color: var(--g-yellow, #FFD900); }
.g-banner--cream .g-banner__art, .g-banner--yellow .g-banner__art { background: rgba(122, 0, 200, .1); color: var(--g-purple, #7A00C8); }
/* Full-width band: background spans the screen, content keeps the page grid. */
.g-banner--full {
	border-radius: 0;
	padding: clamp(48px, 6vw, 96px) max(var(--g-gutter, 32px), calc((100% - var(--g-container, 1280px)) / 2));
	gap: clamp(32px, 5vw, 80px);
}
.g-banner--full .g-banner__media { min-height: 420px; }
.g-banner--full .g-banner__img--1 { width: 72%; aspect-ratio: 4 / 5; border-radius: 28px; transform: rotate(-2deg); }
.g-banner--full .g-banner__img--2 { width: 38%; right: 2%; top: 0; border-radius: 22px; }
.g-banner--full .g-banner__img--3 { width: 38%; left: 0; bottom: 0; border-radius: 22px; }
.g-banner--full::before { content: ""; position: absolute; right: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 217, 0, .22), transparent 70%); pointer-events: none; }
.g-banner--full .g-banner__content { position: relative; z-index: 1; }
@media (max-width: 900px) {
	.g-banner--full { border-radius: 0; padding: 40px var(--g-gutter, 16px); }
	.g-banner--full .g-banner__media { min-height: 300px; }
}

@media (max-width: 900px) {
	.g-banner { grid-template-columns: 1fr; border-radius: 24px; }
	.g-banner--reverse .g-banner__content { order: 0; }
	.g-banner__media { min-height: 0; }
	.g-banner__img--1 { width: 70%; }
	.g-banner__actions .g-btn { flex: 1 1 auto; }
}

/* ---------- Steps ---------- */
.g-steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.g-steps::before { content: ""; position: absolute; top: 44px; left: 12.5%; right: 12.5%; border-top: 2px dashed #D9C3F2; }
.g-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.g-step__icon { position: relative; display: grid; place-items: center; width: 88px; height: 88px; margin-bottom: 18px; border-radius: 50%; background: #fff; color: var(--g-purple, #7A00C8); box-shadow: 0 12px 30px rgba(122, 0, 200, .14); transition: transform .3s ease, background .3s ease, color .3s ease; }
.g-step:hover .g-step__icon { transform: translateY(-4px); background: var(--g-purple, #7A00C8); color: #fff; }
.g-step__num { position: absolute; top: -2px; right: -2px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); font-size: 14px; font-weight: 800; border: 3px solid #fff; }
.g-step__title { margin: 0 0 6px; font-size: 19px; }
.g-step__text { margin: 0; max-width: 260px; color: var(--g-muted, #5F5A66); font-size: 15px; }
@media (max-width: 1024px) { .g-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .g-steps::before { display: none; } }
@media (max-width: 767px) {
	.g-steps { grid-template-columns: 1fr; gap: 14px; }
	.g-step { flex-direction: row; align-items: center; gap: 16px; text-align: left; padding: 14px; border-radius: 18px; background: #fff; box-shadow: 0 4px 14px rgba(42, 0, 73, .06); }
	.g-step__icon { flex: 0 0 64px; width: 64px; height: 64px; margin: 0; }
	.g-step__icon .g-icon { width: 26px; height: 26px; }
	.g-step__num { width: 24px; height: 24px; font-size: 12px; }
	.g-step__title { font-size: 16.5px; margin-bottom: 2px; }
	.g-step__text { font-size: 14px; }
}

/* ---------- Features ---------- */
.g-features { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.g-features--cards .g-feature { display: flex; gap: 16px; padding: 26px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 22px; background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.g-features--cards .g-feature:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(42, 0, 73, .1); border-color: transparent; }
.g-feature__icon { flex: 0 0 56px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); transition: background .3s ease, color .3s ease; }
.g-feature:hover .g-feature__icon { background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); }
.g-feature__title { margin: 4px 0 4px; font-family: var(--g-font-body, sans-serif); font-size: 17px; font-weight: 800; letter-spacing: 0; }
.g-feature__text { margin: 0; color: var(--g-muted, #5F5A66); font-size: 14.5px; }
.g-features--inline { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; }
.g-features--inline .g-feature { display: flex; align-items: center; gap: 10px; }
.g-features--inline .g-feature__icon { flex-basis: 44px; width: 44px; height: 44px; border-radius: 50%; }
.g-features--inline .g-feature__title { margin: 0; font-size: 15px; }
.g-features--inline .g-feature__text { display: none; }
@media (max-width: 1024px) { .g-features--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) {
	.g-features--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.g-features--cards .g-feature { flex-direction: column; gap: 10px; padding: 16px; border-radius: 18px; }
	.g-feature__icon { width: 46px; height: 46px; flex-basis: 46px; border-radius: 14px; }
	.g-feature__title { font-size: 15px; }
	.g-feature__text { font-size: 13px; }
	.g-features--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
	.g-features--inline .g-feature__title { font-size: 13.5px; }
}

/* ---------- Reviews ---------- */
.g-reviews { list-style: none; }
.g-review { margin: 0; display: flex; }
.g-review__card { position: relative; display: flex; flex-direction: column; width: 100%; margin: 0; padding: 28px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 24px; background: #fff; }
.g-review__card::before { content: "“"; position: absolute; top: 4px; right: 22px; font-family: var(--g-font-head, serif); font-size: 96px; line-height: 1; color: var(--g-purple-100, #EBD9FB); }
.g-review__stars { display: flex; gap: 2px; margin-bottom: 12px; font-size: 18px; color: #E3DCEA; }
.g-review__stars .is-on { color: #F5A300; }
.g-review__text { flex: 1; margin: 0 0 20px; padding: 0; border: 0; font-size: 16px; line-height: 1.65; color: #3A3540; font-style: normal; }
.g-review__who { display: flex; align-items: center; gap: 12px; }
.g-review__avatar { flex: 0 0 48px; width: 48px !important; height: 48px !important; border-radius: 50%; object-fit: cover; }
.g-review__avatar--initial { display: grid; place-items: center; background: var(--g-purple, #7A00C8); color: #fff; font-weight: 800; font-size: 18px; }
.g-review__name { display: block; font-size: 15.5px; }
.g-review__meta { display: block; font-size: 13px; color: var(--g-muted, #5F5A66); }
@media (max-width: 767px) { .g-review__card { padding: 22px; } .g-review__text { font-size: 15px; } }

/* ---------- Gallery ---------- */
.g-gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.g-gallery__item { position: relative; aspect-ratio: 1; margin: 0; border-radius: 18px; overflow: hidden; background: var(--g-purple-50, #F6EEFD); }
.g-gallery__img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-gallery__over { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(122, 0, 200, .55); color: #fff; opacity: 0; transition: opacity .3s ease; }
.g-gallery__item:hover .g-gallery__over { opacity: 1; }
.g-gallery__item:hover .g-gallery__img { transform: scale(1.08); }
.g-gallery__item--ph { display: grid; place-items: center; color: #C9A8EC; }
@media (max-width: 767px) { .g-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; } .g-gallery__item { border-radius: 12px; } }

/* ---------- Newsletter ---------- */
.g-newsletter { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 32px; padding: clamp(28px, 5vw, 64px); border-radius: 32px; background: radial-gradient(circle at 0% 100%, rgba(255, 217, 0, .22), transparent 40%), linear-gradient(135deg, var(--g-purple, #7A00C8), var(--g-purple-deep, #2A0049)); color: rgba(255, 255, 255, .85); overflow: hidden; }
.g-newsletter__deco { position: absolute; right: -30px; top: -30px; color: rgba(255, 255, 255, .06); transform: rotate(14deg); pointer-events: none; }
.g-newsletter__title { margin: 0 0 10px; color: #fff; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.75rem); }
.g-newsletter .g-eyebrow { color: var(--g-yellow, #FFD900); }
.g-newsletter__text p { margin: 0; font-size: 17px; }
.g-newsletter__form { position: relative; }
.g-newsletter__note { margin: 10px 0 0; font-size: 12.5px; opacity: .7; }
.g-newsletter .fluentform .ff-el-group { margin-bottom: 12px; }
.g-newsletter .fluentform .ff-el-form-control { min-height: 54px; border-radius: 999px !important; border: 0 !important; background: #fff !important; padding: 12px 22px !important; font-size: 16px !important; }
.g-newsletter .fluentform .ff-btn-submit { width: 100%; min-height: 54px; border-radius: 999px !important; background: var(--g-yellow, #FFD900) !important; color: var(--g-ink, #1C1C1C) !important; font-weight: 800 !important; font-size: 16px !important; border: 0 !important; }
.g-newsletter .fluentform .ff-el-input--label { display: none; }
.g-newsletter .ff-message-success { border-radius: 16px; background: #fff; color: var(--g-ink, #1C1C1C); border: 0; }
@media (max-width: 900px) { .g-newsletter { grid-template-columns: 1fr; border-radius: 24px; text-align: center; } }

/* ---------- Stats ---------- */
.g-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin: 0; padding: clamp(28px, 4vw, 48px); list-style: none; border-radius: 28px; }
.g-stats--purple { background: linear-gradient(135deg, var(--g-purple, #7A00C8), var(--g-purple-deep, #2A0049)); color: #fff; }
.g-stats--light { background: var(--g-cream-light, #FFFBEA); }
.g-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.g-stat__num { font-family: var(--g-font-head, serif); font-size: clamp(2.2rem, 1.6rem + 2vw, 3.25rem); font-weight: 800; line-height: 1; }
.g-stats--purple .g-stat__num { color: var(--g-yellow, #FFD900); }
.g-stats--light .g-stat__num { color: var(--g-purple, #7A00C8); }
.g-stat__label { font-weight: 600; font-size: 15px; opacity: .9; }
@media (max-width: 767px) { .g-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; } }

/* ---------- Contact ---------- */
.g-contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.g-contact-card { display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; padding: 28px 20px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 22px; background: #fff; color: var(--g-ink, #1C1C1C); text-align: center; box-sizing: border-box; transition: transform .3s ease, box-shadow .3s ease; }
a.g-contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(42, 0, 73, .1); color: var(--g-ink, #1C1C1C); }
.g-contact-card__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 6px; border-radius: 50%; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.g-contact-card__label { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--g-muted, #5F5A66); }
.g-contact-card__value { font-weight: 700; font-size: 15.5px; }
.g-contact-map { overflow: hidden; border: 1px solid var(--g-line, #ECE6F2); border-radius: 24px; background: #fff; box-shadow: 0 16px 40px rgba(42, 0, 73, .06); }
.g-contact-map__frame { line-height: 0; }
.g-contact-map iframe, .g-contact-map__ph { display: block; width: 100%; height: 300px; border: 0; background: var(--g-purple-50, #F6EEFD); }
.g-contact-map__ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 20px; line-height: 1.5; color: var(--g-purple, #7A00C8); text-align: center; box-sizing: border-box; }
.g-contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; padding: 24px 26px 26px; }
.g-contact-info__row { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.g-contact-info__icon { flex: 0 0 44px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.g-contact-info h3 { margin: 0 0 4px; font-size: 16px; }
.g-contact-info p { margin: 0; color: var(--g-muted, #5F5A66); font-size: 14.5px; line-height: 1.6; }
.g-contact-info__btn { grid-column: 1 / -1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 999px; background: var(--g-purple, #7A00C8); color: #fff; font-weight: 700; transition: background .2s ease; }
.g-contact-info__btn:hover { background: var(--g-purple-dark, #5A0096); color: #fff; }
@media (max-width: 767px) { .g-contact-map iframe, .g-contact-map__ph { height: 240px; } .g-contact-info { grid-template-columns: 1fr; padding: 20px; } .g-contact-cards { grid-template-columns: 1fr 1fr; } .g-contact-card { padding: 20px 12px; } .g-contact-card__value { font-size: 14px; word-break: break-word; } }

/* ---------- Wishlist ---------- */
.g-wish { position: relative; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .95); color: var(--g-ink, #1C1C1C); box-shadow: 0 4px 12px rgba(42, 0, 73, .12); cursor: pointer; transition: transform .2s ease, color .2s ease; }
.g-wish:hover { color: var(--g-purple, #7A00C8); transform: scale(1.08); }
.g-wish.is-active { color: var(--g-purple, #7A00C8); }
.g-wish.is-active svg path { fill: currentColor; }
.g-wish.is-pop { animation: gPop .45s ease; }
@keyframes gPop { 40% { transform: scale(1.3); } }
.g-wish--single { display: inline-flex; gap: 8px; width: auto; height: auto; min-height: 54px; padding: 0 18px; border: 1.5px solid var(--g-line, #ECE6F2); border-radius: 999px; box-shadow: none; font-weight: 700; font-size: 15px; font-family: inherit; flex: 0 0 auto; }
.g-wish--single:hover { border-color: var(--g-purple, #7A00C8); transform: none; }
@media (max-width: 767px) { .g-wish { width: 34px; height: 34px; } .g-wish .g-icon { width: 18px; height: 18px; } .g-wish--single { width: 54px; padding: 0; justify-content: center; } .g-wish--single .g-icon { width: 22px; height: 22px; } .g-wish__label { display: none; } }

.g-wishlist__count { color: var(--g-muted, #5F5A66); }
.g-wishlist__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.g-wishlist__item { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 14px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 18px; background: #fff; transition: opacity .3s ease; }
.g-wishlist__item.is-removing { opacity: 0; }
.g-wishlist__img img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; display: block; }
.g-wishlist__info { display: flex; flex-direction: column; gap: 4px; }
.g-wishlist__name { font-weight: 700; color: var(--g-ink, #1C1C1C); font-size: 16px; }
.g-wishlist__price { color: var(--g-purple, #7A00C8); font-weight: 800; }
.g-wishlist__price del { color: var(--g-muted, #5F5A66); font-weight: 500; }
.g-wishlist__stock { font-size: 13px; font-weight: 600; }
.g-wishlist__stock.is-in { color: var(--g-success, #1B8A4B); }
.g-wishlist__stock.is-out { color: var(--g-error, #C62828); }
.g-wishlist__actions { display: flex; align-items: center; gap: 8px; }
.g-wishlist__remove { display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: #F4F0F8; color: var(--g-muted, #5F5A66); cursor: pointer; }
.g-wishlist__remove:hover { background: var(--g-error, #C62828); color: #fff; }
@media (max-width: 600px) {
	.g-wishlist__item { grid-template-columns: 80px minmax(0, 1fr); gap: 12px; position: relative; }
	.g-wishlist__img img { width: 80px; height: 80px; }
	.g-wishlist__actions { grid-column: 1 / -1; }
	.g-wishlist__actions .g-btn { flex: 1; }
	.g-wishlist__remove { position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; }
	.g-wishlist__info { padding-right: 32px; }
}
.g-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 48px 20px; text-align: center; }
.g-empty__icon { display: grid; place-items: center; width: 84px; height: 84px; margin-bottom: 8px; border-radius: 50%; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.g-empty h2 { margin: 0; font-size: 1.6rem; }
.g-empty p { color: var(--g-muted, #5F5A66); }

/* ---------- WhatsApp ---------- */
.g-wa {
	position: fixed;
	bottom: 20px;
	z-index: 980;
	display: flex;
	align-items: center;
	gap: 0;
	height: 56px;
	padding: 0 14px;
	border-radius: 999px;
	background: #25D366;
	color: #fff;
	box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
	transition: bottom .3s ease, transform .2s ease, gap .3s ease, padding .3s ease, opacity .2s ease;
}
.g-wa--right { right: 20px; }
.g-wa--left { left: 20px; }
.g-wa:hover { color: #fff; transform: translateY(-2px); gap: 10px; padding: 0 20px 0 14px; }
.g-wa__label { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 700; font-size: 15px; transition: max-width .3s ease; }
.g-wa:hover .g-wa__label { max-width: 140px; }
body.g-lock .g-wa, body.gifty-menu-open .g-wa { opacity: 0; pointer-events: none; }
@media (max-width: 767px) {
	.g-wa { bottom: 16px; height: 52px; padding: 0 12px; }
	.g-wa--right { right: 14px; }
	.g-wa--left { left: 14px; }
	.g-wa:hover { gap: 0; padding: 0 12px; }
	.g-wa:hover .g-wa__label { max-width: 0; }
	body.gpc-sticky-visible .g-wa { bottom: 90px; }
}

/* ---------- Delivery box / PIN / video / modal ---------- */
.g-delivery { margin: 0 0 20px; padding: 14px 16px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 16px; background: #FCFBFE; }
.g-delivery__row { display: flex; gap: 12px; align-items: flex-start; }
.g-delivery__icon { flex: 0 0 40px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); }
.g-delivery__title { display: block; font-size: 15px; }
.g-delivery__sub { display: block; font-size: 13px; color: var(--g-muted, #5F5A66); }
.g-pin { position: relative; display: flex; align-items: center; margin-top: 12px; border: 1.5px solid var(--g-line, #ECE6F2); border-radius: 999px; background: #fff; }
.g-pin:focus-within { border-color: var(--g-purple, #7A00C8); }
.g-pin__icon { display: grid; place-items: center; padding-left: 14px; color: var(--g-muted, #5F5A66); }
.g-pin input[type="text"] { flex: 1; min-width: 0; min-height: 44px; border: 0 !important; background: transparent !important; box-shadow: none !important; padding: 8px 10px !important; letter-spacing: .12em; font-weight: 600; }
.g-pin button { min-height: 36px; margin: 4px; padding: 0 18px; border: 0; border-radius: 999px; background: var(--g-purple, #7A00C8); color: #fff; font-weight: 700; font-family: inherit; cursor: pointer; }
.g-pin button:disabled { opacity: .6; }
.g-pin__result { margin: 8px 4px 0; font-size: 13.5px; font-weight: 600; }
.g-pin__result.is-ok { color: var(--g-success, #1B8A4B); }
.g-pin__result.is-bad { color: var(--g-error, #C62828); }
.g-video-btn { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; padding: 6px 14px 6px 8px; border: 0; border-radius: 999px; background: var(--g-purple-50, #F6EEFD); color: var(--g-purple, #7A00C8); font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer; }
.g-video-btn:hover { background: var(--g-purple, #7A00C8); color: #fff; }
.g-modal { width: min(92vw, 960px); max-width: none; padding: 0; border: 0; border-radius: 20px; background: #000; overflow: visible; }
.g-modal::backdrop { background: rgba(20, 0, 40, .75); }
.g-modal__media { aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; }
.g-modal__media iframe, .g-modal__media video { width: 100%; height: 100%; border: 0; display: block; }
.g-modal__close { position: absolute; top: -52px; right: 0; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: #fff; color: var(--g-ink, #1C1C1C); cursor: pointer; }

/* ---------- Toast ---------- */
.g-toast { position: fixed; left: 50%; bottom: 24px; z-index: 1200; display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px; background: var(--g-ink, #1C1C1C); color: #fff; font-weight: 600; font-size: 14.5px; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); transform: translate(-50%, 150%); transition: transform .35s cubic-bezier(.2, .7, .2, 1); pointer-events: none; }
.g-toast.is-visible { transform: translate(-50%, 0); pointer-events: auto; }
.g-toast a { color: var(--g-yellow, #FFD900); font-weight: 700; }
body.gpc-sticky-visible .g-toast { bottom: 96px; }

/* ---------- Order tracking ---------- */
.g-track__intro { max-width: 560px; margin: 0 auto 20px; text-align: center; color: var(--g-muted, #5F5A66); }
.g-track__account { text-align: center; margin-top: 16px; }

/* ---------- All Categories page ---------- */
.g-allcats { --cols: 6; }
.g-allcats__bar { position: sticky; top: calc(var(--g-sticky-offset, 70px)); z-index: 20; display: flex; flex-direction: column; gap: 14px; margin: 0 calc(-1 * var(--g-gutter, 16px)) 28px; padding: 14px var(--g-gutter, 16px); background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--g-line, #ECE6F2); }
.g-allcats__search { position: relative; display: flex; align-items: center; max-width: 560px; width: 100%; margin: 0 auto; }
.g-allcats__search .g-icon { position: absolute; left: 18px; color: var(--g-muted, #5F5A66); pointer-events: none; }
.g-allcats__search input[type="search"] { height: 50px; padding: 0 20px 0 50px; border-radius: 999px; border: 1.5px solid #E4D9F0; background: #fff; }
.g-allcats__jump { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.g-allcats__group { margin-bottom: clamp(32px, 5vw, 56px); scroll-margin-top: 170px; }
.g-allcats__group[hidden] { display: none; }
.g-allcats__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--g-line, #ECE6F2); }
.g-allcats__title { margin: 0; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); }
.g-allcats__grid { display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 22px 18px; margin: 0; padding: 0; list-style: none; }
.g-allcat { margin: 0; }
.g-allcat[hidden] { display: none; }
.g-allcat a { display: flex; flex-direction: column; gap: 10px; height: 100%; color: var(--g-ink, #1C1C1C); }
.g-allcat__img { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: 20px; background: var(--g-purple-50, #F6EEFD); box-shadow: 0 0 0 1px var(--g-line, #ECE6F2) inset; }
.g-allcat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-allcat a:hover .g-allcat__img img { transform: scale(1.07); }
.g-allcat a:hover .g-allcat__name { color: var(--g-purple, #7A00C8); }
.g-allcat__ph { display: grid; place-items: center; width: 100%; height: 100%; color: var(--g-purple, #7A00C8); }
.g-allcat__name { font-weight: 700; font-size: 15px; line-height: 1.3; text-align: center; transition: color .2s ease; }
.g-allcat__count { margin-top: -6px; font-size: 12.5px; color: var(--g-muted, #5F5A66); text-align: center; }
.g-allcats__none { text-align: center; color: var(--g-muted, #5F5A66); padding: 40px 0; }
@media (max-width: 1024px) { .g-allcats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 767px) {
	.g-allcats__bar { top: 56px; gap: 10px; padding-top: 10px; padding-bottom: 10px; margin-bottom: 18px; }
	.g-allcats__jump { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; margin: 0 calc(-1 * var(--g-gutter, 16px)); padding: 0 var(--g-gutter, 16px); }
	.g-allcats__jump::-webkit-scrollbar { display: none; }
	.g-allcats__jump .g-chip { min-height: 34px; font-size: 13px; }
	.g-allcats__search input[type="search"] { height: 46px; }
	.g-allcats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 10px; }
	.g-allcat a { gap: 6px; }
	.g-allcat__img { border-radius: 16px; }
	.g-allcat__name { font-size: 12.5px; }
	.g-allcat__count { font-size: 11px; margin-top: -3px; }
	.g-allcats__group { scroll-margin-top: 150px; }
}

/* ---------- Floating WhatsApp above the bottom navigation ---------- */
@media (max-width: 767px) {
	body.gifty-has-bnav:not(.single-product):not(.woocommerce-checkout) .g-wa { bottom: calc(76px + env(safe-area-inset-bottom)); }
	body.gifty-has-bnav .g-toast { bottom: 90px; }
}

/* ---------- Mobile polish for Elementor sections ---------- */
@media (max-width: 767px) {
	.g-head { margin-bottom: 18px; gap: 10px; }
	.g-head__title { font-size: clamp(1.5rem, 6.2vw, 1.85rem); }
	.g-head__sub { font-size: 14.5px; margin-top: 6px; }
	.g-head--center .g-head__link { font-size: 14px; }
	.g-head .g-eyebrow { margin-bottom: 6px; font-size: 11px; }
	.g-banner { padding: 24px 18px; gap: 20px; }
	.g-banner__title { font-size: clamp(1.6rem, 7vw, 2.1rem); }
	.g-banner__text { font-size: 15px; }
	.g-banner__img--1 { width: 64%; }
	.g-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
	.g-banner__actions .g-btn { min-height: 48px; padding: 10px 12px; font-size: 14.5px; }
	.g-banner__actions .g-btn:only-child { grid-column: 1 / -1; }
	.g-newsletter { padding: 26px 18px; }
	.g-stats { padding: 24px 12px; }
	.g-review__card { padding: 20px; border-radius: 20px; }
}

/* ---------- Shoppable reels ---------- */
.e-con:has(.g-reels-off), .elementor-section:has(.g-reels-off) { display: none !important; }
.g-reels-note { padding: 28px; border: 2px dashed #D9C2F0; border-radius: 20px; background: #FCF8FF; color: var(--g-purple, #7A00C8); font-weight: 600; text-align: center; }
.g-carousel--reels { --gap: 18px; }
.g-reel { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.g-reel__media { position: relative; overflow: hidden; aspect-ratio: 9 / 16; border-radius: 22px; background: #1C1024; box-shadow: 0 14px 34px rgba(42, 0, 73, .14); isolation: isolate; }
.g-reel .g-reel__poster { position: absolute; inset: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; transition: transform .6s var(--g-ease, ease); }
.g-reel__poster--blank { display: block; background: radial-gradient(circle at 30% 20%, rgba(255, 217, 0, .45), transparent 45%), linear-gradient(160deg, #7A00C8, #2A0049); }
.g-reel:hover .g-reel__poster { transform: scale(1.05); }
.g-reel__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, transparent 25%, transparent 55%, rgba(0, 0, 0, .7) 100%); pointer-events: none; }
.g-reel__platform { position: absolute; top: 12px; left: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--g-ink, #1C1C1C); font-size: 11.5px; font-weight: 700; backdrop-filter: blur(6px); }
.g-reel--youtube .g-reel__platform .g-icon { color: #FF0033; }
.g-reel--instagram .g-reel__platform .g-icon { color: #D6249F; }
.g-reel--facebook .g-reel__platform .g-icon { color: #1877F2; }
.g-reel--video .g-reel__platform .g-icon { color: var(--g-purple, #7A00C8); }
.g-reel__play { position: absolute; top: 50%; left: 50%; z-index: 3; display: grid; place-items: center; width: 64px; height: 64px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .95); color: var(--g-purple, #7A00C8); box-shadow: 0 10px 30px rgba(0, 0, 0, .3); transform: translate(-50%, -50%); cursor: pointer; transition: transform .25s var(--g-ease, ease), background .25s ease; }
.g-reel__play:hover { background: var(--g-yellow, #FFD900); color: var(--g-ink, #1C1C1C); transform: translate(-50%, -50%) scale(1.08); }
.g-reel__play .g-icon circle { display: none; }
.g-reel__play .g-icon path { fill: currentColor; }
.g-reel__caption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; margin: 0; overflow: hidden; color: #fff; font-weight: 700; font-size: 14.5px; line-height: 1.35; text-shadow: 0 1px 6px rgba(0, 0, 0, .4); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.g-reel__video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; background: transparent; }
.g-reel.is-video.is-playing:not(.is-auto) .g-reel__video { z-index: 4; object-fit: contain; background: #000; }
.g-reel.is-video.is-playing:not(.is-auto) .g-reel__caption { display: none; }
.g-reel__frame { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; border: 0; background: #000; }
.g-reel--instagram .g-reel__frame { top: -54px; height: calc(100% + 120px); }
/* Muted autoplay: the play button moves to the corner so visitors can tap for sound. */
.g-reel.is-auto .g-reel__frame { pointer-events: none; }
.g-reel.is-auto .g-reel__play { z-index: 5; top: auto; left: auto; right: 12px; bottom: 12px; width: 44px; height: 44px; transform: none; }
.g-reel.is-auto .g-reel__play:hover { transform: scale(1.08); }
.g-reel.is-auto .g-reel__platform { z-index: 5; }
.g-reel.is-playing:not(.is-auto) .g-reel__play, .g-reel.is-playing:not(.is-auto) .g-reel__platform { display: none; }
.g-reel__product { display: flex; align-items: center; gap: 10px; padding: 8px; border: 1px solid var(--g-line, #ECE6F2); border-radius: 16px; background: #fff; color: var(--g-ink, #1C1C1C); transition: border-color .2s ease, box-shadow .2s ease; }
.g-reel__product:hover { border-color: #D9C2F0; box-shadow: 0 8px 20px rgba(42, 0, 73, .08); color: var(--g-ink, #1C1C1C); }
.g-reel .g-reel__thumb { flex: 0 0 44px; width: 44px !important; height: 44px !important; border-radius: 10px; object-fit: cover; }
.g-reel__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.g-reel__name { overflow: hidden; font-weight: 700; font-size: 13.5px; line-height: 1.3; white-space: nowrap; text-overflow: ellipsis; }
.g-reel__price { color: var(--g-purple, #7A00C8); font-weight: 800; font-size: 13.5px; }
.g-reel__price del { color: var(--g-muted, #5F5A66); font-weight: 500; font-size: 12px; }
.g-reel__price ins { text-decoration: none; }
.g-reel__shop { flex-shrink: 0; padding: 8px 12px; border-radius: 999px; background: var(--g-purple, #7A00C8); color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.g-reel__product:hover .g-reel__shop { background: var(--g-purple-dark, #5A0096); }
@media (max-width: 767px) {
	.g-carousel--reels { --gap: 12px; }
	.g-reel__media { border-radius: 18px; }
	.g-reel__play { width: 52px; height: 52px; }
	.g-reel__caption { left: 10px; right: 10px; bottom: 10px; font-size: 13px; }
	.g-reel__product { flex-wrap: wrap; gap: 8px; }
	.g-reel .g-reel__thumb { flex-basis: 36px; width: 36px !important; height: 36px !important; }
	.g-reel__shop { flex-basis: 100%; text-align: center; }
}
