/* =========================================================
   Calidan Layout - estilos do plugin
   Mobile-first. Todas as classes usam o prefixo "clyt-" para
   nao colidir com o tema ou com o CSS do Elementor.
   ========================================================= */

:root {
	--clyt-bg: #F2F0EB;
	--clyt-text: #111111;
	--clyt-muted: #6b6b6b;
	--clyt-border: rgba(0, 0, 0, 0.08);
	--clyt-white: #ffffff;
	--clyt-black: #111111;
	--clyt-footer-bg: #111111;
	--clyt-footer-text: #ffffff;
}

.clyt-icon { width: 20px; height: 20px; }
.clyt-icon-sm { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: 6px; }

/* ---------- Announcement bar ---------- */
.clyt-announcement {
	background: var(--clyt-black);
	color: #fff;
	padding: 10px 16px;
	font-size: 9px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}
.clyt-announcement a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.clyt-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	background: rgba(242, 240, 235, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--clyt-border);
	color: var(--clyt-black);
}
.clyt-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.clyt-header-row {
	min-height: 88px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}
.clyt-header-left { display: flex; align-items: center; justify-content: flex-start; gap: 24px; }
.clyt-logo {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-height: 80px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}
.clyt-logo-text {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
img.clyt-logo-img {
	width: 150px !important;
	height: auto !important;
	max-width: 150px !important;
	max-height: 76px !important;
	display: block;
	object-fit: contain;
}
.clyt-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.clyt-icon-btn {
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: inherit;
	display: inline-flex;
	align-items: center;
	position: relative;
}
.clyt-icon-btn:hover { opacity: 0.6; }
.clyt-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--clyt-black);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile menu toggle */
.clyt-header-menu-toggle { display: inline-flex; }
.clyt-icon-close { display: none; }
.clyt-header.clyt-nav-open .clyt-icon-open { display: none; }
.clyt-header.clyt-nav-open .clyt-icon-close { display: inline-flex; }

.clyt-nav {
	max-height: 0 !important;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.clyt-header.clyt-nav-open .clyt-nav { max-height: 400px !important; }
.clyt-nav-list {
	list-style: none;
	margin: 0;
	padding: 14px 0 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-top: 1px solid var(--clyt-border);
}
.clyt-nav-list a {
	color: inherit;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.clyt-nav-list a:hover { opacity: 0.6; }

/* Search panel */
.clyt-search-panel {
	max-height: 0 !important;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, transform 0.3s ease, border-top-color 0.3s ease;
	border-top: 1px solid transparent;
}
.clyt-search-panel.is-open {
	max-height: 560px !important;
	opacity: 1;
	transform: translateY(0);
	border-top-color: var(--clyt-border);
}
.clyt-search-form {
	max-width: 720px;
	margin: 0 auto;
	padding: 22px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.clyt-search-input {
	flex: 1;
	border: none;
	background: transparent;
	border-bottom: 1px solid var(--clyt-border);
	padding: 10px 4px;
	font-size: 20px;
	font-weight: 300;
	font-family: inherit;
	color: inherit;
	transition: border-color 0.2s ease;
}
.clyt-search-input:focus { outline: none; border-color: var(--clyt-black); }

@keyframes clytIconPulse {
	0% { transform: scale(1); }
	45% { transform: scale(1.22); }
	100% { transform: scale(1); }
}
.clyt-icon-btn.is-pulsing .clyt-icon { animation: clytIconPulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
@media (prefers-reduced-motion: reduce) {
	.clyt-icon-btn.is-pulsing .clyt-icon { animation: none; }
}

.clyt-search-results { display: none; }
.clyt-search-panel.is-open .clyt-search-results.is-open { display: block; }
.clyt-search-results-list {
	list-style: none;
	margin: 0 auto;
	max-width: 720px;
	padding: 0 20px 16px;
	max-height: 340px;
	overflow-y: auto;
}
.clyt-search-result {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 4px;
	text-decoration: none;
	color: inherit;
	border-top: 1px solid var(--clyt-border);
}
.clyt-search-result:hover { background: rgba(0, 0, 0, 0.03); }
.clyt-search-result-img { width: 42px; height: 54px; object-fit: cover; flex-shrink: 0; background: #eee; }
.clyt-search-result-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.clyt-search-result-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.clyt-search-result-price { font-size: 11px; font-style: italic; opacity: 0.6; }
.clyt-search-empty {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.4;
	max-width: 720px;
	margin: 0 auto;
	padding: 16px 20px;
}

/* ---------- Conta / rastreio (mesma linha da logo, a partir do tablet) ---------- */
#clyt-header-utility.clyt-header-utility {
	display: none !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	gap: 24px !important;
}
#clyt-header-utility.clyt-header-utility > .clyt-utility-link {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
}
.clyt-utility-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.clyt-utility-link:hover { opacity: 0.7; }
.clyt-utility-text { display: flex !important; flex-direction: column !important; line-height: 1.3; }
.clyt-utility-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.45; }
.clyt-utility-value { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }

.clyt-nav-utility {
	display: flex !important;
	flex-direction: column;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--clyt-border);
}
.clyt-nav-utility .clyt-utility-label { display: none; }
.clyt-nav-utility .clyt-utility-value { font-size: 12px; }

/* ---------- Cart modal (popover flutuante) ----------
   Selecionado por #id: este elemento vive fora do <header> (veja
   templates/header.php) e e movido para filho direto de <body> pelo JS,
   especificamente para nao ficar preso dentro de nenhum ancestral que
   tenha transform/filter/backdrop-filter (isso quebraria o position:fixed). */
#clyt-cart-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 999999 !important;
	visibility: hidden !important;
	pointer-events: none;
}
#clyt-cart-modal.is-open { visibility: visible !important; pointer-events: auto; }
#clyt-cart-modal .clyt-cart-modal-overlay {
	position: absolute;
	inset: 0;
	background: transparent;
}
#clyt-cart-modal .clyt-cart-modal-panel {
	position: absolute;
	top: 84px;
	right: 20px;
	width: 100%;
	max-width: 380px;
	max-height: min(560px, calc(100vh - 110px));
	background: #fff;
	color: var(--clyt-black);
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	opacity: 0;
	transform: translateY(-10px) scale(0.97);
	transform-origin: top right;
	transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 4px 18px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}
#clyt-cart-modal.is-open .clyt-cart-modal-panel { opacity: 1 !important; transform: translateY(0) scale(1) !important; }
@media (max-width: 480px) {
	#clyt-cart-modal .clyt-cart-modal-panel { right: 12px; left: 12px; max-width: none; top: 72px; }
}
.clyt-cart-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid var(--clyt-border);
	flex-shrink: 0;
}
.clyt-cart-modal-header h3 { margin: 0; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.clyt-cart-modal-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.clyt-cart-empty { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.5; text-align: center; padding: 40px 0; margin: 0; }
.clyt-cart-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.clyt-cart-item { display: flex; gap: 12px; align-items: flex-start; position: relative; }
.clyt-cart-item-image { flex-shrink: 0; width: 60px; height: 72px; overflow: hidden; display: block; background: var(--clyt-bg); border-radius: 8px; }
.clyt-cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.clyt-cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-right: 20px; min-width: 0; }
.clyt-cart-item-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: inherit; text-decoration: none; line-height: 1.4; }
.clyt-cart-item-meta { font-size: 11px; opacity: 0.6; font-style: italic; }
.clyt-cart-item-remove {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	opacity: 0.4;
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
}
.clyt-cart-item-remove:hover { opacity: 1; }
.clyt-cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--clyt-border);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.clyt-cart-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ---------- Buttons / links ---------- */
.clyt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	border: 1px solid var(--clyt-black);
	padding: 15px 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-sizing: border-box;
}
.clyt-btn-primary { background: var(--clyt-black); color: #fff; }
.clyt-btn-primary:hover { background: #333; }
.clyt-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.clyt-btn-outline { background: transparent; color: var(--clyt-black); margin-top: 10px; }
.clyt-btn-outline:hover { background: rgba(0, 0, 0, 0.05); }
.clyt-link-underline {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: inherit;
	border-bottom: 1px solid currentColor;
	padding-bottom: 3px;
	text-decoration: none;
}
.clyt-hide-mobile { display: none; }
.clyt-show-mobile { display: inline-flex; }
.clyt-mt { margin-top: 24px; }
.clyt-mt-lg { margin-top: 32px; }

/* ---------- Products grid ---------- */
.clyt-products-section { padding: 48px 0; color: var(--clyt-text); }
.clyt-products-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.clyt-products-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 28px;
	gap: 12px;
}
.clyt-products-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; }
.clyt-products-subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.5; margin: 6px 0 0; }
.clyt-products-empty { text-align: center; opacity: 0.4; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 60px 0; }

.clyt-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 12px;
}
.clyt-product-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.clyt-product-image {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #eee;
	margin-bottom: 12px;
	border: 1px solid var(--clyt-border);
}
.clyt-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.clyt-product-card:hover .clyt-product-image img { transform: scale(1.05); }
.clyt-badge-sale {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--clyt-black);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 4px 8px;
}
.clyt-product-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.5;
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.clyt-product-price { font-size: 14px; font-style: italic; color: var(--clyt-muted); margin-top: auto; }
.clyt-product-price ins { text-decoration: none; }
.clyt-product-price del { opacity: 0.5; margin-right: 6px; font-size: 12px; }

/* ---------- Product page ---------- */
.clyt-product-page { max-width: 1280px; margin: 0 auto; padding: 16px 20px 60px; color: var(--clyt-text); }
.clyt-breadcrumb { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.4; margin-bottom: 16px; }
.clyt-breadcrumb a { color: inherit; text-decoration: none; }
.clyt-breadcrumb a:hover { opacity: 0.7; }

.clyt-product-layout { display: flex; flex-direction: column; gap: 32px; }
.clyt-gallery { display: flex; flex-direction: column; gap: 14px; }
.clyt-thumbnails { display: flex; gap: 10px; overflow-x: auto; }
.clyt-thumb {
	width: 56px;
	height: 72px;
	object-fit: cover;
	cursor: pointer;
	opacity: 0.5;
	border: 1px solid transparent;
	flex-shrink: 0;
	transition: all 0.2s ease;
}
.clyt-thumb.is-active,
.clyt-thumb:hover { opacity: 1; border-color: var(--clyt-black); }
.clyt-main-image {
	background: #fff;
	border: 1px solid var(--clyt-border);
	aspect-ratio: 3 / 4;
	overflow: hidden;
}
.clyt-main-image img { width: 100%; height: 100%; object-fit: cover; }

.clyt-product-info { display: flex; flex-direction: column; }
.clyt-product-name { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; line-height: 1.1; margin: 0 0 14px; }
.clyt-product-price-lg { font-size: 22px; font-weight: 300; font-style: italic; margin: 0 0 20px; }
.clyt-product-price-lg del { opacity: 0.5; margin-right: 8px; font-size: 16px; }
.clyt-divider { height: 1px; background: var(--clyt-border); margin-bottom: 24px; }

.clyt-size-selector { margin-bottom: 24px; }
.clyt-size-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.clyt-size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.clyt-size-btn {
	border: 1px solid #ddd;
	background: #fff;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.clyt-size-btn:hover { border-color: var(--clyt-black); }
.clyt-size-btn.is-active { background: var(--clyt-black); color: #fff; border-color: var(--clyt-black); }

.clyt-shipping-info {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 2;
	opacity: 0.7;
	border: 1px solid var(--clyt-border);
	background: rgba(255, 255, 255, 0.5);
	padding: 14px;
	margin-bottom: 20px;
}
.clyt-add-to-cart-form.is-loading { opacity: 0.6; pointer-events: none; }
.clyt-add-to-cart-message { display: block; margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.clyt-out-of-stock { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }

.clyt-product-desc { max-width: 720px; margin: 56px auto 0; padding-top: 40px; border-top: 1px solid var(--clyt-border); text-align: center; }
.clyt-product-desc h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 20px; }
.clyt-product-desc-text { font-size: 15px; font-style: italic; color: var(--clyt-muted); line-height: 1.7; }

/* Integracoes de terceiros (stories, condicoes de pagamento, avaliacoes):
   so cuidamos do espacamento ao redor - o visual interno e do proprio plugin. */
.clyt-product-payment-methods { margin: 10px 0 22px; font-size: 12px; }
.clyt-product-reviews { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--clyt-border); }

/* Stories: secao full-width bem no topo da pagina de produto, antes do breadcrumb */
.clyt-product-stories { background: var(--clyt-white); border-bottom: 1px solid var(--clyt-border); }
.clyt-product-stories-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
/*
 * O plugin de terceiros (LG Brand Stories) tem uma versao "desktop" e uma
 * "mobile" e alterna entre elas via CSS proprio dele - mas em alguns casos
 * ele so entrega/renderiza a versao desktop, que ele mesmo esconde com
 * display:none quando a tela e estreita, sem ter a versao mobile para
 * assumir o lugar (resultado: nada aparece). Como nao controlamos o CSS
 * interno do plugin, forcamos a versao entregue a aparecer sempre - melhor
 * mostrar a versao desktop encolhida/com rolagem do que nao mostrar nada.
 */
.clyt-product-stories-inner .lg-desktop-stories,
.clyt-product-stories-inner .lg-mobile-stories {
	display: flex !important;
}

/* Barra de confianca: faixa dentro do container, entre o "comprar" e a descricao */
.clyt-trust-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 16px;
	margin: 48px 0 40px;
	padding: 28px 0;
	border-top: 1px solid var(--clyt-border);
	border-bottom: 1px solid var(--clyt-border);
}
.clyt-trust-item { display: flex; align-items: flex-start; gap: 12px; }
.clyt-trust-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--clyt-black); }
.clyt-trust-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 3px; }
.clyt-trust-text { font-size: 11px; color: var(--clyt-muted); margin: 0; line-height: 1.5; }

/* ---------- Footer ---------- */
.clyt-footer { background: var(--clyt-footer-bg); color: var(--clyt-footer-text); padding: 48px 0 36px; }
.clyt-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.clyt-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.clyt-footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.4; margin: 0 0 20px; }
.clyt-footer-heading.clyt-mt { margin-top: 24px; }

.clyt-accordion-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--clyt-footer-text);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 13px 18px;
	margin-bottom: 10px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}
.clyt-accordion-btn:hover,
.clyt-accordion-btn.is-active { background: var(--clyt-footer-text); color: var(--clyt-footer-bg); }
.clyt-accordion-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	font-size: 12px;
	line-height: 1.6;
	opacity: 0.8;
	transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.clyt-accordion-panel p { margin: 0 0 10px; }
.clyt-accordion-panel.is-active { max-height: 400px; opacity: 1; margin: 6px 0 16px; }

.clyt-footer-box { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 20px; }
.clyt-footer-box-title { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; }
.clyt-footer-box p { font-size: 11px; opacity: 0.7; margin: 0 0 10px; }
.clyt-footer-box p:last-child { margin-bottom: 0; }

.clyt-social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--clyt-footer-text); text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.clyt-social-link:hover { opacity: 0.6; }

.clyt-payment-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
.clyt-payment-badges span {
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	font-size: 9px;
	font-weight: 700;
	color: var(--clyt-footer-text);
}
.clyt-secure-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.3);
	padding: 12px 14px;
	color: #34d399;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.clyt-payment-image img { max-width: 100%; height: auto; max-height: 40px; display: block; margin-bottom: 24px; }
.clyt-secure-seal img { max-width: 160px; height: auto; display: block; }

.clyt-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.clyt-footer-bottom > p { opacity: 0.4; margin: 0; }
.clyt-credit-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--clyt-footer-text);
	text-decoration: none;
	opacity: 0.7;
	text-transform: none;
	letter-spacing: normal;
	transition: opacity 0.2s ease;
}
.clyt-credit-link:hover { opacity: 1; }
.clyt-credit-logo { height: 16px; width: auto; display: block; }

/* =========================================================
   Breakpoints (mobile-first)
   ========================================================= */
@media (min-width: 640px) {
	.clyt-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
	.clyt-header-menu-toggle { display: none; }
	.clyt-nav { max-height: none !important; overflow: visible; }
	.clyt-nav-list { flex-direction: row; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--clyt-border); padding: 16px 0; gap: 32px; }
	.clyt-hide-mobile { display: inline-flex; }
	.clyt-show-mobile { display: none; }

	#clyt-header-utility.clyt-header-utility { display: flex !important; }
	.clyt-nav-utility { display: none !important; }

	.clyt-trust-bar { grid-template-columns: repeat(4, 1fr); gap: 24px; }

	.clyt-products-grid { grid-template-columns: repeat(var(--clyt-columns, 4), 1fr); gap: 24px; }

	.clyt-product-layout { flex-direction: row; gap: 56px; align-items: flex-start; }
	.clyt-gallery { flex-direction: row; width: 58%; position: sticky; top: 100px; }
	.clyt-thumbnails { flex-direction: column; overflow-y: auto; overflow-x: visible; max-height: 640px; }
	.clyt-thumb { width: 64px; height: 84px; }
	.clyt-main-image { flex: 1; aspect-ratio: auto; height: 640px; }
	.clyt-product-info { width: 42%; }
	.clyt-product-name { font-size: 36px; }
	.clyt-product-price-lg { font-size: 26px; }

	.clyt-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
	.clyt-footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
	.clyt-footer-grid { grid-template-columns: repeat(4, 1fr); }
}
