/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 368:0 Unexpected "<"

**/



<style>
  /* --- ESTILOS GLOBALES --- */
  body.decants-lock-scroll,
    html.decants-lock-scroll {
    overflow: hidden !important;
    height: 100% !important;
  }
  :root { 
    --nav-bg: #ffffff; 
    --nav-text: #222222; 
    --nav-gold: #D4AF37; 
    --nav-border: #f0eadd; 
    --nav-overlay: rgba(0,0,0,0.6); 
    --nav-gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%); 
  }
  
  .luxury-nav-container { 
    width: 100%; 
    font-family: var(--font-body-family); 
  }

  /* --- DESKTOP & TABLET MENU --- */
  @media (min-width: 990px) {
    .luxury-nav-container {
      display: flex;
      justify-content: center; 
      align-items: center;
      z-index: 14;
      flex: 1 1 100%; /* Permite que ocupe todo el ancho en tablet */
      min-width: 0; 
    }
    
    .desktop-menu { 
      display: flex; 
      justify-content: center; 
      align-items: center; 
      list-style: none; 
      padding: 15px 10px 0 10px; /* Padding superior para separar del header en tablet */
      margin: 0; 
      gap: clamp(10px, 1.5vw, 35px); 
      flex-wrap: nowrap !important; 
      width: 100%;
    }
  }

  /* Forzar diseño de dos filas en header para Tablet (Referencia Imagen 3) */
  @media (min-width: 990px) and (max-width: 1200px) {
    /* Ajustes sugeridos para tu contenedor padre del header en Shopify */
    header.header { 
      flex-wrap: wrap !important; 
    }
    header.header .header__heading { 
      margin: 0 auto !important; /* Centra el logo */
    }
    .luxury-nav-container {
      order: 3; /* Envía el menú abajo */
      width: 100%;
      border-top: 1px solid #f0f0f0;
      margin-top: 15px;
    }
    .header__icons {
      margin-left: 0 !important; /* Asegura que carrito quede a la derecha */
    }
    .menu-link {
      font-size: 0.95rem !important; /* Achica un poco la fuente para que quepa todo */
    }
  }

  .menu-item { 
    position: static; 
    padding: 20px 0; 
    display: flex; 
    align-items: center; 
    white-space: nowrap !important; 
  }
  
  .menu-link { 
    text-decoration: none; 
    color: var(--nav-text); 
    font-size: 1.1rem; 
    font-weight: 550; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    position: relative; 
    transition: color 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    font-family: var(--font-heading-family);
    white-space: nowrap; 
  }
  
  .menu-link::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 50%; 
    width: 0; 
    height: 3px; 
    background: var(--nav-gold); 
    transition: all 0.3s ease; 
    transform: translateX(-50%); 
  }
  
  .menu-link:hover, .menu-link.active { color: var(--nav-gold); }
  .menu-link:hover::after, .menu-link.active::after { width: 100%; }
  
  .arrow-icon { transition: transform 0.3s ease; margin-top: -2px; }
  .menu-item:hover .arrow-icon { transform: rotate(180deg); }
  
  /* TAG NUEVO */
  .tag-nuevo {
    background-color: var(--nav-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 5px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    line-height: 1;
  }

  /* --- MEGA MENU BASE --- */
  .mega-menu-wrapper { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: #fff; 
    border-top: 3px solid var(--nav-gold); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; 
    z-index: 1000; 
    display: flex; 
    justify-content: center; 
    border-radius: 0 0 30px 30px; 
  }
  
  .menu-item:hover .mega-menu-wrapper { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0);
  }
  
  .mega-container { width: 100%; max-width: 1400px; display: grid; grid-template-columns: 1.2fr 1.2fr 1.3fr; gap: 50px; padding: 50px; }
  .mega-col { border-right: 1px solid #f0f0f0; padding-right: 30px; }
  .mega-col:last-child { border-right: none; padding-right: 0; }
  .mega-title { font-size: 1rem; color: var(--nav-gold); letter-spacing: 2px; margin-bottom: 25px; font-weight: 800; text-transform: uppercase; }
  
  .mega-list { list-style: none; padding: 0; margin: 0; } 
  .mega-list li { margin-bottom: 15px; }
  .mega-list a { 
    text-decoration: none; color: #444; font-size: 1.05rem; transition: all 0.3s ease; 
    display: flex; align-items: center; gap: 15px; padding: 8px 12px; border-radius: 6px; border-left: 3px solid transparent; 
    font-family: var(--font-heading-family); font-weight: 500;
  }
  .mega-list a:hover { 
    color: var(--nav-gold); background: linear-gradient(90deg, #fffbf2 0%, transparent 100%); 
    border-left-color: var(--nav-gold); padding-left: 18px; font-weight: 600; 
  }

  /* ICONOS EN LISTA MEGA MENU */
  .mega-icon-svg {
    width: 20px; height: 20px; fill: none; stroke: var(--nav-gold); stroke-width: 1.5;
  }
  
  .view-all-btn { 
    display: inline-flex; align-items: center; justify-content: center; width: 100%; gap: 10px; margin-top: 25px; padding: 12px 25px; 
    font-size: 0.85rem; font-weight: 800; color: var(--nav-gold); text-decoration: none; 
    letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--nav-gold); 
    border-radius: 8px; transition: all 0.3s ease; font-family: var(--font-heading-family);
  }
  .view-all-btn:hover { background: var(--nav-gold); color: #fff; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25); }

  /* --- MEGA MENU "POR TIPO" CUSTOM LAYOUT --- */
  .mega-container.por-tipo-grid {
    grid-template-columns: 0.9fr 1fr 2.3fr; 
    gap: 30px;
  }

  .featured-item-box {
    display: flex; align-items: flex-start; gap: 15px; margin-bottom: 30px;
  }
  .featured-item-box svg { flex-shrink: 0; color: var(--nav-gold); width: 24px; height: 24px; }
  .featured-item-box h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #000; font-weight: 700; font-family: var(--font-heading-family); }
  .featured-item-box p { margin: 0; font-size: 0.9rem; color: #666; line-height: 1.4; }

  /* Contenedor principal de la tarjeta */
  .promo-card-horizontal {
    position: relative;
    display: flex;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    min-height: 280px; 
    background: #fff;
  }

  /* Imagen enviada al fondo absoluto */
  .promo-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* Empuja el encuadre hacia la derecha para que se vean bien las botellas */
  }

  /* Efecto fade/degradado a la izquierda para legibilidad del texto */
  .promo-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado que va de blanco sólido a transparente */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none; /* Evita que el degradado bloquee clics accidentales */
  }

  /* Contenido de texto superpuesto */
  .promo-card-content {
    position: relative;
    z-index: 1;
    width: 65%; /* Limita el ancho del texto para no tapar los perfumes */
    padding: 30px 20px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .promo-card-content .promo-subtitle { font-size: 0.75rem; color: var(--nav-gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; display: block; }
  .promo-card-content h3 { font-size: 1.7rem; margin: 0 0 15px 0; font-family: var(--font-heading-family); font-weight: 800; color: #000; }
  
  /* Se limitó un poco el ancho del párrafo para que no invada la zona transparente */
  .promo-card-content p { font-size: 0.9rem; color: #555; margin: 0 0 25px 0; line-height: 1.4; max-width: 95%; } 
  
  .promo-tags-row { display: flex; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
  .promo-tag-item { 
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; 
    border: 1px solid #ddd; border-radius: 8px; font-size: 0.75rem; font-weight: 600; 
    color: #333; background: #fff;
  }
  
  .btn-solid-gold {
    background: var(--nav-gold-gradient); color: #000; font-weight: 800; font-size: 0.8rem; 
    padding: 12px 20px; border-radius: 30px; text-decoration: none; display: inline-flex; 
    align-items: center; justify-content: center; gap: 10px; border: none; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25); transition: all 0.3s;
    width: fit-content;
  }
  .btn-solid-gold:hover { opacity: 0.95; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35); }


  /* --- PRODUCT CARD Y RESTO DEL CÓDIGO (Igual al tuyo) --- */
  .mega-product-card.static-form-card { 
    display: block; padding: 25px; border: 1px solid #eee; border-radius: 12px; 
    transition: all 0.3s; background: #fcfcfc; text-align: center; 
  }
  .mega-product-card.static-form-card:hover { 
    border-color: var(--nav-gold); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); 
    background: #fff; transform: translateY(-5px); 
  }
  .mp-image-link { display: block; margin-bottom: 15px; }
  .mp-img { width: 140px; height: 140px; object-fit: cover; border-radius: 8px; margin: 0 auto; }
  .mp-info-container { display: flex; flex-direction: column; gap: 15px; }
  .mp-title-link { text-decoration: none; }
  .mp-title { color: #000; font-size: 1.1rem; font-weight: 700; display: block; font-family: var(--font-heading-family);}
  
  .mp-form { display: flex; flex-direction: column; gap: 10px; width: 100%; }

  .mp-variant-select { 
    box-sizing: border-box !important; width: 100%; padding: 10px; border: 1px solid #ddd; 
    border-radius: 6px; font-family: var(--font-heading-family); font-weight: 550; font-size: 0.95rem; 
    color: #444; background-color: #fff; cursor: pointer; outline: none; transition: border-color 0.3s; 
    -webkit-appearance: none; appearance: none; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1L5 5L9 1'/%3E%3C/svg%3E"); 
    background-repeat: no-repeat; background-position: right 10px center; 
  }
  .mp-variant-select:focus, .mp-variant-select:hover { border-color: var(--nav-gold); }
  
  .mp-add-btn { 
    box-sizing: border-box !important; width: 100%; font-family: var(--font-heading-family); 
    background: var(--nav-gold-gradient); border: none; border-radius: 30px; 
    padding: 12px 15px; margin: 0; color: #000; font-weight: 800; font-size: 0.85rem; 
    letter-spacing: 1px; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25); 
  }
  .mp-add-btn:hover { opacity: 0.95; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35); }

  /* --- MOBILE STYLES --- */
  .mobile-trigger { display: none; }
  
  .mobile-drawer { 
    position: fixed; top: 0; left: 0; width: 90%; max-width: 450px; height: 100vh; 
    background: #fff; z-index: 99999; transform: translateX(-100%); 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 10px 0 30px rgba(0,0,0,0.15); 
    display: flex; flex-direction: column;
    border-top-right-radius: 30px; border-bottom-right-radius: 30px;
  }
  .mobile-drawer.open { transform: translateX(0); }
  
  .mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 99998; display: none; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px); }
  .mobile-overlay.open { display: block; opacity: 1; }
  
  .mobile-account-top { background: #fff; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; border-top-right-radius: 30px; position: relative; min-height: 80px; }
  .drawer-header-logo { position: absolute; left: 50%; top: 70%; transform: translate(-50%, -50%); width: auto; display: flex; justify-content: center; align-items: center; }
  .drawer-logo-img { display: block; max-width: 70px; height: auto; object-fit: contain; }
  .drawer-logo-text { font-family: var(--font-heading-family); font-weight: 800; font-size: 1.2rem; color: #000; letter-spacing: 1px; text-transform: uppercase; }
  .drawer-close { background: none; border: none; font-size: 2.5rem; color: #000; line-height: 1; cursor: pointer; z-index: 2; margin-left: auto; padding: 5px; }
  
  .drawer-content { padding: 25px 30px; overflow-y: auto; flex: 1; }
  
  .drawer-link, .drawer-accordion-btn { 
    display: block; width: 100%; text-align: left; padding: 20px 0; border-bottom: 1px solid #f0f0f0; 
    text-decoration: none; color: #222; font-size: 1.15rem; font-weight: 550; background: none; 
    border-top: none; border-left: none; border-right: none; cursor: pointer; display: flex; 
    justify-content: space-between; align-items: center; transition: all 0.2s ease;
    font-family: var(--font-heading-family);
  }
  
  .active-mobile, .active-group-mobile {
    color: var(--nav-gold); border-left: 4px solid var(--nav-gold); 
    padding-left: 15px; background: linear-gradient(90deg, #fffbf2 0%, transparent 100%);
  }

  .plus { font-size: 1.5rem; font-weight: 300; }
  .drawer-submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #fff; padding-left: 15px; } 
  .drawer-submenu a { display: flex; justify-content: space-between; padding: 18px 0; color: #555; text-decoration: none; font-size: 1rem; border-bottom: 1px dashed #eee; font-family: var(--font-heading-family) }
  .drawer-submenu a::after { content: '›'; font-size: 1.2rem; color: #999; }
  
  .mobile-social-bottom { 
    background: #fcfcfc; border-top: 1px solid #eee; padding:25px 30px 95px 30px; 
    display: flex; justify-content: space-around; align-items: center; border-bottom-right-radius: 30px;
  }
  .social-icon { color: #222; transition: color 0.3s; } .social-icon:hover { color: var(--nav-gold); }
  
  .hamburger-btn { background: none; border: none; cursor: pointer; width: 30px !important; height: 24px !important; position: relative; padding: 0; display: flex; align-items: center; justify-content: center; color: black; }
  .hamburger-btn .svg-wrapper, .hamburger-btn .svg-wrapper svg { width: 100% !important; height: 100% !important; object-fit: contain; }

  @media (max-width: 989px) { 
    .desktop-menu { display: none; } 
    .mobile-trigger { display: block; } 
    .luxury-nav-container { position: static; display: flex; align-items: center; order: -1; flex-grow: 0; margin-right: auto; }
  }
</style>