/* ==========================================================================
   Radiante PetShop - Design tokens y estilos de la landing
   ========================================================================== */

:root {
	--rad-blue: #0B63B0;
	--rad-blue-hover: #084A85;
	--rad-navy: #14213A;
	--rad-navy-alt: #28405F;
	--rad-footer-bg: #0F2A43;
	--rad-yellow: #F6C445;
	--rad-red: #E2574C;
	--rad-red-dark: #C4453A;
	--rad-tint-bg: #F4F8FC;
	--rad-tint-icon: #E1EEFB;
	--rad-tint-hover: #EAF3FC;
	--rad-light-bg: #F1F5F9;
	--rad-border: #E2E8F0;
	--rad-muted: #5B6B85;
	--rad-faint: #94A3B8;
	--rad-faint-2: #A6B2C4;
	--rad-white: #FFFFFF;
	--rad-max-width: 1240px;
}

.radiante-landing {
	font-family: 'Work Sans', sans-serif;
	color: var(--rad-navy);
}

.radiante-landing * {
	box-sizing: border-box;
}

.rad-container {
	max-width: var(--rad-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* 1. Barra de anuncio */
.rad-announcement {
	background: var(--rad-blue);
	color: #EAF3FC;
	font-size: 12.5px;
	font-weight: 700;
	text-align: center;
	padding: 8px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	justify-content: center;
}
.rad-announcement a {
	color: inherit;
	text-decoration: none;
}

/* 2. Header sticky */
.rad-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--rad-yellow);
	border-bottom: 1px solid rgba(20, 33, 58, 0.12);
}
.rad-header-inner {
	max-width: var(--rad-max-width);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.rad-logo {
	font-size: 22px;
	font-weight: 800;
	color: var(--rad-navy);
	text-decoration: none;
}
.rad-logo span {
	color: var(--rad-blue);
}
.rad-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.rad-nav a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--rad-navy);
	text-decoration: none;
}
.rad-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.rad-btn-whatsapp {
	background: var(--rad-blue);
	color: #fff;
	border-radius: 9px;
	padding: 10px 18px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	white-space: nowrap;
}
.rad-btn-whatsapp:hover {
	background: var(--rad-blue-hover);
	color: #fff;
}
.rad-cart-btn {
	position: relative;
	width: 42px;
	height: 42px;
	background: var(--rad-blue);
	border-radius: 9px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
}
.rad-cart-btn:hover {
	background: var(--rad-blue-hover);
}
.rad-cart-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: var(--rad-red);
	color: #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 10.5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rad-cart-badge.is-hidden {
	display: none;
}

/* 3. Cart drawer */
.rad-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 20, 40, 0.45);
	backdrop-filter: blur(2px);
	z-index: 45;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.rad-cart-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
.rad-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 400px;
	max-width: 92vw;
	background: #fff;
	z-index: 46;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.rad-cart-drawer.is-open {
	transform: translateX(0);
}
.rad-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--rad-border);
}
.rad-cart-header h3 {
	font-size: 19px;
	font-weight: 800;
	margin: 0;
}
.rad-cart-close {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: var(--rad-navy);
}
.rad-cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}
.rad-cart-item {
	display: flex;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--rad-border);
}
.rad-cart-item-thumb {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	background: var(--rad-light-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	object-fit: cover;
	flex-shrink: 0;
}
.rad-cart-item-name {
	font-size: 13.5px;
	font-weight: 600;
}
.rad-cart-item-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--rad-blue);
}
.rad-cart-stepper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}
.rad-cart-stepper button {
	width: 22px;
	height: 22px;
	border: 1px solid #D6DEE8;
	background: #fff;
	border-radius: 4px;
	cursor: pointer;
	line-height: 1;
}
.rad-cart-remove {
	color: var(--rad-red-dark);
	font-size: 12px;
	text-decoration: none;
	margin-left: 10px;
}
.rad-cart-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--rad-faint);
}
.rad-cart-empty .emoji {
	font-size: 36px;
	display: block;
	margin-bottom: 10px;
}
.rad-cart-footer {
	padding: 18px 24px 22px;
	border-top: 1px solid var(--rad-border);
}
.rad-cart-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 12px;
}
.rad-cart-checkout-whatsapp {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--rad-blue);
	color: #fff;
	border-radius: 10px;
	padding: 14px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
}
.rad-cart-checkout-whatsapp:hover {
	background: var(--rad-blue-hover);
	color: #fff;
}
.rad-cart-whatsapp-secondary {
	display: block;
	width: 100%;
	text-align: center;
	background: transparent;
	color: var(--rad-blue);
	border-radius: 10px;
	padding: 10px;
	margin-top: 8px;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
}
.rad-cart-whatsapp-secondary:hover {
	text-decoration: underline;
}
.rad-cart-helper {
	text-align: center;
	font-size: 11.5px;
	color: var(--rad-faint);
	margin-top: 10px;
}

/* 4. Hero carousel */
.rad-hero {
	border-radius: 18px;
	height: 400px;
	margin-top: 28px;
	position: relative;
	overflow: hidden;
}
.rad-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 0 56px;
	opacity: 0;
	transition: opacity 0.7s ease;
	pointer-events: none;
}
.rad-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}
.rad-hero-content {
	max-width: 560px;
}
.rad-hero-tag {
	display: inline-block;
	background: #fff;
	color: var(--rad-blue);
	font-size: 12.5px;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 100px;
	padding: 6px 14px;
	margin-bottom: 16px;
}
.rad-hero-title {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	line-height: 1.18;
	margin: 0 0 14px;
}
.rad-hero-body {
	font-size: 15.5px;
	color: #E4EEFA;
	line-height: 1.6;
	margin: 0 0 24px;
}
.rad-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.rad-hero-cta-solid {
	background: #fff;
	color: var(--rad-blue);
	border-radius: 9px;
	padding: 13px 24px;
	font-weight: 700;
	text-decoration: none;
}
.rad-hero-cta-outline {
	border: 1.5px solid #fff;
	background: transparent;
	color: #fff;
	border-radius: 9px;
	padding: 13px 24px;
	font-weight: 700;
	text-decoration: none;
}
.rad-hero-dots {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.rad-hero-dot {
	width: 9px;
	height: 9px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
}
.rad-hero-dot.is-active {
	width: 24px;
	background: #fff;
}

/* 5. Benefits strip */
.rad-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 40px 24px;
}
.rad-benefit-card {
	background: var(--rad-tint-bg);
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.rad-benefit-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: var(--rad-tint-icon);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.rad-benefit-title {
	font-size: 14.5px;
	font-weight: 700;
	margin: 0 0 2px;
}
.rad-benefit-desc {
	font-size: 12.5px;
	color: var(--rad-muted);
	margin: 0;
}

/* 6. Grilla de categorías (todas las categorías reales) */
.rad-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 16px;
	padding: 6px 24px 40px;
}
.rad-category-tile {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	padding: 22px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.rad-category-tile:hover {
	border-color: var(--rad-blue);
	transform: translateY(-2px);
}
.rad-category-tile-photo {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--rad-tint-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 8px;
}
.rad-category-tile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rad-category-tile-icon {
	font-size: 40px;
	line-height: 1;
}
.rad-category-tile-name {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--rad-navy);
}
.rad-category-tile-count {
	font-size: 12px;
	color: var(--rad-muted);
}

/* 7. Featured products */
.rad-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 24px 24px;
}
.rad-eyebrow {
	font-size: 12.5px;
	text-transform: uppercase;
	color: var(--rad-blue);
	font-weight: 700;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 6px;
}
.rad-section-title {
	font-size: 27px;
	font-weight: 800;
	margin: 0;
}
.rad-filter-pills {
	background: var(--rad-light-bg);
	border-radius: 10px;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	max-width: 100%;
}
.rad-filter-pill {
	border: none;
	background: transparent;
	color: var(--rad-muted);
	font-size: 13.5px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
}
.rad-filter-pill.is-active {
	background: var(--rad-blue);
	color: #fff;
}
.rad-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0 24px 40px;
}
.rad-product-card {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	overflow: hidden;
}
.rad-product-image-wrap {
	position: relative;
	height: 170px;
	background: var(--rad-light-bg);
}
.rad-product-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 10px;
}
.rad-product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--rad-red);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	border-radius: 6px;
	padding: 4px 9px;
}
.rad-product-body {
	padding: 16px;
}
.rad-product-name {
	font-size: 13px;
	font-weight: 600;
	min-height: 34px;
	margin: 0 0 10px;
}
.rad-product-price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
}
.rad-product-price-old {
	text-decoration: line-through;
	color: var(--rad-faint-2);
	font-size: 12px;
}
.rad-product-price-current {
	color: var(--rad-blue);
	font-size: 16px;
	font-weight: 800;
}
.rad-product-add-btn {
	width: 100%;
	background: var(--rad-blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	font-size: 13.5px;
	cursor: pointer;
}
.rad-product-add-btn:hover {
	background: var(--rad-blue-hover);
}
/* WooCommerce agrega este link "Ver carrito" automáticamente después del
   AJAX add-to-cart; no está en el diseño y el drawer ya se abre solo. */
.rad-product-card .added_to_cart {
	display: none;
}

.rad-view-all-wrap {
	display: flex;
	justify-content: center;
	padding: 8px 24px 44px;
}
.rad-view-all-btn {
	border: 1.5px solid var(--rad-blue);
	color: var(--rad-blue);
	background: transparent;
	border-radius: 9px;
	padding: 13px 28px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}
.rad-view-all-btn:hover {
	background: var(--rad-blue);
	color: #fff;
}

/* 8. Shipping zone banner */
.rad-shipping-banner {
	background: var(--rad-navy);
	padding: 46px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.rad-shipping-eyebrow {
	color: #5EA8E8;
	font-size: 12.5px;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.rad-shipping-title {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin: 0;
}
.rad-shipping-chip {
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #EAF3FC;
	border-radius: 8px;
	padding: 10px 18px;
	font-weight: 600;
	font-size: 14px;
}

/* 9. Store locator */
.rad-stores-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 0 24px 40px;
}
.rad-store-card {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	padding: 24px;
	overflow: hidden;
}
.rad-store-photo {
	display: block;
	width: calc(100% + 48px);
	height: 160px;
	object-fit: cover;
	margin: -24px -24px 18px;
}
.rad-store-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.rad-store-pin {
	width: 40px;
	height: 40px;
	border-radius: 9px;
	background: var(--rad-light-bg);
	border: none;
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
}
.rad-store-pin.is-active {
	background: var(--rad-blue);
}
.rad-store-name {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
}
.rad-store-zone {
	font-size: 12px;
	color: #8492A9;
	margin: 0;
}
.rad-store-address {
	font-size: 13px;
	color: #3B4A63;
	margin: 0 0 8px;
}
.rad-store-hours {
	font-size: 12.5px;
	color: var(--rad-muted);
	white-space: pre-line;
	margin: 0 0 8px;
}
.rad-store-phone {
	font-size: 13px;
	font-weight: 700;
	color: var(--rad-blue);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 10px;
}
.rad-store-maps-btn {
	display: none;
	width: 100%;
	text-align: center;
	background: var(--rad-light-bg);
	color: var(--rad-navy);
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
}
.rad-store-maps-btn:hover {
	background: var(--rad-blue);
	color: #fff;
}
.rad-store-card.is-expanded .rad-store-maps-btn {
	display: block;
}

/* 10. Brand marquee */
.rad-marquee-section {
	background: var(--rad-tint-bg);
	padding: 40px 0;
	overflow: hidden;
}
.rad-marquee-track {
	display: flex;
	width: 200%;
	animation: rad-marquee 26s linear infinite;
}
.rad-marquee-list {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-around;
}
.rad-marquee-list span {
	font-size: 18px;
	font-weight: 700;
	color: var(--rad-navy);
	opacity: 0.7;
	white-space: nowrap;
}
.rad-marquee-logo {
	height: 52px;
	max-width: 150px;
	width: auto;
	object-fit: contain;
	opacity: 0.9;
	flex-shrink: 0;
}
@keyframes rad-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* 10b. Opiniones de clientes (reseñas de Google) */
.rad-reviews-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding: 8px 24px 22px;
}
.rad-reviews-title-group h2 {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 6px;
}
.rad-reviews-title-group p {
	font-size: 14px;
	color: var(--rad-muted);
	margin: 0;
}
.rad-google-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 12px;
	padding: 12px 18px;
}
.rad-google-score {
	font-size: 22px;
	font-weight: 800;
	color: var(--rad-navy);
}
.rad-google-stars {
	color: var(--rad-yellow);
	font-size: 15px;
	letter-spacing: 1px;
}
.rad-google-count {
	font-size: 12px;
	color: var(--rad-muted);
}
.rad-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 0 24px 24px;
}
.rad-review-card {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.rad-review-top {
	display: flex;
	align-items: center;
	gap: 12px;
}
.rad-review-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	flex-shrink: 0;
}
.rad-review-name {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
}
.rad-review-stars {
	color: var(--rad-yellow);
	font-size: 13px;
	letter-spacing: 1px;
	margin: 2px 0 0;
}
.rad-review-text {
	font-size: 13.5px;
	color: #3B4A63;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}
.rad-review-foot {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--rad-muted);
}
.rad-review-google-g {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
.rad-reviews-cta {
	text-align: center;
	padding: 6px 24px 8px;
}
.rad-reviews-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--rad-tint-bg);
	border: 1px solid var(--rad-border);
	color: var(--rad-blue);
	font-weight: 700;
	font-size: 13.5px;
	text-decoration: none;
	padding: 12px 22px;
	border-radius: 10px;
}
@media (max-width: 800px) {
	.rad-reviews-grid { grid-template-columns: 1fr; }
	.rad-reviews-head { flex-direction: column; align-items: flex-start; }
}

/* 11. FAQ accordion */
.rad-faq {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 24px 60px;
}
.rad-faq-item {
	border-bottom: 1px solid var(--rad-border);
}
.rad-faq-question {
	width: 100%;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 4px;
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	color: var(--rad-navy);
}
.rad-faq-indicator {
	font-size: 18px;
	color: var(--rad-blue);
	flex-shrink: 0;
	margin-left: 12px;
}
.rad-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}
.rad-faq-answer p {
	font-size: 13.5px;
	color: var(--rad-muted);
	line-height: 1.7;
	padding: 0 4px 18px;
	margin: 0;
}
.rad-faq-item.is-open .rad-faq-answer {
	max-height: 300px;
}

/* 12. WhatsApp CTA band */
.rad-whatsapp-cta {
	border-radius: 18px;
	padding: 46px;
	margin: 0 24px 60px;
	background: linear-gradient(120deg, #0B63B0, #0E7FDD);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.rad-whatsapp-cta-title {
	font-size: 25px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 8px;
}
.rad-whatsapp-cta-body {
	font-size: 14.5px;
	color: #E4EEFA;
	margin: 0;
}
.rad-whatsapp-cta-btn {
	background: #fff;
	color: var(--rad-blue);
	border-radius: 9px;
	padding: 15px 28px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

/* 13. Footer */
.rad-footer {
	background: var(--rad-footer-bg);
	color: #B8C6DA;
	padding: 50px 24px 26px;
}
.rad-footer-grid {
	max-width: var(--rad-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 30px;
}
.rad-footer-logo {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}
.rad-footer-logo span {
	color: #5EA8E8;
}
.rad-footer-col h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	margin: 0 0 14px;
}
.rad-footer-col a,
.rad-footer-col p {
	display: block;
	font-size: 13px;
	color: #B8C6DA;
	text-decoration: none;
	margin: 0 0 8px;
}
.rad-footer-bottom {
	max-width: var(--rad-max-width);
	margin: 30px auto 0;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
}

/* 14. Floating WhatsApp button */
.rad-floating-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--rad-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 26px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(11, 99, 176, 0.35);
	z-index: 40;
}
.rad-floating-whatsapp:hover {
	background: var(--rad-blue-hover);
	color: #fff;
}

/* ==========================================================================
   Página de Tienda / archivo de productos (woocommerce.php)
   Restyle de los elementos por defecto de WooCommerce para que coincidan
   con el diseño de la home.
   ========================================================================== */
.rad-shop-page {
	padding-top: 28px;
	padding-bottom: 50px;
}
.rad-shop-page .woocommerce-breadcrumb {
	font-size: 12.5px;
	color: var(--rad-muted);
	margin-bottom: 18px;
}
.rad-shop-page .woocommerce-breadcrumb a {
	color: var(--rad-blue);
	text-decoration: none;
}
.rad-shop-page .page-title,
.rad-shop-page h1.woocommerce-products-header__title {
	font-size: 27px;
	font-weight: 800;
	color: var(--rad-navy);
	margin: 0 0 18px;
}
.rad-shop-page .woocommerce-notices-wrapper {
	margin-bottom: 16px;
}
.rad-shop-page .woocommerce-result-count,
.rad-shop-page .woocommerce-ordering {
	font-size: 13px;
	color: var(--rad-muted);
}
.rad-shop-page form.woocommerce-ordering select {
	border: 1px solid var(--rad-border);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 13px;
	color: var(--rad-navy);
	background: #fff;
}
.rad-shop-page ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}
.rad-shop-page ul.products li.product {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	overflow: hidden;
	list-style: none;
	position: relative;
	text-align: left;
}
.rad-shop-page ul.products li.product a.woocommerce-LoopProduct-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.rad-shop-page ul.products li.product img {
	width: 100%;
	height: 170px;
	object-fit: contain;
	background: var(--rad-light-bg);
	display: block;
	padding: 10px;
}
.rad-shop-page ul.products li.product .onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--rad-red);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	border-radius: 6px;
	padding: 4px 9px;
	min-height: 0;
	min-width: 0;
	line-height: 1;
	margin: 0;
}
.rad-shop-page ul.products li.product .woocommerce-loop-product__title {
	font-size: 13px;
	font-weight: 600;
	color: var(--rad-navy);
	padding: 16px 16px 0;
	margin: 0;
}
.rad-shop-page ul.products li.product .price {
	display: block;
	padding: 8px 16px 0;
	font-size: 16px;
	font-weight: 800;
	color: var(--rad-blue);
}
.rad-shop-page ul.products li.product .price del {
	color: var(--rad-faint-2);
	font-weight: 400;
	font-size: 12px;
	margin-right: 6px;
}
.rad-shop-page ul.products li.product .price ins {
	text-decoration: none;
}
.rad-shop-page ul.products li.product .button {
	display: block;
	margin: 12px 16px 16px;
	width: calc(100% - 32px);
	background: var(--rad-blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	font-size: 13.5px;
	text-align: center;
	text-decoration: none;
}
.rad-shop-page ul.products li.product .button:hover {
	background: var(--rad-blue-hover);
	color: #fff;
}
.rad-shop-page ul.products li.product .added_to_cart {
	display: none;
}
.rad-shop-page ul.products li.product .star-rating {
	display: none;
}
.rad-shop-page nav.woocommerce-pagination {
	margin-top: 30px;
}
.rad-shop-page nav.woocommerce-pagination ul {
	display: flex;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.rad-shop-page nav.woocommerce-pagination ul li {
	list-style: none;
}
.rad-shop-page nav.woocommerce-pagination ul li a,
.rad-shop-page nav.woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	border: 1px solid var(--rad-border);
	border-radius: 8px;
	color: var(--rad-navy);
	font-size: 13px;
	text-decoration: none;
	padding: 0 8px;
}
.rad-shop-page nav.woocommerce-pagination ul li span.current {
	background: var(--rad-blue);
	border-color: var(--rad-blue);
	color: #fff;
}
.rad-shop-page nav.woocommerce-pagination ul li a:hover {
	background: var(--rad-tint-hover);
}

@media (max-width: 960px) {
	.rad-shop-page ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.rad-shop-page ul.products { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Botones de WooCommerce fuera de la landing (Carrito, Checkout, Mi cuenta)
   con las plantillas por defecto de Storefront: los ponemos en el azul de
   marca para que resalten sobre el diseño genérico.
   ========================================================================== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order {
	background-color: var(--rad-blue) !important;
	border-color: var(--rad-blue) !important;
	color: #fff !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover {
	background-color: var(--rad-blue-hover) !important;
	border-color: var(--rad-blue-hover) !important;
	color: #fff !important;
}

/* Métodos de envío del Checkout (Carrito/Checkout, plantillas por defecto
   de Storefront): tarjetas grandes clickeables en vez de la lista de radio
   buttons por defecto, para que se acerquen al estilo de referencia. */
.woocommerce ul#shipping_method {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.woocommerce ul#shipping_method li {
	position: relative;
	border: 1.5px solid var(--rad-border);
	border-radius: 12px;
	padding: 14px 16px 14px 42px;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.woocommerce ul#shipping_method li:has(input:checked) {
	border-color: var(--rad-blue);
	background: var(--rad-tint-hover);
}
.woocommerce ul#shipping_method li input[type="radio"] {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	accent-color: var(--rad-blue);
	width: 16px;
	height: 16px;
}
.woocommerce ul#shipping_method li label {
	font-size: 14px;
	font-weight: 600;
	color: var(--rad-navy);
	cursor: pointer;
}

/* Toggle "Envío a domicilio" / "Retiro en local" arriba de la lista de
   métodos de envío (armado por JS en main.js). */
.woocommerce .rad-shipping-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 14px;
}
.woocommerce .rad-shipping-toggle-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	border: 1.5px solid var(--rad-border) !important;
	background: var(--rad-light-bg) !important;
	border-radius: 12px;
	padding: 16px 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	color: var(--rad-muted) !important;
	box-shadow: none !important;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.woocommerce .rad-shipping-toggle-icon {
	font-size: 22px;
}
.woocommerce .rad-shipping-toggle-btn.is-active {
	border-color: var(--rad-blue) !important;
	background: var(--rad-tint-hover) !important;
	color: var(--rad-blue) !important;
}

/* Checkout en 2 pasos: todo lo marcado "step2" queda oculto hasta que se
   clickee "Continuar" en el Paso 1. */
.woocommerce .rad-checkout-step2 {
	display: none !important;
}
.woocommerce .rad-checkout-step1 {
	background: #fff;
	border: 1px solid var(--rad-border);
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 24px;
}
.woocommerce .rad-checkout-step1-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 800;
	color: var(--rad-navy);
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--rad-border);
}
.woocommerce .rad-checkout-step1-total strong {
	font-weight: 800;
	color: var(--rad-blue);
}
.woocommerce .rad-checkout-step1-content {
	margin: 4px 0 16px;
}
.woocommerce .rad-checkout-step1-content .form-row {
	margin: 0;
	padding: 0;
}
.woocommerce .rad-checkout-step1-content label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--rad-navy);
}
.woocommerce .rad-checkout-step1-content input {
	width: 100%;
	border: 1px solid var(--rad-border) !important;
	border-radius: 8px !important;
	padding: 11px 14px !important;
	font-size: 13.5px;
}
.woocommerce .rad-checkout-loading {
	font-size: 12.5px;
	color: var(--rad-muted);
	margin: 0;
}
.woocommerce ul.rad-pickup-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.woocommerce ul.rad-pickup-list li {
	position: relative;
	border: 1.5px solid var(--rad-border);
	border-radius: 12px;
	padding: 12px 16px 12px 42px;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.woocommerce ul.rad-pickup-list li:has( input:checked ) {
	border-color: var(--rad-blue);
	background: var(--rad-tint-hover);
}
.woocommerce ul.rad-pickup-list li input[type="radio"] {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY( -50% );
	accent-color: var(--rad-blue);
	width: 16px;
	height: 16px;
}
.woocommerce ul.rad-pickup-list li label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--rad-navy);
	cursor: pointer;
}
.woocommerce .rad-checkout-continue-btn {
	display: block;
	width: 100%;
	background: var(--rad-blue) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 10px;
	padding: 15px;
	font-weight: 800;
	font-size: 14.5px;
	cursor: pointer;
}
.woocommerce .rad-checkout-continue-btn:hover {
	background: var(--rad-blue-hover) !important;
}
.woocommerce .rad-checkout-secure {
	text-align: center;
	font-size: 11.5px;
	color: var(--rad-muted);
	margin: 10px 0 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
	.rad-products-grid { grid-template-columns: repeat(2, 1fr); }
	.rad-stores-grid { grid-template-columns: 1fr; }
	.rad-benefits { grid-template-columns: 1fr; }
	.rad-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.rad-hero { height: auto; min-height: 460px; }
	.rad-hero-slide { padding: 0 28px; }
	.rad-hero-title { font-size: 28px; }
	.rad-products-grid { grid-template-columns: 1fr; }
}
