/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 82:0 Unexpected "<"
Line 98:0 All "@import" rules must come first

**/
<style>
  .site-header {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  
  /* Lógica de logos */
  .logo-desktop { max-height: 40px; width: auto; }
  .logo-mobile { max-height: 30px; width: auto; display: none; }
  
  @media (min-width: 851px) {
    .logo-desktop { display: block; }
    .logo-mobile { display: none !important; }
  }

  @media (max-width: 850px) {
    .header-inner { padding: 1rem; }
    .logo-desktop { display: none !important; }
    .logo-mobile { display: block; }
    .header-nav { display: none; }
    .mobile-menu-icon { display: block; z-index: 10; }
    .header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .header-icons { gap: 0.8rem; }
  }

  /* Lógica de modo oscuro para escritorio */
  [data-theme="dark"] .logo-light { display: none; }
  [data-theme="dark"] .logo-dark { display: block; }
  :root:not([data-theme="dark"]) .logo-light { display: block; }
  :root:not([data-theme="dark"]) .logo-dark { display: none; }
  
  .header-nav { display: flex; gap: 2rem; }
  .header-nav a { font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-primary); text-decoration: none; }
  .nav-separator { color: var(--color-gold-primary); }
  .header-icons { display: flex; gap: 1rem; align-items: center; }
  .header-icons button, .header-icons a { background: none; border: none; cursor: pointer; color: var(--text-primary); display: flex; text-decoration: none; }
  .mobile-menu-icon { display: none; background: none; border: none; cursor: pointer; color: var(--text-primary); }
  /* Estilo del buscador desplegable */
.search-container { position: relative; }

.search-dropdown {
    display: none;
    position: absolute;
    top: 150%; /* Justo debajo de la lupa */
    right: 0;
    background: var(--header-bg, #ffffff);
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    width: 250px;
    z-index: 999;
}

.search-dropdown.active { display: block; }

.search-dropdown input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    font-family: 'Jost', sans-serif;
    outline: none;
}
</style>

/* Forzar el color de la barra de anuncios */
.announcement-bar, #shopify-section-announcement-bar {
    background-color: #C9A96E !important;
}
.announcement-bar p, .announcement-bar a {
    color: #1A1A1A !important;
}

/* Corregir color azul en nombres de productos y textos */
.product-card__title, .card__heading a, .product__title {
    color: var(--text-primary, #1A1A1A) !important;
}

/* Importar Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Jost:wght@300;400;500&display=swap');

/* Variables Modo Claro (Por defecto) */
:root {
  /* Paleta Dorada */
  --color-gold-primary:  #C9A96E;
  --color-gold-light:    #D4B483;
  --color-gold-dark:     #A8884A;
  
  /* Fondos y Superficies Claras */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F5EFE6;
  --card-bg: #FFFFFF;
  --header-bg: rgba(250, 250, 250, 0.95);
  
  /* Textos y Bordes Claros */
  --text-primary: #2C2C2C;
  --text-secondary: #8A7968;
  --border-color: #E8DDD0;
  
  /* Estados */
  --color-success: #4A7C59;
  --color-error: #C0392B;

  /* Transiciones */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Variables Modo Oscuro */
[data-theme="dark"] {
  --bg-primary: #1A1A1A;
  --bg-secondary: #252525;
  --card-bg: #252525;
  --header-bg: rgba(26, 26, 26, 0.95);
  --text-primary: #F0EAE0;
  --text-secondary: #A89880;
  --border-color: #3A3530;
}

/* Base */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  transition: background-color var(--transition-base), color var(--transition-base);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }

/* UI y Navegación */
.nav-link, .btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-gold-primary);
  color: #1A1A1A;
  border: 1px solid var(--color-gold-dark);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
}

/* Respetar preferencias de usuario */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Estilo para que la página de búsqueda se vea como una tienda */
.search-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Forzar cuadrícula de productos */
.search-results, .search-page-container .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Ocultar elementos que hacen que se vea "antiestético" */
.search-page-container li {
    list-style: none;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.search-page-container li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}