:root {
  --primary: #000000;
  --primary-container: #1B1B1B;
  --surface: #F9F9F9;
  --surface-container-low: #F4F3F3;
  --surface-container-high: #E8E8E8;
  --on-primary: #FFFFFF;
  --secondary: #B60059; /* Neon Pink */
  --tertiary: #00DBE9;  /* Neon Blue */
  --outline-variant: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--surface);
  color: var(--primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Responsive Display Classes */
.pc-only { display: none !important; }
.mobile-only { display: block; }

@media (min-width: 1025px) {
    .pc-only { display: contents !important; }
    .mobile-only { display: none !important; }
}

@media (min-width: 1025px) {
  .pc-message {
    display: block;
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

/* Typography */
h1, h2, h3, .serif-heading {
  font-family: 'Noto Serif', serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.label-sm {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Header Default (Sticky & Solid with Glassmorphism) */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(249, 249, 249, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999 !important;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-nav-pc {
    display: none;
    gap: 2.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.header-nav-pc a {
    text-decoration: none;
    color: var(--primary);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.header-nav-pc a:hover, .header-nav-pc a.active {
    opacity: 1;
}

.header-search-container {
    display: none;
    position: relative;
    margin-right: 2rem;
}

.header-search-container input {
    background: rgba(0,0,0,0.05);
    border: none;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 200px;
    border-radius: 4px;
}

.header-search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary);
    opacity: 0.4;
}

@media (min-width: 1025px) {
    .header-nav-pc {
        display: flex !important;
        align-items: center;
    }
    .header-search-container {
        display: flex !important;
        align-items: center;
    }
    header { padding: 1.5rem 4rem; }
    
    header .logo,
    header .nav-item,
    header .header-nav-pc a {
        color: var(--primary) !important;
        opacity: 0.6;
    }
    header .logo { opacity: 1; }
    header .header-nav-pc a.active, 
    header .header-nav-pc a:hover {
        opacity: 1;
    }
}

.logo {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
}

/* Hero Carousel */
.hero-carousel-container {
  position: relative;
  height: calc(100vh - 60px);
  overflow: hidden;
  background-color: var(--primary);
}

.hero-slides-wrapper {
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: var(--on-primary);
  text-align: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(1.8rem, 8vw, 2.8rem); /* Reducido para mayor elegancia */
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.btn-primary {
  display: inline-block;
  background: var(--on-primary);
  color: var(--primary);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-indicators {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
  color: var(--on-primary);
}

.carousel-dots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--on-primary);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.dot.active {
  height: 20px;
  opacity: 1;
  background-color: var(--secondary);
}

/* New Drops */
.section { padding: 4rem 1.5rem; }
.section-title { font-size: 2rem; margin-bottom: 2rem; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: var(--secondary); }

.product-card { margin-bottom: 4rem; cursor: pointer; }
.product-img-wrapper { position: relative; background: var(--surface-container-low); margin-bottom: 1.5rem; overflow: hidden; }
.product-img { width: 100%; display: block; transition: transform 0.7s; }
.product-card:hover .product-img { transform: scale(1.05); }
.limited-tag { position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: var(--on-primary); padding: 0.4rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.1em; }

.product-info { display: flex; justify-content: space-between; align-items: flex-start; }
.product-name { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.product-price { font-weight: 600; color: var(--secondary); }

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  z-index: 1000;
  border-top: 1px solid var(--outline-variant);
}

.nav-item { color: #999; font-size: 1.2rem; text-decoration: none; background: none; border: none; cursor: pointer; }
.nav-item.active { color: var(--secondary); }

/* Nav Drawer Enhanced */
#nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(249, 249, 249, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

#nav-drawer.open {
  transform: translateX(0);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 2rem 4rem;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.drawer-link {
  font-family: 'Noto Serif', serif;
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  text-decoration: none;
  color: var(--primary);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
  letter-spacing: -0.04em;
}

#nav-drawer.open .drawer-link {
    opacity: 0.7;
    transform: translateY(0);
}

/* Retraso escalonado para los links */
#nav-drawer.open .drawer-link:nth-child(1) { transition-delay: 0.2s; }
#nav-drawer.open .drawer-link:nth-child(2) { transition-delay: 0.3s; }
#nav-drawer.open .drawer-link:nth-child(3) { transition-delay: 0.4s; }
#nav-drawer.open .drawer-link:nth-child(4) { transition-delay: 0.5s; }
#nav-drawer.open .drawer-link:nth-child(5) { transition-delay: 0.6s; }

.drawer-link:hover, .drawer-link.active {
  opacity: 1 !important;
  color: var(--secondary);
  padding-left: 1rem;
}

.drawer-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-socials {
    display: flex;
    gap: 2rem;
    font-size: 14px;
}

/* PC Nav Refinements */
.header-nav-pc a {
    position: relative;
}

.header-nav-pc a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.header-nav-pc a:hover::after, .header-nav-pc a.active::after {
    width: 100%;
}

/* Utilities & Animations */
@keyframes bag-jiggle {
    0% { transform: scale(1); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    75% { transform: scale(1.2) rotate(-10deg); }
    100% { transform: scale(1); }
}

.bag-animate {
    animation: bag-jiggle 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

#cart-toast {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 2000;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

#cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.btn-primary:active {
    transform: scale(0.96);
}

/* Cart Drawer Styles */
#cart-drawer.open {
    visibility: visible !important;
}

#cart-drawer.open #cart-overlay {
    opacity: 1 !important;
}

#cart-drawer.open #cart-panel {
    transform: translateX(0) !important;
}

/* Resto de utilidades */
.no-scrollbar::-webkit-scrollbar { display: none !important; }
.no-scrollbar { 
    -ms-overflow-style: none !important; 
    scrollbar-width: none !important; 
}

.product-thumbnail {
    width: 30px;
    height: 40px;
    object-fit: cover;
    opacity: 0.3;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
}

.product-thumbnail:hover { opacity: 1; }

.product-thumbnails-wrapper {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    overflow-x: auto;
}

/* Adaptive Typography for Titles */
.adaptive-title {
    font-size: clamp(1.2rem, 6vw, 2rem);
    line-height: 1.1;
    word-wrap: break-word;
    display: block;
}

@media (min-width: 1025px) {
    .adaptive-title {
        font-size: clamp(2rem, 3.5vw, 4rem);
    }
}

/* Icon Helper */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}
