/* ===================================
   TIENDITA IKER Y DARLING
   Main CSS - Kawaii Anime Theme
   =================================== */

/* ── CSS Variables ── */
:root {
    --pink-pastel: #FFB6C1;
    --pink-strong: #FF69B4;
    --pink-light: #FFF0F5;
    --pink-dark: #DB7093;
    --celeste-pastel: #B5D8F7;
    --celeste-strong: #7EC8E3;
    --celeste-light: #E8F4FD;
    --celeste-dark: #5BA3C9;
    --lavender: #E6D5F5;
    --lavender-dark: #B794D6;
    --mint: #B5EAD7;
    --yellow-pastel: #FFF9C4;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --text-dark: #2D1B69;
    --text-medium: #5C4A8A;
    --text-light: #8B7DB5;
    --bg-main: #FFF8F5;
    --shadow-kawaii: 0 4px 20px rgba(255, 105, 180, 0.15);
    --shadow-hover: 0 8px 30px rgba(255, 105, 180, 0.25);
    --shadow-card: 0 2px 15px rgba(45, 27, 105, 0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --font-main: 'Nunito', 'Quicksand', -apple-system, sans-serif;
    --font-heading: 'Quicksand', 'Nunito', sans-serif;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.kawaii-theme {
    background: var(--bg-main);
}

a {
    color: var(--pink-strong);
    text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}

a:hover {
    color: var(--pink-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Container ── */
.kawaii-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Inline SVG Icons ── */
.icon-inline {
    display: inline-block;
    vertical-align: -0.15em;
    flex-shrink: 0;
}

/* ── Sections ── */
.kawaii-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-strong), var(--celeste-strong), var(--lavender-dark));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ── HEADER ── */
.kawaii-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(45, 27, 105, 0.06);
    transition: all 0.3s var(--transition-smooth);
}

.kawaii-header.scrolled {
    box-shadow: var(--shadow-kawaii);
}

.kawaii-header-top {
    background: linear-gradient(135deg, var(--pink-pastel), var(--celeste-pastel));
    padding: 6px 0;
    font-size: 0.8rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-welcome {
    color: var(--text-dark);
    font-weight: 600;
}

.header-top-links {
    display: flex;
    gap: 20px;
}

.header-top-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.header-top-links a:hover {
    color: var(--pink-dark);
}

.kawaii-header-main {
    padding: 12px 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.kawaii-logo {
    flex-shrink: 0;
}

.kawaii-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    animation: logoSpin 3s ease-in-out infinite;
}

@keyframes logoSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-strong), var(--text-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: none;
}

/* Search */
.kawaii-search {
    flex: 1;
    max-width: 500px;
}

.kawaii-search form {
    position: relative;
}

.kawaii-search input[type="search"],
.kawaii-search .search-field {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 2px solid var(--celeste-pastel);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s var(--transition-smooth);
    outline: none;
}

.kawaii-search input[type="search"]:focus,
.kawaii-search .search-field:focus {
    border-color: var(--pink-strong);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.kawaii-search input[type="submit"],
.kawaii-search .search-submit,
.kawaii-search button[type="submit"],
.kawaii-search .woocommerce-product-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 8px 18px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s var(--transition-bounce);
}

.kawaii-search input[type="submit"]:hover,
.kawaii-search .search-submit:hover,
.kawaii-search button[type="submit"]:hover,
.kawaii-search .woocommerce-product-search button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.kawaii-search .woocommerce-product-search {
    position: relative;
}

/* Header Actions */
.kawaii-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.kawaii-account-btn,
.kawaii-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    color: var(--text-dark);
    background: var(--pink-light);
    transition: all 0.3s var(--transition-bounce);
}

.kawaii-account-btn:hover,
.kawaii-cart-btn:hover {
    background: var(--pink-pastel);
    transform: scale(1.1);
    color: var(--text-dark);
}

.kawaii-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--pink-strong);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Mobile Menu Toggle */
.kawaii-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
}

.kawaii-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--transition-smooth);
}

.kawaii-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.kawaii-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.kawaii-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation */
.kawaii-nav {
    background: var(--white);
    border-top: 1px solid rgba(255, 182, 193, 0.3);
}

.kawaii-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.kawaii-menu li {
    position: relative;
}

.kawaii-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-bounce);
    position: relative;
}

.kawaii-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink-strong);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--transition-bounce);
    transform: translateX(-50%);
}

.kawaii-menu li a:hover::after,
.kawaii-menu li.current-menu-item a::after {
    width: 60%;
}

.kawaii-menu li a:hover {
    color: var(--pink-strong);
    background: var(--pink-light);
}

/* Sub menu */
.kawaii-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--transition-smooth);
    list-style: none;
    z-index: 100;
}

.kawaii-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kawaii-menu .sub-menu li a {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ── HERO ── */
.kawaii-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--pink-light), var(--celeste-light));
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--pink-pastel);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--celeste-pastel);
    bottom: -50px;
    left: -50px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--lavender);
    top: 50%;
    left: 50%;
    animation: blobFloat 12s ease-in-out infinite 2s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Sparkles */
.hero-sparkles {
    position: absolute;
    inset: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--pink-strong);
    border-radius: 50%;
    animation: sparkleFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
    top: calc(var(--i) * 5%);
    left: calc(var(--i) * 5%);
    opacity: 0;
}

.sparkle:nth-child(even) {
    background: var(--celeste-strong);
}

.sparkle:nth-child(3n) {
    background: var(--lavender-dark);
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

/* Manga Grid Layout */
.hero-manga-panels {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.manga-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.manga-panel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
}

.manga-panel:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 5;
}

.panel-border {
    position: absolute;
    inset: 0;
    border: 3px solid var(--text-dark);
    border-radius: var(--radius-lg);
    pointer-events: none;
    transition: border-color 0.3s;
}

.manga-panel:hover .panel-border {
    border-color: var(--pink-strong);
}

.panel-inner {
    padding: 30px;
    height: 100%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Panel Main */
.panel-main {
    grid-row: 1 / 3;
}

.panel-main .panel-inner {
    display: flex;
    align-items: center;
    min-height: 400px;
    background: linear-gradient(135deg, var(--white), var(--pink-light));
    padding: 40px;
}

.panel-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-medium);
}

.title-line-2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-strong), var(--text-dark), var(--celeste-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.panel-decoration {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 280px;
    height: 280px;
    opacity: 0.6;
    z-index: 1;
}

.kawaii-mascot {
    width: 100%;
    height: 100%;
    animation: mascotBounce 3s ease-in-out infinite;
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mascot-tail {
    animation: tailWag 1.5s ease-in-out infinite;
    transform-origin: 155px 130px;
}

@keyframes tailWag {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.mascot-eye {
    animation: mascotBlink 4s ease-in-out infinite;
}

@keyframes mascotBlink {
    0%, 90%, 100% { ry: 10; }
    95% { ry: 1; }
}

.mascot-star {
    animation: starRotate 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes starRotate {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Panel Promo */
.panel-promo .panel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-strong), #FF1493, var(--pink-dark));
    color: white;
    position: relative;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.promo-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin: 8px 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.promo-desc {
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-sparkle {
    font-size: 3rem;
    position: absolute;
    top: 10px;
    right: 15px;
    animation: sparkleRotate 2s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.2); }
}

/* Panel Action */
.panel-action .panel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--yellow-pastel), #FFF);
    position: relative;
    overflow: hidden;
}

.speed-lines {
    position: absolute;
    inset: 0;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink-strong), transparent);
    width: 100%;
    top: calc(var(--line-i) * 12.5%);
    animation: speedLineMove 1.5s ease-in-out infinite;
    animation-delay: calc(var(--line-i) * 0.15s);
    opacity: 0.3;
}

@keyframes speedLineMove {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateX(100%); opacity: 0; }
}

.action-text {
    position: relative;
    z-index: 2;
}

.action-word {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--pink-strong);
    text-shadow: 2px 2px 0px var(--pink-pastel);
}

.action-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-medium);
    margin-top: 5px;
}

/* Panel Category */
.panel-category .panel-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--celeste-light), var(--white));
}

.category-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cat-emoji {
    font-size: 2.5rem;
}

.cat-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    flex: 1;
}

.cat-arrow {
    font-size: 1.5rem;
    color: var(--celeste-dark);
    transition: transform 0.3s var(--transition-bounce);
}

.panel-category:hover .cat-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-medium);
    border-radius: 20px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--pink-strong);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* ── BUTTONS ── */
.kawaii-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--transition-bounce);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.kawaii-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.5s;
    transform: translate(-50%, -50%);
}

.kawaii-btn:hover::before {
    width: 300px;
    height: 300px;
}

.kawaii-btn-primary {
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.kawaii-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    color: white;
}

.kawaii-btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--pink-pastel);
    box-shadow: var(--shadow-card);
}

.kawaii-btn-secondary:hover {
    background: var(--pink-light);
    border-color: var(--pink-strong);
    transform: translateY(-3px);
    color: var(--text-dark);
}

.kawaii-btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.kawaii-btn-add-cart,
.kawaii-btn-add-cart-single {
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.2);
}

.kawaii-btn-add-cart:hover,
.kawaii-btn-add-cart-single:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.35);
}

.kawaii-btn-add-cart.added {
    background: linear-gradient(135deg, var(--mint), #4CAF50);
}

/* ── CATEGORIES GRID ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition-bounce);
    text-decoration: none;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-pastel);
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-light), var(--celeste-light));
    border-radius: var(--radius-full);
    margin-bottom: 15px;
    transition: transform 0.3s var(--transition-bounce);
}

.category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.1);
}

.category-emoji {
    font-size: 2rem;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 5px;
}

.category-count {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ── PRODUCTS GRID ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition-bounce);
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-pastel);
}

.kawaii-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FF1493, var(--pink-dark));
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 5;
    animation: badgePulse 2s ease-in-out infinite;
}

.kawaii-sale-badge-lg {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--pink-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 105, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-overlay span {
    background: var(--white);
    color: var(--pink-strong);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.3s var(--transition-bounce);
}

.product-card:hover .product-card-overlay span {
    transform: translateY(0);
}

.product-card-info {
    padding: 16px;
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-title a {
    color: var(--text-dark);
}

.product-card-title a:hover {
    color: var(--pink-strong);
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pink-strong);
    margin-bottom: 12px;
}

.product-card-price del {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-card-price ins {
    text-decoration: none;
    color: var(--pink-strong);
}

/* Product card sale variant */
.product-card-sale {
    border: 2px solid var(--pink-pastel);
}

/* ── ABOUT / WHY US ── */
.kawaii-about {
    background: linear-gradient(135deg, var(--white), var(--pink-light), var(--celeste-light));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content > p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin: 20px 0 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--transition-bounce);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--pink-pastel), var(--celeste-pastel));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kawaii-stars-bg {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.kawaii-stars-bg span {
    font-size: 3rem;
    animation: starFloat 3s ease-in-out infinite;
}

.kawaii-stars-bg span:nth-child(2) { animation-delay: 0.5s; }
.kawaii-stars-bg span:nth-child(3) { animation-delay: 1s; }
.kawaii-stars-bg span:nth-child(4) { animation-delay: 1.5s; }
.kawaii-stars-bg span:nth-child(5) { animation-delay: 2s; }

@keyframes starFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* ── NEWSLETTER ── */
.kawaii-newsletter {
    background: linear-gradient(135deg, var(--pink-strong), #FF1493, var(--pink-dark));
    color: white;
    text-align: center;
}

.kawaii-newsletter .section-title {
    color: white;
}

.kawaii-newsletter .section-title::after {
    background: rgba(255,255,255,0.5);
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 12px auto 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 5px;
    backdrop-filter: blur(10px);
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input-group .kawaii-btn {
    white-space: nowrap;
    background: var(--white);
    color: var(--pink-strong);
    box-shadow: none;
}

.newsletter-input-group .kawaii-btn:hover {
    background: var(--yellow-pastel);
    color: var(--pink-dark);
}

/* ── FOOTER ── */
.kawaii-footer {
    position: relative;
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
}

.footer-wave {
    position: relative;
    top: -2px;
    color: var(--bg-main);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.kawaii-footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: white;
    transition: all 0.3s var(--transition-bounce);
}

.social-link:hover {
    background: var(--pink-strong);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.3s;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--pink-pastel);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--pink-pastel);
}

.kawaii-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ── WHATSAPP FLOAT ── */
.kawaii-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.kawaii-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ── SCROLL TO TOP ── */
.kawaii-scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.kawaii-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kawaii-scroll-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.kawaii-scroll-top span {
    font-size: 0.6rem;
    margin-top: -2px;
}

/* ── FLOATING DECORATIONS ── */
.kawaii-floating-decorations {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-star,
.floating-heart {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.1;
    left: var(--x);
    animation: floatUpDown 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes floatUpDown {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ── SHOP PAGE ── */
.kawaii-shop-main {
    padding: 40px 0 80px;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
}

.shop-subtitle {
    color: var(--text-medium);
    margin-top: 8px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.shop-sidebar {
    position: sticky;
    top: 180px;
    align-self: start;
}

.sidebar-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-categories li a:hover,
.sidebar-categories li.active a {
    background: var(--pink-light);
    color: var(--pink-strong);
}

.cat-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.shop-toolbar .woocommerce-result-count {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.shop-toolbar .woocommerce-ordering select {
    padding: 8px 16px;
    border: 2px solid var(--celeste-pastel);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.shop-toolbar .woocommerce-ordering select:focus {
    border-color: var(--pink-strong);
}

.shop-products .products-grid,
.shop-products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.shop-pagination {
    margin-top: 40px;
}

.shop-pagination .woocommerce-pagination {
    text-align: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    align-items: center;
}

.shop-pagination .page-numbers li a,
.shop-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--pink-pastel);
    color: var(--text-dark);
    transition: all 0.3s var(--transition-bounce);
    text-decoration: none;
}

.shop-pagination .page-numbers li a:hover,
.shop-pagination .page-numbers li span.current {
    background: var(--pink-strong);
    border-color: var(--pink-strong);
    color: white;
    transform: scale(1.1);
}

.out-of-stock-badge {
    display: block;
    text-align: center;
    padding: 8px;
    background: var(--celeste-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-medium);
}

/* ── SINGLE PRODUCT ── */
.kawaii-product-single {
    padding: 30px 0 80px;
}

.kawaii-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.kawaii-breadcrumb a {
    color: var(--text-medium);
}

.kawaii-breadcrumb a:hover {
    color: var(--pink-strong);
}

.bc-sep {
    color: var(--pink-pastel);
    margin: 0 5px;
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    border: 3px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    padding: 0;
    transition: all 0.3s var(--transition-bounce);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--pink-strong);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-categories {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-categories a {
    color: var(--pink-strong);
    font-weight: 600;
}

.product-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pink-strong);
}

.product-price del {
    color: var(--text-light);
    font-size: 1.2rem;
}

.product-price ins {
    text-decoration: none;
}

.product-savings {
    background: var(--pink-light);
    color: var(--pink-strong);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-description,
.product-short-desc {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-stock {
    margin-bottom: 20px;
}

.in-stock {
    color: #4CAF50;
    font-weight: 700;
}

.out-of-stock {
    color: #f44336;
    font-weight: 700;
}

.product-add-to-cart {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: background 0.3s;
}

.qty-btn:hover {
    background: var(--pink-pastel);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-meta {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
}

.meta-item {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.meta-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 8px;
}

.related-products-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 182, 193, 0.2);
}

/* ── 404 PAGE ── */
.kawaii-404 {
    text-align: center;
    padding: 80px 0;
}

.kawaii-404-illustration {
    margin-bottom: 30px;
    animation: floatSad 3s ease-in-out infinite;
}

@keyframes floatSad {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.kawaii-404 h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.kawaii-404 p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* ── NO RESULTS / CONTENT ── */
.kawaii-no-content,
.kawaii-no-results,
.kawaii-no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ── KAWAII CART ADD NOTIFICATION ── */
.kawaii-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 25px;
    box-shadow: var(--shadow-hover);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.5s var(--transition-bounce);
    border-left: 4px solid var(--pink-strong);
    max-width: 350px;
}

.kawaii-notification.show {
    transform: translateX(0);
}

.kawaii-notification .notif-icon {
    font-size: 1.5rem;
    animation: notifBounce 0.5s var(--transition-bounce);
}

.kawaii-notification .notif-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

@keyframes notifBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ── PAGE TEMPLATES ── */
.kawaii-page-content {
    padding: 50px 0 80px;
}

.kawaii-page .page-header {
    margin-bottom: 30px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
}

.page-content {
    max-width: 800px;
    color: var(--text-medium);
    line-height: 1.8;
}

.page-content h2, .page-content h3 {
    color: var(--text-dark);
    margin: 25px 0 12px;
}

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.woocommerce-message {
    background: var(--mint);
    border-color: #4CAF50;
    color: var(--text-dark);
}

.woocommerce-info {
    background: var(--celeste-light);
    border-color: var(--celeste-strong);
    color: var(--text-dark);
}

.woocommerce-error {
    background: #FFE0E0;
    border-color: #f44336;
    color: var(--text-dark);
    list-style: none;
}

/* ── SLIDE-OUT CART PANEL ── */
.cart-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 105, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--transition-smooth), visibility 0.35s;
}

.cart-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(255, 105, 180, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.4s var(--transition-bounce);
    border-left: 3px solid var(--pink-pastel);
}

.cart-panel.active {
    transform: translateX(0);
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender) 50%, var(--celeste-light) 100%);
    border-bottom: 2px solid var(--pink-pastel);
    flex-shrink: 0;
}

.cart-panel-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-panel-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    background: var(--pink-strong);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
}

.cart-panel-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--text-medium);
    transition: all 0.3s var(--transition-smooth);
}

.cart-panel-close:hover {
    background: var(--pink-strong);
    border-color: var(--pink-strong);
    color: white;
    transform: rotate(90deg);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Scrollbar inside panel */
.cart-panel-body::-webkit-scrollbar {
    width: 6px;
}

.cart-panel-body::-webkit-scrollbar-track {
    background: var(--pink-light);
}

.cart-panel-body::-webkit-scrollbar-thumb {
    background: var(--pink-pastel);
    border-radius: 3px;
}

/* Empty cart */
.cart-panel-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    gap: 12px;
    height: 100%;
}

.cart-empty-icon {
    font-size: 4rem;
    opacity: 0.5;
    animation: wiggle 2s ease-in-out infinite;
}

.cart-panel-empty p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-panel-empty span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cart-panel-shop-btn {
    margin-top: 15px;
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    color: white !important;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: inline-block;
}

.cart-panel-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white !important;
}

/* Cart items list */
.cart-panel-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-panel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    transition: background 0.2s;
    animation: slideInRight 0.3s var(--transition-smooth);
}

.cart-panel-item:hover {
    background: var(--pink-light);
}

.cart-item-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--pink-pastel);
    background: var(--cream);
    transition: transform 0.3s var(--transition-bounce);
}

.cart-item-thumb:hover {
    transform: scale(1.05);
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    margin-bottom: 5px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-name:hover {
    color: var(--pink-strong) !important;
}

.cart-item-qty-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.cart-item-price {
    font-weight: 800;
    color: var(--pink-strong);
    font-size: 0.95rem;
}

.cart-item-remove {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s var(--transition-smooth);
}

.cart-item-remove:hover {
    background: #ffe0e0;
    border-color: #f44336;
    color: #f44336;
    transform: scale(1.1);
}

/* Cart panel footer */
.cart-panel-footer {
    padding: 20px 24px;
    border-top: 2px solid var(--pink-pastel);
    background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-panel-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-panel-total-price {
    font-size: 1.2rem;
    color: var(--pink-strong);
    font-weight: 800;
}

.cart-panel-view-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--pink-strong);
    border-radius: var(--radius-full);
    color: var(--pink-strong) !important;
    font-weight: 700;
    transition: all 0.3s var(--transition-smooth);
}

.cart-panel-view-btn:hover {
    background: var(--pink-light);
    transform: translateY(-2px);
    color: var(--pink-strong) !important;
}

.cart-panel-checkout-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--pink-strong), var(--pink-dark));
    border-radius: var(--radius-full);
    color: white !important;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.cart-panel-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    color: white !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Body scroll lock */
body.cart-panel-open {
    overflow: hidden;
}

/* Cart button style (now a real button) */
#cartPanelToggle {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* ══════════════════════════════════════
   OFERTAS PAGE
   ══════════════════════════════════════ */

.ofertas-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender) 30%, var(--celeste-light) 70%, var(--mint) 100%);
    text-align: center;
    overflow: hidden;
}

.ofertas-hero-content {
    position: relative;
    z-index: 2;
}

.ofertas-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pink-strong);
    margin-bottom: 20px;
}

.ofertas-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.1;
}

.ofertas-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.ofertas-hero-shapes .shape {
    position: absolute;
    font-size: 2rem;
    color: var(--pink-pastel);
    opacity: 0.4;
    animation: floatShape 6s ease-in-out infinite;
}

.ofertas-hero-shapes .shape-1 { top: 15%; left: 8%; animation-delay: 0s; }
.ofertas-hero-shapes .shape-2 { top: 25%; right: 12%; animation-delay: 1.5s; }
.ofertas-hero-shapes .shape-3 { bottom: 20%; left: 15%; animation-delay: 3s; }
.ofertas-hero-shapes .shape-4 { bottom: 30%; right: 8%; animation-delay: 0.5s; }

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

.ofertas-count {
    text-align: center;
    margin-bottom: 35px;
}

.ofertas-count span {
    display: inline-block;
    padding: 8px 24px;
    background: var(--pink-light);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--pink-strong);
    font-size: 0.95rem;
}

.product-card-savings {
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 700;
    margin-bottom: 8px;
}

.ofertas-empty {
    text-align: center;
    padding: 80px 20px;
}

.ofertas-empty-icon {
    margin-bottom: 20px;
}

.ofertas-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ofertas-empty p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.ofertas-cta {
    background: var(--pink-light);
}

.ofertas-cta-card {
    text-align: center;
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    box-shadow: var(--shadow-kawaii);
}

.ofertas-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ofertas-cta-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.ofertas-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   QUIÉNES SOMOS PAGE
   ══════════════════════════════════════ */

.about-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--pink-light) 50%, var(--celeste-light) 100%);
    text-align: center;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pink-strong);
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
}

.about-hero-shapes .shape {
    position: absolute;
    font-size: 2rem;
    color: var(--lavender-dark);
    opacity: 0.35;
    animation: floatShape 6s ease-in-out infinite;
}

.about-hero-shapes .shape-1 { top: 20%; left: 10%; animation-delay: 0s; }
.about-hero-shapes .shape-2 { top: 30%; right: 10%; animation-delay: 2s; }
.about-hero-shapes .shape-3 { bottom: 25%; left: 20%; animation-delay: 1s; }

.about-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Story section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.about-story-text strong {
    color: var(--text-dark);
}

.about-image-card {
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-kawaii);
    text-align: center;
    transition: transform 0.4s var(--transition-bounce);
}

.about-image-card:hover {
    transform: translateY(-5px) rotate(1deg);
}

.about-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Mission section */
.about-mission-section {
    background: var(--pink-light);
}

.about-mission-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-kawaii);
}

.mission-icon {
    margin-bottom: 20px;
}

.about-mission-card .about-section-title {
    justify-content: center;
}

.about-mission-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Values grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-value-card {
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition-bounce);
    animation-delay: var(--delay, 0s);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-strong);
}

.value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender));
    border-radius: var(--radius-full);
    color: var(--pink-strong);
}

.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-value-card p {
    color: var(--text-medium);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Contact section */
.about-contact-section {
    background: linear-gradient(135deg, var(--celeste-light), var(--pink-light));
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.about-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
}

.about-contact-list li:last-child {
    border-bottom: none;
}

.about-contact-list a {
    color: var(--pink-strong);
    font-weight: 600;
}

.about-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-map-placeholder {
    background: var(--white);
    border: 2px solid var(--pink-pastel);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.about-map-placeholder p {
    margin-top: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-medium);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .manga-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .panel-main {
        grid-row: auto;
        grid-column: 1 / -1;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .kawaii-section {
        padding: 50px 0;
    }

    .kawaii-header-top {
        display: none;
    }

    .kawaii-menu-toggle {
        display: flex;
    }

    .kawaii-nav {
        display: none;
    }
    
    .kawaii-nav.active {
        display: block;
    }

    .kawaii-menu {
        flex-direction: column;
        padding: 15px;
    }

    .kawaii-menu li a {
        padding: 12px 15px;
    }

    .kawaii-search {
        display: none;
    }

    .header-main-content {
        gap: 15px;
    }

    .manga-grid {
        grid-template-columns: 1fr;
    }

    .panel-main .panel-inner {
        flex-direction: column;
        min-height: auto;
        padding: 30px 20px;
    }

    .panel-decoration {
        position: relative;
        right: auto;
        bottom: auto;
        width: 150px;
        height: 150px;
        margin: 0 auto;
        opacity: 0.4;
    }

    .hero-actions {
        justify-content: center;
    }

    .product-single-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .product-add-to-cart {
        flex-direction: column;
    }

    .kawaii-btn-add-cart-single {
        width: 100%;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .ofertas-hero,
    .about-hero {
        padding: 60px 0 40px;
    }

    .ofertas-cta-card {
        padding: 35px 20px;
    }

    .about-mission-card {
        padding: 35px 25px;
    }

    .about-section-title {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-value {
        font-size: 2rem;
    }

    .cart-panel {
        width: 100vw;
        max-width: 100vw;
        border-left: none;
    }

    .cart-panel-item {
        padding: 14px 16px;
    }

    .cart-panel-footer {
        padding: 16px;
    }
}
