/**
 * Varoh theme — main stylesheet.
 * Dark storefront matching the source design (black / white, Outfit + Niramit).
 */

:root {
	--v-bg: #000000;
	--v-fg: #ffffff;
	--v-muted: #b5b5b5;
	--v-gray: #767575;
	--v-card: #0c0c0c;
	--v-border: #262626;
	--v-container: 1140px;
	--font-head: "Outfit", sans-serif;
	--font-body: "Niramit", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--v-bg);
	color: var(--v-fg);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; margin: 0 0 .5em; }

a { color: inherit; text-decoration: none; }
a:hover { opacity: .8; }

img { max-width: 100%; height: auto; display: block; }

.varoh-container {
	width: 100%;
	max-width: var(--v-container);
	margin-inline: auto;
	padding-inline: 20px;
}

/* The product grid runs edge to edge, like the source storefront. */
.varoh-container--wide {
	max-width: none;
	padding-inline: 32px;
}

/* ---------- Announcement bar ---------- */
.varoh-announcement {
	background: #111;
	color: #fff;
	font-family: var(--font-body);
	font-size: 13px;
	overflow: hidden;
	border-bottom: 1px solid var(--v-border);
}
.varoh-announcement__track {
	display: flex;
	gap: 4rem;
	white-space: nowrap;
	padding: 9px 0;
	width: max-content;
	animation: varoh-marquee 28s linear infinite;
}
.varoh-announcement__item { letter-spacing: .3px; }
@keyframes varoh-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.varoh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--v-bg);
	border-bottom: 1px solid var(--v-border);
}
.varoh-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
}
.varoh-header__left { display: flex; align-items: center; gap: 14px; }
.varoh-header__right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.varoh-logo img { height: 46px; width: auto; margin-inline: auto; }
.varoh-logo__text { font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; font-size: 20px; text-align: center; }

.varoh-iconbtn {
	background: none;
	border: 0;
	color: var(--v-fg);
	cursor: pointer;
	display: inline-flex;
	padding: 4px;
}
.varoh-iconbtn svg { width: 22px; height: 22px; }

.varoh-search {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--v-border);
	border-radius: 999px;
	padding: 6px 14px;
	min-width: 210px;
	color: var(--v-muted);
}
.varoh-search input {
	background: none; border: 0; outline: 0; color: var(--v-fg);
	font-family: var(--font-body); font-size: 13px; width: 100%;
}
.varoh-cart-count {
	font-size: 11px; background: #fff; color: #000; border-radius: 999px;
	min-width: 16px; height: 16px; display: inline-grid; place-items: center; margin-left: -8px;
}

/* ---------- Primary nav ---------- */
.varoh-nav { border-bottom: 1px solid var(--v-border); }
.varoh-nav ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
}
.varoh-nav li { position: relative; }
.varoh-nav a {
	display: block; padding: 12px 0;
	font-family: var(--font-body); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.varoh-nav .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 210px;
	background: #0c0c0c; border: 1px solid var(--v-border);
	flex-direction: column; gap: 0; padding: 8px 0; display: none; z-index: 60;
}
.varoh-nav li:hover > .sub-menu { display: flex; }
.varoh-nav .sub-menu a { padding: 8px 16px; text-transform: none; letter-spacing: .3px; }

/* ---------- Buttons ---------- */
.varoh-btn {
	display: inline-block; cursor: pointer;
	font-family: var(--font-body); font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
	color: #000; background: var(--v-gray); border: 0; border-radius: 999px;
	padding: 12px 34px;
}
.varoh-btn:hover { background: #8a8989; opacity: 1; }
.varoh-btn--ghost { background: transparent; color: #fff; border: 1px solid var(--v-gray); }

/* ---------- Hero banner ---------- */
.varoh-hero { width: 100%; }
.varoh-hero a { display: block; }
.varoh-hero img { width: 100%; height: auto; display: block; }

/* ---------- Benefits row ---------- */
.varoh-benefits { position: relative; padding: 60px 0; }
.varoh-benefits .varoh-container { position: relative; }
.varoh-benefits__viewport {
	display: flex; justify-content: center; align-items: flex-start;
	gap: 20px; flex-wrap: nowrap;
}
.varoh-benefit {
	flex: 1 1 0; min-width: 0; max-width: 260px;
	display: flex; flex-direction: column; align-items: center; text-align: center;
}
.varoh-benefit__icon { display: block; margin-bottom: 16px; }
.varoh-benefit__icon svg { width: 52px; height: 52px; stroke: #fff; }
.varoh-benefit h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.varoh-benefit p { color: var(--v-muted); font-size: 13px; line-height: 1.5; margin: 0; }
/* All five benefits show at once on desktop, so the pager arrows are decorative only. */
.varoh-benefits__arrow { display: none; }

/* ---------- Promo banners ---------- */
.varoh-promos { padding: 14px 0 30px; }
.varoh-promos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.varoh-promo { display: block; border-radius: 6px; overflow: hidden; }
.varoh-promo img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.varoh-promo:hover img { transform: scale(1.02); }

/* ---------- Section heading ---------- */
.varoh-section { padding: 40px 0 20px; }
.varoh-section__title {
	font-family: var(--font-head); font-size: 40px; font-weight: 700;
	text-align: center; margin: 0 0 36px;
}

/* ---------- Product grid + cards ---------- */
.varoh-grid,
ul.products {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 58px 24px;
}
.varoh-card,
ul.products li.product {
	position: relative; width: auto !important; margin: 0 !important; float: none !important; text-align: center;
}
.varoh-card__media,
ul.products li.product a img {
	position: relative; display: block; background: var(--v-card);
	border-radius: 4px; overflow: hidden; aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
}
.varoh-card__media img { width: 100%; height: 100%; object-fit: cover; }
.varoh-card__title,
ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-head); font-weight: 300; font-size: 16px; line-height: 22px;
	color: #fff; margin: 14px 0 4px; padding: 0;
}
.varoh-card__price,
ul.products li.product .price {
	font-family: var(--font-body); font-size: 14px; color: var(--v-muted); display: block;
}
ul.products li.product .price { margin: 0; }
ul.products li.product .price del { opacity: .5; margin-right: 6px; }
ul.products li.product .price ins { text-decoration: none; }
/* Quick-add cart bubble like the source */
/* The bubble lives inside the image wrapper, so it can never ride onto the
   title no matter what appears below the picture. */
.varoh-card__media { position: relative; display: block; }
.varoh-card__cart {
	position: absolute; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 2;
	width: 40px; height: 40px; border-radius: 999px; background: rgba(120,117,117,.55);
	display: grid; place-items: center; color: #fff; backdrop-filter: blur(3px);
	transition: background .25s ease;
}
ul.products li.product:hover .varoh-card__cart { background: rgba(120,117,117,.9); }
.varoh-card__cart svg { width: 18px; height: 18px; }
ul.products li.product .button,
ul.products li.product .added_to_cart { display: none; } /* keep the minimalist look */

/* ---------- Newsletter ---------- */
.varoh-newsletter { text-align: center; padding: 70px 20px 80px; }
.varoh-newsletter h2 { font-size: 40px; margin-bottom: 10px; }
.varoh-newsletter p { color: var(--v-muted); margin: 0 0 26px; }
.varoh-newsletter form { max-width: 420px; margin-inline: auto; }
.varoh-newsletter input[type="email"] {
	width: 100%; background: transparent; border: 1px solid var(--v-border); border-radius: 999px;
	color: #fff; padding: 14px 20px; font-family: var(--font-body); margin-bottom: 16px; outline: 0;
}

/* ---------- Footer ---------- */
.varoh-footer { border-top: 1px solid var(--v-border); padding: 46px 0 30px; text-align: center; font-size: 13px; color: var(--v-muted); }
.varoh-footer__social { margin-bottom: 22px; }
.varoh-footer__social svg { width: 22px; height: 22px; margin-inline: auto; }
.varoh-footer__menu {
	list-style: none; margin: 0 0 26px; padding: 0;
	display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
}
.varoh-footer__menu a { color: #fff; font-size: 13px; }
.varoh-footer__pay { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.varoh-footer__pay img { height: 24px; width: auto; }
.varoh-footer__afip { margin: 0 0 18px; }
.varoh-footer__afip img { margin-inline: auto; height: auto; }
.varoh-footer__legal { font-size: 12px; line-height: 1.7; }
.varoh-footer__legal a { color: #fff; text-decoration: underline; }

/* ---------- Cookie / whatsapp floaters ---------- */
.varoh-cookie {
	position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
	background: #000; border: 1px solid var(--v-border); border-radius: 8px;
	padding: 18px 24px; text-align: center; max-width: 520px; width: calc(100% - 40px); z-index: 80;
}
.varoh-cookie p { margin: 0 0 12px; font-size: 13px; color: var(--v-muted); }
.varoh-cookie strong { color: #fff; }
.varoh-wa {
	position: fixed; right: 20px; bottom: 24px; z-index: 80;
	width: 52px; height: 52px; border-radius: 999px; background: #25d366;
	display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.varoh-wa svg { width: 30px; height: 30px; display: block; }

/* ---------- WooCommerce single product ---------- */
.woocommerce div.product .product_title { font-family: var(--font-head); font-size: 30px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #fff; font-size: 22px; }
.woocommerce .quantity .qty { background: transparent; color: #fff; border: 1px solid var(--v-border); }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button {
	background: var(--v-gray) !important; color: #000 !important; border-radius: 999px !important;
	text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); border: 0 !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: #8a8989 !important; }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info { background: #0c0c0c; color: #fff; border-top-color: var(--v-gray); }
.woocommerce-breadcrumb { color: var(--v-muted); font-size: 13px; margin-bottom: 20px; }
.woocommerce-breadcrumb a { color: #fff; }

/* ---------- Cart (classic) + WhatsApp checkout ---------- */
.woocommerce-cart .woo-content { padding-block: 40px 60px; }
.woocommerce table.shop_table {
	border: 1px solid var(--v-border); border-radius: 6px; color: var(--v-fg);
	border-collapse: collapse; width: 100%;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--v-border); padding: 14px; vertical-align: middle;
}
.woocommerce table.shop_table th { font-family: var(--font-head); font-weight: 600; text-align: left; }
.woocommerce table.shop_table td.product-thumbnail img { width: 68px; border-radius: 4px; }
.woocommerce table.shop_table .product-name a { color: #fff; }
.woocommerce .cart_item .variation { font-size: 12px; color: var(--v-muted); margin: 4px 0 0; }
.woocommerce .quantity .qty {
	background: transparent; color: #fff; border: 1px solid var(--v-border);
	border-radius: 4px; padding: 8px; width: 68px;
}
.woocommerce .cart_totals h2 { font-family: var(--font-head); font-size: 20px; }
.woocommerce .cart-collaterals .cart_totals table { width: 100%; }
/* Remove control: a compact circle that reads as part of the row. */
.woocommerce table.shop_table th.product-remove,
.woocommerce table.shop_table td.product-remove {
	width: 46px; text-align: center; padding-inline: 8px;
}
.woocommerce table.shop_table th.product-thumbnail,
.woocommerce table.shop_table td.product-thumbnail { width: 96px; }
.woocommerce table.shop_table th.product-price,
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table th.product-quantity,
.woocommerce table.shop_table td.product-quantity,
.woocommerce table.shop_table th.product-subtotal,
.woocommerce table.shop_table td.product-subtotal { width: 140px; }
/* Name column absorbs the remaining width so the others stay tight. */
.woocommerce table.shop_table th.product-name,
.woocommerce table.shop_table td.product-name { width: auto; }
.woocommerce table.shop_table td.product-remove a.remove {
	display: inline-grid; place-items: center;
	width: 26px; height: 26px; border-radius: 999px;
	border: 1px solid var(--v-border);
	font-size: 15px; line-height: 1; text-decoration: none;
	color: var(--v-muted) !important; background: transparent !important;
}
.woocommerce table.shop_table td.product-remove a.remove:hover {
	background: var(--v-gray) !important; border-color: var(--v-gray); color: #000 !important;
}

/* Coupon + update-cart row.
   The cell stays a table-cell on purpose: `display:flex` here drops it out of
   the table layout algorithm and wrecks every column width. Floats inside. */
.woocommerce table.shop_table td.actions {
	padding: 18px 14px; text-align: left; overflow: hidden;
}
.woocommerce table.shop_table td.actions .coupon {
	display: inline-flex; align-items: center; gap: 10px; float: left;
}
.woocommerce table.shop_table td.actions button[name="update_cart"] { float: right; }
.woocommerce table.shop_table td.actions input#coupon_code {
	background: transparent; border: 1px solid var(--v-border); border-radius: 999px;
	color: #fff; padding: 11px 18px; min-width: 230px; outline: 0;
	font-family: var(--font-body); font-size: 13px;
}
.woocommerce table.shop_table td.actions input#coupon_code::placeholder { color: var(--v-muted); }
.woocommerce table.shop_table td.actions .button { white-space: nowrap; }

.varoh-wa-checkout {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	width: 100%; background: #25d366 !important; color: #06301a !important;
	font-weight: 600; letter-spacing: 2px; padding: 15px 24px;
}
.varoh-wa-checkout:hover { background: #1fbb59 !important; opacity: 1; }
.varoh-wa-checkout svg { width: 20px; height: 20px; }
.varoh-wa-note {
	margin: 10px 0 0; font-size: 12px; color: var(--v-muted); text-align: center;
}

/* Order-placed handoff screen */
.varoh-handoff { text-align: center; padding: 80px 20px 100px; max-width: 520px; }
.varoh-handoff h1 { font-size: 32px; margin-bottom: 10px; }
.varoh-handoff > p { color: var(--v-muted); margin: 0 0 26px; }

/* ---------- Access gate (password wall) ---------- */
.varoh-gate-body { display: grid; place-items: center; min-height: 100vh; }
.varoh-gate {
	width: 100%; max-width: 760px; padding: 40px 20px 60px;
	display: flex; flex-direction: column; align-items: center; text-align: center;
}
.varoh-gate__logo { display: block; margin-bottom: 46px; }
.varoh-gate__logo img { height: 62px; width: auto; }
.varoh-gate__heading {
	font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 5vw, 52px);
	line-height: 1.12; margin: 0 0 44px; text-transform: uppercase;
}
.varoh-gate__error {
	color: #ff8a8a; font-size: 14px; margin: 0 0 18px;
}
.varoh-gate__form { width: 100%; max-width: 520px; }
.varoh-gate__field { position: relative; margin-bottom: 26px; }
.varoh-gate__field input {
	width: 100%; background: transparent; color: #fff;
	border: 1px solid var(--v-border); border-radius: 999px;
	padding: 16px 54px 16px 24px; outline: 0;
	font-family: var(--font-body); font-size: 14px;
}
.varoh-gate__field input::placeholder { color: var(--v-muted); }
.varoh-gate__field input:focus { border-color: var(--v-gray); }
.varoh-gate__eye {
	position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
	background: none; border: 0; color: var(--v-muted); cursor: pointer;
	padding: 8px; display: grid; place-items: center;
}
.varoh-gate__eye svg { width: 20px; height: 20px; }
.varoh-gate__eye:hover { color: #fff; }
/* The slash is shown while the password is hidden, and removed once revealed. */
.varoh-gate__eye.is-visible .varoh-gate__eye-slash { display: none; }
.varoh-gate__submit { min-width: 230px; padding: 15px 34px; }

.varoh-gate__footer {
	margin-top: 70px; display: flex; flex-direction: column; align-items: center; gap: 18px;
	color: var(--v-muted); font-size: 12px;
}
.varoh-gate__footer a { color: var(--v-muted); }
.varoh-gate__footer a:hover { color: #fff; }
.varoh-gate__footer p { margin: 0; }
.varoh-gate__afip img { height: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.varoh-grid, ul.products { grid-template-columns: repeat(2, 1fr); }
	.varoh-section__title, .varoh-newsletter h2 { font-size: 30px; }
	.varoh-header__inner { grid-template-columns: auto 1fr auto; }
	.varoh-search { display: none; }
	.varoh-promos__grid { grid-template-columns: 1fr; }
	.varoh-benefits__viewport { flex-wrap: wrap; }
	.varoh-benefit { flex: 1 1 40%; max-width: none; }
	.woocommerce table.shop_table td.actions .coupon { float: none; flex-wrap: wrap; }
	.woocommerce table.shop_table td.actions button[name="update_cart"] { float: none; margin-top: 12px; width: 100%; }
	.woocommerce table.shop_table td.actions input#coupon_code { min-width: 0; flex: 1 1 160px; }
}
@media (max-width: 560px) {
	.varoh-grid, ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.varoh-nav ul { gap: 14px; }
}
