/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/products/storefront/
Template: storefront
Author: Automattic
Author URI: https://woocommerce.com/
Description: Storefront is the perfect theme for your next WooCommerce project. Designed and developed by WooCommerce Core developers, it features a bespoke integration with WooCommerce itself plus many of the most popular customer facing WooCommerce extensions. There are several layout &amp; color options to personalise your shop, multiple widget regions, a responsive design and much more. Developers will love its lean and extensible codebase making it a joy to customize and extend. Looking for a WooCommerce theme? Look no further!
Tags: e-commerce,two-columns,left-sidebar,right-sidebar,custom-background,custom-colors,custom-header,custom-menu,featured-images,full-width-template,threaded-comments,accessibility-ready,rtl-language-support,footer-widgets,sticky-post,theme-options,editor-style
Version: 4.6.2.1787721851
Updated: 2026-08-26 05:24:11

*/
/* ==========================================================================
   PALREY — Sistema de diseño personalizado
   Inspiración: calma y tipografía de Apple + energía de cuadrícula de Shein
   ========================================================================== */
 
:root {
  /* Color */
  --c-bg:        #FAF9F6;
  --c-surface:   #FFFFFF;
  --c-ink:       #14140F;
  --c-ink-soft:  #55534C;
  --c-line:      #E8E6DF;
  --c-accent:    #FF3B5C;
  --c-accent-soft: #FFE8EC;
 
  /* Tipografía */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 
  /* Espaciado */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 112px;
 
  --radius: 18px;
  --radius-sm: 10px;
}
 
/* ---- Reset ligero dentro del alcance de la tienda ---- */
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
}
 
h1, h2, h3, .site-title, .palrey-hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
 
a { color: inherit; }
 
/* ==========================================================================
   HEADER — minimalista, estilo Apple
   ========================================================================== */
.site-header,
header.site-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  padding: var(--space-sm) var(--space-md);
}
 
.site-header .custom-logo,
.site-header img.custom-logo {
  max-height: 80px;
  width: auto;
}
 
.main-navigation a {
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--c-ink-soft);
  transition: color 0.2s ease;
}
 
.main-navigation a:hover {
  color: var(--c-ink);
}
 
/* ==========================================================================
   HERO — grande, calmado, una sola idea (Apple)
   ========================================================================== */
.palrey-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-sm);
}
 
.palrey-hero__eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}
 
.palrey-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  max-width: 780px;
  margin: 0;
}
 
.palrey-hero__subtitle {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--c-ink-soft);
  max-width: 460px;
  margin: 0;
}
 
.palrey-hero__cta {
  margin-top: var(--space-sm);
  display: inline-block;
  background: var(--c-ink);
  color: var(--c-bg);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
 
.palrey-hero__cta:hover {
  background: var(--c-accent);
  transform: translateY(-1px);
}
 
/* ==========================================================================
   RIEL DE CATEGORÍAS — scroll horizontal, tipo Shein
   ========================================================================== */
.palrey-categories {
  display: flex;
  gap: var(--space-xs);
  overflow-x: auto;
  padding: var(--space-sm) var(--space-md);
  scrollbar-width: none;
}
 
.palrey-categories::-webkit-scrollbar { display: none; }
 
.palrey-categories a {
  flex: 0 0 auto;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
 
.palrey-categories a:hover,
.palrey-categories a.active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-bg);
}
 
/* ==========================================================================
   CUADRÍCULA DE PRODUCTOS — densa y con energía, tipo Shein
   ========================================================================== */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  list-style: none;
}
 
@media (min-width: 700px) {
  ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  ul.products { grid-template-columns: repeat(4, 1fr); }
}
 
ul.products li.product {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
 
ul.products li.product:hover {
  box-shadow: 0 12px 28px rgba(20,20,15,0.08);
  transform: translateY(-3px);
}
 
ul.products li.product a.woocommerce-LoopProduct-link {
  text-decoration: none;
  color: var(--c-ink);
  display: block;
}
 
ul.products li.product img {
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  width: 100%;
}
 
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px 2px;
  margin: 0;
}
 
ul.products li.product .price {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px 14px;
  color: var(--c-ink);
}
 
ul.products li.product .price del {
  color: var(--c-ink-soft);
  opacity: 0.6;
  font-weight: 400;
  margin-right: 6px;
}
 
ul.products li.product .price ins {
  text-decoration: none;
  color: var(--c-accent);
}
 
/* ---- Etiquetas "Nuevo" / oferta — el toque Shein ---- */
ul.products li.product .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center;
  z-index: 2;
}
 
/* ---- Botón "agregar rápido" — el monograma como acción (elemento firma) ---- */
ul.products li.product .add_to_cart_button,
ul.products li.product a.ajax_add_to_cart {
  position: absolute;
  bottom: 66px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-ink);
  color: var(--c-ink) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  text-decoration: none;
}
 
ul.products li.product:hover .add_to_cart_button,
ul.products li.product:hover a.ajax_add_to_cart {
  opacity: 1;
  transform: translateY(0);
}
 
ul.products li.product .add_to_cart_button::after {
  content: "+";
  font-size: 20px;
  font-family: var(--f-body);
  line-height: 1;
}
 
ul.products li.product .add_to_cart_button:hover {
  background: var(--c-ink);
  color: var(--c-bg) !important;
}
 
ul.products li.product .added_to_cart {
  display: none;
}
 
/* ==========================================================================
   BOTONES GENERALES (carrito, checkout, formularios)
   ========================================================================== */
.button,
button.button,
input.button,
.single_add_to_cart_button {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  background: var(--c-ink) !important;
  color: var(--c-bg) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 13px 28px !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
 
.button:hover,
button.button:hover,
input.button:hover,
.single_add_to_cart_button:hover {
  background: var(--c-accent) !important;
  transform: translateY(-1px);
}
 
/* ==========================================================================
   PIE DE PÁGINA — minimalista
   ========================================================================== */
.site-footer,
footer.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding: var(--space-lg) var(--space-md);
  color: var(--c-ink-soft);
  font-family: var(--f-body);
  font-size: 13px;
}
 
/* ==========================================================================
   RESPONSIVE — ajustes finos en móvil
   ========================================================================== */
@media (max-width: 480px) {
  .palrey-hero { padding: var(--space-lg) var(--space-sm); }
  ul.products { padding: var(--space-xs) var(--space-sm); gap: 10px; }
  ul.products li.product .add_to_cart_button,
  ul.products li.product a.ajax_add_to_cart {
    opacity: 1;
    transform: none;
  }
}
 
