/* =============================================
   PKT HEADER + FOOTER — La Cleme palette
   #A67C52 · #C19B77 · #7E7E7E · #F9F9F9
   ============================================= */

/* Ocultar header y footer originales de Hello Elementor */
.ekit-template-content-header,
.ekit-template-content-markup.ekit-template-content-header {
	display: none !important;
}

#site-footer.site-footer {
	display: none !important;
}

/* ================================================
   Variables
   ================================================ */
:root {
	--lc-dark:      #2D2D2D;
	--lc-tobacco:   #A67C52;
	--lc-gold:      #C19B77;
	--lc-gold-dk:   #a6805f;
	--lc-muted:     #7E7E7E;
	--lc-cream:     #F9F9F9;
	--lc-border:    #F1F1F1;
	--lc-white:     #FFFFFF;
	--ph-height:    108px;
	--ph-ease:      .22s cubic-bezier(.4,0,.2,1);
}

/* ================================================
   HEADER
   ================================================ */
.pkt-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
	height: var(--ph-height);
	background: var(--lc-tobacco);
	border-bottom: 2px solid var(--lc-gold);
	transition: box-shadow var(--ph-ease);
}

.pkt-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.pkt-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 32px;
	gap: 16px;
}

.pkt-header__spacer { flex: 1; }

/* Logo */
.pkt-header__logo {
	display: flex;
	align-items: center;
	text-decoration: none !important;
	flex-shrink: 0;
}

.pkt-header__logo img {
	height: 92px;
	width: auto;
	object-fit: contain;
	display: block;
}

/* Carrito */
.pkt-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.pkt-header__cart {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: rgba(255,255,255,.85) !important;
	text-decoration: none !important;
	transition: background var(--ph-ease);
}

.pkt-header__cart:hover {
	background: rgba(255,255,255,.1);
	color: var(--lc-white) !important;
}

.pkt-cart__badge {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--lc-gold);
	color: var(--lc-dark);
	border-radius: 50px;
	font-size: .62rem;
	font-weight: 800;
	line-height: 18px;
	text-align: center;
	display: none;
	pointer-events: none;
}

.pkt-cart__badge.is-visible { display: block; }

/* Tablet y móvil: reducir altura del header */
@media (max-width: 767px) {
	:root { --ph-height: 72px; }
	.pkt-header__logo img { height: 56px; }
}

/* Móvil pequeño */
@media (max-width: 480px) {
	.pkt-header__inner { padding: 0 14px; }
	.pkt-header__logo img { height: 44px; }
}

/* ================================================
   BARRA SHOP — título + pills de categoría
   ================================================ */
.pkt-shop-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 0 12px;
	border-bottom: 1px solid var(--lc-border);
	flex-wrap: wrap;
}

.pkt-shop-bar__title {
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lc-dark) !important;
	white-space: nowrap;
	flex-shrink: 0;
	padding-right: 8px;
	border-right: 1.5px solid var(--lc-border);
}

.pkt-shop-bar__pills {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.pkt-filter-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 13px;
	border-radius: 50px;
	border: 1.5px solid var(--lc-border);
	background: var(--lc-white) !important;
	color: var(--lc-dark) !important;
	font-size: .75rem;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
	transition: all var(--ph-ease);
}

.pkt-filter-pill:hover {
	border-color: var(--lc-dark);
	background: var(--lc-dark) !important;
	color: var(--lc-white) !important;
}

.pkt-filter-pill--active {
	background: var(--lc-gold) !important;
	border-color: var(--lc-gold) !important;
	color: var(--lc-dark) !important;
}

.pkt-filter-pill--active:hover {
	background: var(--lc-gold-dk) !important;
	border-color: var(--lc-gold-dk) !important;
}

.pkt-filter-pill__count {
	font-size: .68rem;
	font-weight: 700;
	opacity: .65;
}

.pkt-filter-pill--active .pkt-filter-pill__count {
	opacity: .7;
}

/* ================================================
   FOOTER
   ================================================ */
.pkt-footer {
	background: var(--lc-tobacco);
	color: #FFFFFF;
	margin-top: 60px;
}

.pkt-footer__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 56px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 32px 48px;
}

/* Brand */
.pkt-footer__brand { display: flex; flex-direction: column; gap: 16px; }

.pkt-footer__logo {
	height: 26px;
	width: auto;
	object-fit: contain;
	display: block;
}

.pkt-footer__tagline {
	font-size: .78rem;
	color: rgba(255,255,255,.90);
	margin: 0;
	line-height: 1.65;
	letter-spacing: .01em;
}

.pkt-footer__social {
	display: flex;
	gap: 10px;
}

.pkt-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.20);
	color: #FFFFFF !important;
	text-decoration: none !important;
	transition: background var(--ph-ease), color var(--ph-ease);
}

.pkt-social-link:hover {
	background: var(--lc-gold);
	color: var(--lc-dark) !important;
}

/* Sucursales — se alinean verticalmente con más espacio */
.pkt-footer__sucursales {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 36px;
}

.pkt-footer__sucursal-title {
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lc-gold);
	margin: 0 0 14px;
}

.pkt-footer__info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pkt-footer__info-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .82rem;
	color: rgba(255,255,255,.95);
	line-height: 1.5;
}

.pkt-footer__info-list svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--lc-gold);
	opacity: .85;
}

/* Separador entre sucursales */
.pkt-footer__sucursal + .pkt-footer__sucursal {
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.08);
}

/* Bottom bar */
.pkt-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	text-align: center;
	padding: 18px 32px;
}

.pkt-footer__bottom p {
	margin: 0;
	font-size: .75rem;
	color: rgba(255,255,255,.80);
	letter-spacing: .04em;
}

/* Responsive footer */
@media (max-width: 900px) {
	.pkt-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.pkt-footer__brand { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
	.pkt-footer__sucursales { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
	.pkt-footer__inner { grid-template-columns: 1fr; padding: 36px 20px 28px; }
	.pkt-footer__sucursales { grid-template-columns: 1fr; }
	.pkt-footer__brand { flex-direction: column; align-items: flex-start; }
	.pkt-shop-bar { flex-direction: column; align-items: flex-start; }
	.pkt-shop-bar__title { border-right: none; padding-right: 0; }
}

/* ================================================
   BOTONES FLOTANTES WHATSAPP
   ================================================ */
@keyframes wa-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
	70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
	100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.pkt-wa-group {
	position: fixed;
	bottom: 28px;
	left: 24px;
	right: 24px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 9998;
	pointer-events: none;
}

.pkt-wa-group > * {
	pointer-events: auto;
}

.pkt-wa-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px 10px 10px;
	background: #25D366;
	color: #FFFFFF !important;
	border-radius: 50px;
	text-decoration: none !important;
	box-shadow: 0 4px 18px rgba(0,0,0,.22);
	transition: background var(--ph-ease), transform var(--ph-ease), box-shadow var(--ph-ease);
	white-space: nowrap;
}

.pkt-wa-btn:hover {
	background: #1ebe5d;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,.28);
	color: #FFFFFF !important;
}

.pkt-wa-btn:active { transform: translateY(0); }

/* Círculo del ícono con pulso */
.pkt-wa-btn__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(0,0,0,.12);
	flex-shrink: 0;
	animation: wa-pulse 2.4s ease-out infinite;
}

/* Texto en dos líneas */
.pkt-wa-btn__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.pkt-wa-btn__prefix {
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .80;
	line-height: 1;
}

.pkt-wa-btn__label {
	font-size: .86rem;
	font-weight: 800;
	letter-spacing: .01em;
	line-height: 1.2;
}

/* Tablet: botones WA más compactos */
@media (max-width: 767px) {
	.pkt-wa-btn__prefix { display: none; }
	.pkt-wa-btn { padding: 9px 16px 9px 9px; gap: 10px; }
}

/* Móvil pequeño */
@media (max-width: 480px) {
	.pkt-wa-group { bottom: 16px; left: 12px; right: 12px; }
	.pkt-wa-btn { padding: 8px 14px 8px 8px; gap: 8px; }
	.pkt-wa-btn__icon-wrap { width: 34px; height: 34px; }
	.pkt-wa-btn__label { font-size: .78rem; }
}

/* Muy pequeño: ocultar etiqueta, dejar solo ícono */
@media (max-width: 360px) {
	.pkt-wa-btn__text { display: none; }
	.pkt-wa-btn { padding: 10px; border-radius: 50%; }
	.pkt-wa-btn__icon-wrap { width: 38px; height: 38px; }
}
