/* ============================================
   PASTA SATIŞ SİTESİ - ANA STİL DOSYASI
   Modern, Premium, Glass-morphism, Mobil Uyumlu
   Tamamen Yeniden Yazıldı - v2.0
   ============================================ */

/* ------- CSS VARIABLES ------- */
:root {
    /* Primary Palette - Pink Rose - Enhanced */
    --primary-50: #fdf2f8;
    --primary-100: #fce7f3;
    --primary-200: #fbcfe8;
    --primary-300: #f9a8d4;
    --primary-400: #f472b6;
    --primary-500: #e91e8c;
    --primary-600: #db2777;
    --primary-700: #be185d;
    --primary-800: #9d174d;
    --primary-900: #831843;
    /* Primary Aliases */
    --primary: #e91e8c;
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --primary-glow: rgba(233,30,140,0.25);
    --primary-rgb: 233,30,140;
    /* Secondary */
    --secondary: #1e1e3f;
    --secondary-light: #2c2c54;
    /* Accent */
    --accent: #f0a500;
    --accent-light: #ffd166;
    /* Grayscale */
    --dark: #0f0f23;
    --gray-900: #1a1a2e;
    --gray-800: #2d3436;
    --gray-700: #636e72;
    --gray-600: #b2bec3;
    --gray-500: #dfe6e9;
    --gray-400: #f1f2f6;
    --gray-300: #f5f6fa;
    --gray-200: #fafbfc;
    --white: #ffffff;
    /* Status Colors */
    --success: #00b894;
    --success-light: #55efc4;
    --warning: #fdcb6e;
    --warning-dark: #f0a500;
    --danger: #ff6b6b;
    --danger-dark: #e55039;
    --info: #74b9ff;
    --whatsapp: #25d366;
    /* Gradients - Enhanced */
    --gradient-primary: linear-gradient(135deg, #db2777 0%, #e91e8c 40%, #f472b6 100%);
    --gradient-primary-hover: linear-gradient(135deg, #be185d 0%, #db2777 40%, #e91e8c 100%);
    --gradient-primary-vibrant: linear-gradient(135deg, #9d174d 0%, #e91e8c 50%, #f9a8d4 100%);
    --gradient-primary-soft: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #f9a8d4 100%);
    --gradient-secondary: linear-gradient(135deg, #1e1e3f 0%, #2c2c54 50%, #1e1e3f 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    --gradient-warm: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 40%, #fbcfe8 100%);
    --gradient-warm-reverse: linear-gradient(135deg, #fbcfe8 0%, #fce7f3 60%, #fdf2f8 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    --gradient-glass-pink: linear-gradient(135deg, rgba(253,242,248,0.95) 0%, rgba(252,231,243,0.85) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(30,30,63,0.9) 0%, rgba(15,15,35,0.95) 100%);
    --gradient-accent: linear-gradient(135deg, #f0a500 0%, #ffd166 100%);
    --gradient-success: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    --gradient-pink-pattern: repeating-linear-gradient(45deg, rgba(233,30,140,0.03) 0px, rgba(233,30,140,0.03) 10px, transparent 10px, transparent 20px);
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.15);
    --shadow-2xl: 0 35px 100px rgba(0,0,0,0.2);
    --shadow-primary: 0 8px 30px rgba(233,30,140,0.3);
    --shadow-primary-lg: 0 15px 50px rgba(233,30,140,0.35);
    --shadow-glass: 0 8px 32px rgba(31,38,135,0.07);
    --shadow-inset: inset 0 2px 4px rgba(0,0,0,0.06);
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-overlay: 998;
    --z-navbar: 1000;
    --z-topbar: 1001;
    --z-modal: 10000;
    --z-toast: 10001;
    --z-preloader: 99999;
}

/* ------- RESET & BASE ------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-200);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
    border: 2px solid var(--gray-200);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ------- PRELOADER ------- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    z-index: var(--z-preloader);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
    position: relative;
}

.loader .cake-icon {
    font-size: 4.5rem;
    animation: bouncePreload 1.2s ease-in-out infinite;
    display: inline-block;
}

.loader p {
    margin-top: 20px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loader .loader-dots {
    display: inline-flex;
    gap: 6px;
    margin-top: 8px;
}

.loader .loader-dots span {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    animation: loaderDot 1.4s ease-in-out infinite;
}

.loader .loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader .loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bouncePreload {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(-3deg); }
    50% { transform: translateY(-20px) scale(1.06) rotate(0deg); }
    75% { transform: translateY(-12px) scale(1.03) rotate(3deg); }
}

@keyframes loaderDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* ------- TOP BAR ------- */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: var(--z-topbar);
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.top-bar-left span:hover {
    opacity: 1;
}

.top-bar-left i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.top-bar-right a:hover {
    color: var(--primary-light);
}

.top-bar-right a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: var(--transition);
}

.top-bar-right a:hover::after {
    width: 100%;
}

.top-bar-right span {
    color: rgba(255,255,255,0.7);
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right span i {
    color: var(--primary-light);
}

.logout-link:hover {
    color: var(--danger) !important;
}

/* Top Bar Banner */
.top-bar-banner {
    text-align: center;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: bannerSlide 0.6s ease;
}

.top-bar-banner i {
    margin-right: 6px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes bannerSlide {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* ------- NAVBAR ------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: var(--z-navbar);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 14px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(233,30,140,0.3));
    animation: logoFloat 3s ease-in-out infinite;
    transition: var(--transition-bounce);
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1) rotate(-5deg);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
    transition: var(--transition);
}

.nav-logo:hover .logo-name {
    color: var(--primary);
}

.logo-slogan {
    font-family: var(--font-script);
    font-size: 0.78rem;
    color: var(--primary);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li > a {
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 60%;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary);
    background: rgba(233,30,140,0.06);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 0.65rem;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-dropdown);
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.88rem;
    color: var(--gray-700);
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
    position: relative;
}

.dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(233,30,140,0.06);
    color: var(--primary);
    padding-left: 22px;
}

.dropdown-menu a:hover i {
    color: var(--primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

/* Search */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    background: var(--gray-300);
    opacity: 0;
}

.search-box.active input {
    width: 240px;
    padding: 9px 18px;
    border-color: var(--primary-light);
    opacity: 1;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.search-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
}

.search-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: var(--shadow-primary);
}

/* Search Results */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 420px;
    overflow-y: auto;
    display: none;
    z-index: var(--z-dropdown);
    border: 1px solid rgba(0,0,0,0.05);
}

.search-results.active {
    display: block;
    animation: fadeInDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-fast);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(233,30,140,0.04);
}

.search-result-item span {
    font-size: 1.8rem;
}

.search-result-item div h4 {
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 500;
}

.search-result-item div p {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
}

/* Cart Button */
.cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-700);
    transition: var(--transition);
    border: none;
}

.cart-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: var(--shadow-primary);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gradient-primary);
    color: var(--white);
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCount 2s infinite;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(233,30,140,0.4);
}

@keyframes pulseCount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* WhatsApp Nav */
.whatsapp-float-nav {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.whatsapp-float-nav:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
    width: 32px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Close Button */
.mobile-close {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 15px;
    transition: var(--transition-fast);
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.mobile-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* ------- FLASH MESSAGES ------- */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 420px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-success {
    background: rgba(212,237,218,0.95);
    color: #155724;
    border-left: 4px solid var(--success);
}

.flash-error {
    background: rgba(248,215,218,0.95);
    color: #721c24;
    border-left: 4px solid var(--danger);
}

.flash-warning {
    background: rgba(255,243,205,0.95);
    color: #856404;
    border-left: 4px solid var(--warning);
}

.flash-message button {
    background: none;
    color: inherit;
    font-size: 1rem;
    margin-left: auto;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.flash-message button:hover {
    opacity: 1;
    transform: rotate(90deg);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------- HERO SECTION ------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-warm);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,30,140,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e91e8c" fill-opacity="0.04" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(233,30,140,0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(233,30,140,0.15);
    animation: fadeInDown 0.6s ease 0.2s both;
}

.hero-badge i {
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-highlight {
    color: var(--primary);
    font-family: var(--font-script);
    font-size: 1.15em;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(233,30,140,0.15);
    border-radius: 4px;
    z-index: -1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 45px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-img-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto;
}

.hero-cake-emoji {
    font-size: 14rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.hero-float-item {
    position: absolute;
    font-size: 3rem;
    animation: floatAround 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.float-1 { top: 5%; left: 8%; animation-delay: 0s; }
.float-2 { top: 8%; right: 3%; animation-delay: 1.5s; }
.float-3 { bottom: 12%; left: -2%; animation-delay: 3s; }
.float-4 { bottom: 8%; right: 8%; animation-delay: 4.5s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, -20px) rotate(-3deg); }
    75% { transform: translate(-10px, -5px) rotate(3deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
    z-index: 3;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,30,140,0.1);
    transition: var(--transition);
}

.hero-scroll a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(3px);
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ------- STORY SECTION ------- */
.stories-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.stories-wrapper {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.story-item:hover {
    transform: translateY(-3px);
}

.story-avatar {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-full);
    padding: 3px;
    background: var(--gradient-primary);
    margin-bottom: 6px;
    transition: var(--transition);
}

.story-item:hover .story-avatar {
    box-shadow: 0 0 0 3px var(--primary-glow), var(--shadow-primary);
}

.story-avatar img,
.story-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    object-fit: cover;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.story-name {
    font-size: 0.72rem;
    color: var(--gray-700);
    font-weight: 500;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ------- SECTIONS ------- */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 20px;
    background: rgba(233,30,140,0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(233,30,140,0.12);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge i {
    font-size: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-action {
    text-align: center;
    margin-top: 45px;
}

/* ------- PRODUCT CARDS ------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233,30,140,0.12);
}

.product-image {
    position: relative;
    height: 250px;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-img-placeholder span {
    font-size: 5rem;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-placeholder span {
    transform: scale(1.1) rotate(-3deg);
}

.product-badge {
    position: absolute;
    top: 14px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.product-badge.sale {
    left: 14px;
    background: rgba(255,107,107,0.9);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.product-badge.featured {
    right: 14px;
    background: rgba(240,165,0,0.9);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    gap: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.btn-quick-view, .btn-add-cart {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-quick-view {
    background: rgba(255,255,255,0.95);
    color: var(--gray-800);
    backdrop-filter: blur(10px);
    border: none;
}

.btn-quick-view:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.product-info {
    padding: 20px 22px 24px;
}

.product-category {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-name {
    font-size: 1.05rem;
    margin: 8px 0;
    font-weight: 500;
    line-height: 1.4;
}

.product-name a {
    color: var(--secondary);
    transition: var(--transition-fast);
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-old {
    color: var(--gray-600);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-new {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-weight {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--gray-700);
    background: var(--gray-300);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Product Quick Actions (Vertical) */
.product-actions {
    position: absolute;
    top: 14px;
    right: -45px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    right: 14px;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

/* Product Card v2 */
.product-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233,30,140,0.12);
}

.product-card-v2 .product-image {
    height: 220px;
}

.product-card-v2 .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-v2:hover .product-image img {
    transform: scale(1.08);
}

.product-card-v2 .product-info {
    padding: 18px 20px 22px;
}

.product-card-v2 .product-name {
    font-size: 1rem;
}

.product-card-v2 .product-price {
    margin-top: 6px;
}

/* Product Vitrin Showcase */
.product-vitrin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-vitrin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-vitrin-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233,30,140,0.1);
}

/* ------- CATEGORIES ------- */
.categories-section {
    background: var(--gray-200);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
    transition: var(--transition-bounce);
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(-5deg);
}

.category-card h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--gray-700);
    margin-bottom: 14px;
    line-height: 1.5;
}

.category-link {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.category-link i {
    transition: var(--transition);
    font-size: 0.75rem;
}

.category-card:hover .category-link i {
    margin-left: 6px;
}

/* ------- WHY US ------- */
.why-us-section {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 45px 28px;
    border-radius: var(--radius-lg);
    background: var(--gray-200);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233,30,140,0.04) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition);
}

.why-card:hover::after {
    background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: rgba(233,30,140,0.08);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-primary-lg);
}

.why-card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ------- TESTIMONIALS ------- */
.testimonials-section {
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233,30,140,0.2), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(233,30,140,0.08);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.25;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233,30,140,0.15);
    background: rgba(255,255,255,0.95);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ------- ABOUT ------- */
.about-section {
    background: var(--gray-200);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-placeholder {
    width: 100%;
    height: 420px;
    background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    opacity: 0.1;
}

.about-img-placeholder span {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
}

.about-exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-primary);
    z-index: 2;
}

.about-image {
    position: relative;
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 0.82rem;
    opacity: 0.9;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-800);
    padding: 10px 14px;
    background: var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-xs);
    transform: translateX(4px);
}

.about-feature i {
    color: var(--success);
    font-size: 1rem;
}

/* ------- CONTACT ------- */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(233,30,140,0.1);
    transform: translateX(4px);
}

.contact-card i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.contact-form-wrapper {
    background: var(--gray-200);
    padding: 38px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ------- FORMS ------- */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--gray-800);
}

.form-group label i {
    margin-right: 5px;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

/* ------- BUTTONS ------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233,30,140,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-500);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(233,30,140,0.04);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.2);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: var(--danger-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.35);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,184,148,0.35);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ------- PAGE HEADER ------- */
.page-header {
    background: var(--gradient-dark);
    padding: 55px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,30,140,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(15,15,35,0.3), transparent);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease both;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.88rem;
    align-items: center;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.breadcrumb a {
    color: var(--primary-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

/* ------- PRODUCTS PAGE ------- */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-widget h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--secondary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-500);
}

.category-filter a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.category-filter a:hover,
.category-filter a.active {
    background: rgba(233,30,140,0.06);
    color: var(--primary);
}

.category-filter .count {
    font-size: 0.78rem;
    background: var(--gray-300);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.whatsapp-widget {
    text-align: center;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-md);
}

.whatsapp-widget i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.whatsapp-widget h4 {
    margin-bottom: 5px;
}

.whatsapp-widget p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.whatsapp-widget .btn-whatsapp {
    background: var(--white);
    color: var(--whatsapp);
}

.products-count {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.category-description {
    padding: 16px 22px;
    background: rgba(233,30,140,0.04);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 35px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-500);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

/* ------- CART ------- */
.shipping-bar {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    margin-bottom: 30px;
    border: 1px solid rgba(243,156,18,0.15);
}

.shipping-bar.free {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: rgba(39,174,96,0.15);
}

.shipping-bar-text i {
    margin-right: 8px;
}

.shipping-bar-progress {
    height: 6px;
    background: var(--gray-500);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.shipping-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding: 15px 22px;
    background: var(--gray-300);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 15px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    align-items: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(233,30,140,0.08);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.cart-item-info h4 a {
    color: var(--secondary);
}

.cart-item-info h4 a:hover {
    color: var(--primary);
}

.cart-item-weight {
    font-size: 0.8rem;
    color: var(--gray-700);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-selector input {
    width: 45px;
    height: 36px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-total {
    font-weight: 700;
    color: var(--primary);
}

.btn-remove {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(231,76,60,0.08);
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-remove:hover {
    background: var(--danger);
    color: var(--white);
    transform: rotate(90deg);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid rgba(0,0,0,0.04);
}

.cart-summary h3 {
    font-size: 1.15rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-500);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
}

.summary-row.total span:last-child {
    color: var(--primary);
}

.summary-divider {
    border-top: 1px solid var(--gray-500);
    margin: 16px 0;
}

.summary-note {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.summary-note i {
    margin-right: 5px;
}

.summary-guarantees {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-500);
}

.guarantee-item {
    font-size: 0.78rem;
    color: var(--gray-700);
    text-align: center;
}

.guarantee-item i {
    display: block;
    font-size: 1.2rem;
    color: var(--success);
    margin-bottom: 4px;
}

/* ------- CHECKOUT ------- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.checkout-step {
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.checkout-step:hover {
    box-shadow: var(--shadow-sm);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: var(--gray-300);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
}

.step-header h3 {
    font-size: 1.1rem;
    color: var(--secondary);
}

.step-content {
    padding: 28px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(233,30,140,0.03);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.payment-option input {
    width: auto;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option-content i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-option-content strong {
    display: block;
}

.payment-option-content span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* Checkout Summary */
.checkout-summary {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid rgba(0,0,0,0.04);
}

.checkout-summary h3 {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-500);
}

.checkout-items {
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-500);
}

.checkout-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.checkout-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-size: 0.9rem;
}

.checkout-item-info span {
    font-size: 0.8rem;
    color: var(--gray-700);
}

.checkout-item-price {
    font-weight: 600;
    color: var(--primary);
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease both;
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 20px;
    display: inline-block;
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes successBounce {
    from { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.success-icon.whatsapp {
    color: var(--whatsapp);
}

.order-success h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.order-success p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* ------- AUTH ------- */
.auth-section {
    background: var(--gray-200);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-wrapper {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.auth-form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    animation: fadeInUp 0.6s ease both;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.auth-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary);
}

.auth-header p {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-top: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.toggle-password:hover {
    color: var(--primary);
}

/* ------- PROFILE ------- */
.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.profile-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    height: fit-content;
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
}

.profile-sidebar:hover .profile-avatar {
    transform: scale(1.05);
}

.profile-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.profile-sidebar p {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.profile-nav {
    text-align: left;
}

.profile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.profile-nav a:hover,
.profile-nav a.active {
    background: rgba(233,30,140,0.06);
    color: var(--primary);
}

.profile-nav a i {
    width: 18px;
    text-align: center;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    animation: fadeInUp 0.5s ease both;
}

.profile-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-500);
    font-size: 1.15rem;
    color: var(--secondary);
}

.profile-card h3 i {
    margin-right: 8px;
    color: var(--primary);
}

/* ------- ORDERS ------- */
.order-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(233,30,140,0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-500);
}

.order-no {
    font-weight: 700;
    font-size: 0.95rem;
}

.order-no i {
    color: var(--primary);
    margin-right: 8px;
}

.order-date {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-left: 15px;
}

.order-status {
    display: flex;
    gap: 8px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-500);
}

.order-address {
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-total strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-warning { background: #fff3cd; color: #856404; }
.badge-info { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }
.badge-success { background: #d4edda; color: #155724; }
.badge-danger { background: #f8d7da; color: #721c24; }
.badge-light { background: #f8f9fa; color: #818182; }

/* ------- EMPTY STATE ------- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray-700);
    margin-bottom: 25px;
}

/* ------- FOOTER ------- */
.footer {
    background: var(--dark);
    color: var(--gray-600);
    position: relative;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--dark);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    font-size: 1.8rem;
    animation: none;
}

.footer-logo .logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-list i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ------- WHATSAPP FLOAT ------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition-bounce);
    animation: waFloat 3s ease-in-out infinite;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--gray-800);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ------- BACK TO TOP ------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(233,30,140,0.5);
}

/* ------- PRODUCT DETAIL ------- */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image-section {
    position: sticky;
    top: 100px;
}

.product-detail-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-warm);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-detail-main-image:hover {
    box-shadow: var(--shadow-lg);
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.5s ease;
}

.product-detail-main-image:hover img {
    transform: scale(1.03);
}

.product-detail-img-placeholder span {
    font-size: 10rem;
}

.product-detail-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-detail-name {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--secondary);
    margin: 12px 0 22px;
    line-height: 1.2;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.price-discount {
    background: var(--danger);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-500);
    border-bottom: 1px solid var(--gray-500);
    margin-bottom: 28px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary);
}

.product-detail-desc {
    margin-bottom: 30px;
}

.product-detail-desc h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-detail-desc p {
    color: var(--gray-700);
    line-height: 1.8;
}

.product-detail-cart {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 22px;
}

.product-out-of-stock {
    padding: 16px 24px;
    background: rgba(231,76,60,0.08);
    border-radius: var(--radius-md);
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(231,76,60,0.15);
}

.product-whatsapp-order {
    margin-bottom: 25px;
}

.product-detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-500);
}

.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    padding: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.detail-feature:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}

.detail-feature i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.detail-feature strong {
    display: block;
    margin-bottom: 2px;
}

.detail-feature span {
    color: var(--gray-700);
}

/* ------- PRODUCT RATING ------- */
.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star-rating i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.star-rating .filled {
    color: var(--accent);
}

.star-rating .empty {
    color: var(--gray-500);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-left: 5px;
}

/* ------- COOKIE BAR ------- */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,35,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-bar span {
    font-size: 0.85rem;
}

.cookie-bar a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ------- TOAST CONTAINER ------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: all;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--success);
    max-width: 380px;
}

.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }

.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }
.toast.warning i { color: var(--warning); }
.toast.info i { color: var(--info); }

.toast-close {
    background: none;
    border: none;
    color: var(--gray-600);
    margin-left: auto;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--gray-800);
    transform: rotate(90deg);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(60px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(60px) scale(0.95); }
}

/* ------- LIGHTBOX ------- */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: fadeInUp 0.3s ease;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ------- CART NOTIFICATION ------- */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: var(--z-toast);
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 350px;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ------- SLIDER ------- */
.slider-section {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 5;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--primary);
    width: 28px;
}

/* ------- SCROLL REVEAL ANIMATIONS ------- */
.product-card,
.product-card-v2,
.category-card,
.why-card,
.about-section .about-feature,
.contact-card,
.stat-card,
.testimonial-card,
.why-us-section .why-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.product-card.animate-in,
.product-card-v2.animate-in,
.category-card.animate-in,
.why-card.animate-in,
.about-section .about-feature.animate-in,
.contact-card.animate-in,
.stat-card.animate-in,
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for grids */
.products-grid .product-card:nth-child(1),
.products-grid .product-card-v2:nth-child(1) { transition-delay: 0s; }
.products-grid .product-card:nth-child(2),
.products-grid .product-card-v2:nth-child(2) { transition-delay: 0.08s; }
.products-grid .product-card:nth-child(3),
.products-grid .product-card-v2:nth-child(3) { transition-delay: 0.16s; }
.products-grid .product-card:nth-child(4),
.products-grid .product-card-v2:nth-child(4) { transition-delay: 0.24s; }
.products-grid .product-card:nth-child(5),
.products-grid .product-card-v2:nth-child(5) { transition-delay: 0.32s; }
.products-grid .product-card:nth-child(6),
.products-grid .product-card-v2:nth-child(6) { transition-delay: 0.4s; }
.products-grid .product-card:nth-child(7),
.products-grid .product-card-v2:nth-child(7) { transition-delay: 0.48s; }
.products-grid .product-card:nth-child(8),
.products-grid .product-card-v2:nth-child(8) { transition-delay: 0.56s; }

.categories-grid .category-card:nth-child(1) { transition-delay: 0s; }
.categories-grid .category-card:nth-child(2) { transition-delay: 0.06s; }
.categories-grid .category-card:nth-child(3) { transition-delay: 0.12s; }
.categories-grid .category-card:nth-child(4) { transition-delay: 0.18s; }
.categories-grid .category-card:nth-child(5) { transition-delay: 0.24s; }
.categories-grid .category-card:nth-child(6) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* ------- SKELETON LOADING ------- */
.skeleton {
    background: linear-gradient(90deg, var(--gray-300) 25%, var(--gray-400) 50%, var(--gray-300) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ------- PAGE TRANSITION ------- */
.page-transition {
    animation: fadeInUp 0.5s ease;
}

/* ------- RESPONSIVE - MOBILE FIRST ------- */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-desc { margin: 0 auto 35px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-img-wrapper { width: 300px; height: 300px; }
    .hero-cake-emoji { font-size: 10rem; }
    .hero-title { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .profile-layout { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-image-section { position: relative; top: auto; }
    .profile-sidebar { position: relative; top: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero::after { height: 80px; }
    .hero-img-wrapper { width: 240px; height: 240px; }
    .hero-cake-emoji { font-size: 8rem; }
    .hero-float-item { font-size: 2rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 1.6rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }

    /* Mobile Navigation - Slide-in Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 70px 25px 25px;
        gap: 4px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .mobile-close {
        display: flex;
    }

    .nav-links > li > a {
        width: 100%;
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-links > li > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        background: var(--gray-300);
        border-radius: var(--radius-sm);
        display: none;
        margin-top: 4px;
        backdrop-filter: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Search Mobile */
    .search-box.active input { width: 180px; }
    .search-results { width: 280px; }

    /* Cart Mobile */
    .cart-table-header { display: none; }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cart-item-product {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Product Detail Mobile */
    .product-detail-main-image { height: 350px; }
    .product-detail-name { font-size: 1.8rem; }
    .product-detail-features { grid-template-columns: 1fr; }
    .product-thumbnails {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    .product-thumb { flex-shrink: 0; width: 70px; height: 70px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Product actions always visible on mobile */
    .product-actions {
        opacity: 1 !important;
        visibility: visible !important;
        right: 8px !important;
    }
    .action-btn { width: 36px; height: 36px; font-size: 0.85rem; }

    /* Lightbox Mobile */
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: -50px; }

    /* Cookie bar mobile */
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Cart summary sticky off */
    .cart-summary,
    .checkout-summary {
        position: relative;
        top: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.9rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { width: 100%; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stat-number { font-size: 1.4rem; }
    .stat::after { display: none; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-card { padding: 20px 14px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .product-detail-main-image { height: 280px; }
    .product-detail-name { font-size: 1.5rem; }
    .page-header { padding: 35px 0; }
    .page-header-content h1 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 1.5rem; bottom: 20px; left: 20px; }
    .slider-arrow { display: none; }
    .product-card-v2 .product-image { height: 220px; }
    .auth-form-container { padding: 28px 20px; }
    .profile-card { padding: 20px; }
    .order-card { padding: 18px; }

    /* Toast mobile */
    .toast-container {
        left: 16px;
        right: 16px;
        top: 16px;
    }
    .toast {
        max-width: 100%;
    }

    /* Back to top mobile */
    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   ENHANCED PINK THEME - v3.0 ADDITIONS
   Auth Pages, Enhanced Cart, Checkout, Profile,
   Buttons, Forms, Toasts, Mobile, Components
   ============================================ */

/* ------- GLASS-MORPHISM ENHANCEMENT ------- */
.glass-card {
    background: var(--gradient-glass-pink);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(233,30,140,0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255,255,255,0.5) inset;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(233,30,140,0.25);
    box-shadow: var(--shadow-md), 0 0 30px rgba(233,30,140,0.08);
}

.glass-card-strong {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1.5px solid rgba(233,30,140,0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.6) inset;
}

.navbar-glass {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(233,30,140,0.08);
}

/* ------- AUTH PAGES - SPLIT SCREEN ------- */
.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.auth-visual {
    background: var(--gradient-primary-vibrant);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.auth-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: authVisualPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes authVisualPulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-visual-emoji {
    font-size: 6rem;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.auth-visual h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-visual p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto;
}

.auth-visual-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.auth-floating-emoji {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: floatAround 8s ease-in-out infinite;
}

.auth-floating-emoji:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.auth-floating-emoji:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; font-size: 2rem; }
.auth-floating-emoji:nth-child(3) { bottom: 25%; left: 8%; animation-delay: 4s; font-size: 3rem; }
.auth-floating-emoji:nth-child(4) { bottom: 15%; right: 15%; animation-delay: 1s; }
.auth-floating-emoji:nth-child(5) { top: 50%; left: 5%; animation-delay: 3s; font-size: 1.8rem; }
.auth-floating-emoji:nth-child(6) { top: 40%; right: 5%; animation-delay: 5s; font-size: 2.2rem; }

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--gray-200);
    position: relative;
}

.auth-form-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink-pattern);
    pointer-events: none;
}

.auth-form-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(233,30,140,0.1);
    animation: fadeInUp 0.6s ease both;
    position: relative;
}

.auth-form-card .auth-header {
    margin-bottom: 35px;
}

.auth-form-card .auth-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.auth-input-group {
    position: relative;
    margin-bottom: 22px;
}

.auth-input-group input {
    width: 100%;
    padding: 16px 18px 8px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
    outline: none;
    color: var(--gray-800);
}

.auth-input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.auth-input-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--gray-600);
    pointer-events: none;
    transition: var(--transition-fast);
    background: transparent;
}

.auth-input-group input:focus + label,
.auth-input-group input:not(:placeholder-shown) + label {
    top: 8px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.auth-input-group .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.auth-input-group input:focus ~ .input-icon {
    color: var(--primary);
}

.auth-social-login {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.auth-social-btn:hover {
    border-color: var(--primary);
    background: rgba(233,30,140,0.04);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.auth-social-btn i {
    font-size: 1.1rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-500);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.password-strength-segment {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--gray-500);
    transition: var(--transition-fast);
}

.password-strength.weak .password-strength-segment:nth-child(1) { background: var(--danger); }
.password-strength.medium .password-strength-segment:nth-child(1),
.password-strength.medium .password-strength-segment:nth-child(2) { background: var(--warning); }
.password-strength.strong .password-strength-segment:nth-child(1),
.password-strength.strong .password-strength-segment:nth-child(2),
.password-strength.strong .password-strength-segment:nth-child(3) { background: var(--success); }
.password-strength.very-strong .password-strength-segment { background: var(--success); }

.password-strength-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.password-strength.weak .password-strength-text { color: var(--danger); }
.password-strength.medium .password-strength-text { color: var(--warning-dark); }
.password-strength.strong .password-strength-text,
.password-strength.very-strong .password-strength-text { color: var(--success); }

/* Auth Page Responsive */
@media (max-width: 768px) {
    .auth-page {
        grid-template-columns: 1fr;
    }
    .auth-visual {
        display: none;
    }
    .auth-form-side {
        padding: 24px;
    }
    .auth-form-card {
        padding: 30px 24px;
    }
}

/* ------- CART PAGE ENHANCED ------- */
.cart-page {
    padding: 40px 0;
}

.cart-item-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cart-item-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.cart-item-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(233,30,140,0.1);
}

.cart-item-card:hover::before {
    opacity: 1;
}

.cart-item-card.removing {
    animation: cartItemRemove 0.4s ease forwards;
}

@keyframes cartItemRemove {
    0% { opacity: 1; transform: translateX(0); max-height: 200px; }
    50% { opacity: 0.5; transform: translateX(40px); }
    100% { opacity: 0; transform: translateX(80px); max-height: 0; padding: 0; margin: 0; overflow: hidden; }
}

.cart-item-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.cart-item-card:hover .cart-item-img-wrap {
    border-color: rgba(233,30,140,0.2);
}

.cart-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.cart-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.cart-coupon-card {
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(233,30,140,0.1);
}

.cart-coupon-card h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.cart-coupon-card h4 i {
    color: var(--primary);
    margin-right: 6px;
}

.cart-coupon-input {
    display: flex;
    gap: 8px;
}

.cart-coupon-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.cart-coupon-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Free Shipping Progress Bar */
.free-shipping-bar {
    padding: 16px 20px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid rgba(233,30,140,0.08);
}

.free-shipping-bar .progress-text {
    font-size: 0.88rem;
    color: var(--gray-800);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.free-shipping-bar .progress-text i {
    color: var(--primary);
}

.free-shipping-bar .progress-track {
    height: 8px;
    background: rgba(233,30,140,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.free-shipping-bar .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.free-shipping-bar .progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
    border-radius: 0 4px 4px 0;
}

.free-shipping-bar.achieved {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-color: rgba(0,184,148,0.15);
}

.free-shipping-bar.achieved .progress-fill {
    background: var(--gradient-success);
}

/* ------- CHECKOUT ENHANCED ------- */
.checkout-page {
    padding: 40px 0;
}

.checkout-step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}

.checkout-step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(233,30,140,0.08);
}

.checkout-step-number {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.checkout-step-card .step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 25px;
    background: var(--gray-300);
}

.checkout-step-card .step-header h3 {
    font-size: 1.1rem;
    color: var(--secondary);
}

.checkout-step-card .step-content {
    padding: 25px;
}

/* Address Selection Cards */
.address-card {
    padding: 18px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.address-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.address-card.selected,
.address-card.active {
    border-color: var(--primary);
    background: rgba(233,30,140,0.03);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.address-card.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Payment Method Cards */
.payment-method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method-card:hover {
    border-color: var(--primary-light);
}

.payment-method-card.selected {
    border-color: var(--primary);
    background: rgba(233,30,140,0.03);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.payment-method-card .radio-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-600);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.payment-method-card.selected .radio-indicator {
    border-color: var(--primary);
}

.payment-method-card.selected .radio-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
}

.payment-method-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Gift Package Toggle */
.gift-package-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(233,30,140,0.1);
    margin-top: 16px;
}

.gift-package-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
}

.gift-package-toggle label i {
    color: var(--primary);
}

/* Pink Toggle Switch */
.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-500);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.order-summary-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.order-summary-sidebar h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-summary-sidebar h3 i {
    color: var(--primary);
}

/* ------- PROFILE/DASHBOARD ENHANCED ------- */
.profile-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
}

.profile-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.profile-sidebar-header {
    background: var(--gradient-primary);
    padding: 35px 25px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.profile-sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.profile-sidebar-header .profile-avatar {
    width: 85px;
    height: 85px;
    border: 3px solid rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.profile-sidebar-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.profile-sidebar-header p {
    opacity: 0.85;
    font-size: 0.85rem;
}

.profile-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-500);
}

.profile-quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
    cursor: pointer;
}

.profile-quick-action:hover {
    background: rgba(233,30,140,0.06);
    color: var(--primary);
}

.profile-quick-action i {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.profile-quick-action:hover i {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.08);
}

/* Profile Stats */
.profile-stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.profile-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.profile-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233,30,140,0.1);
}

.profile-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    display: block;
}

.profile-stat-label {
    font-size: 0.82rem;
    color: var(--gray-700);
    margin-top: 4px;
}

/* Profile Tab Navigation */
.profile-tab-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    background: transparent;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.profile-tab-btn:hover {
    color: var(--primary);
    background: rgba(233,30,140,0.04);
}

.profile-tab-btn.active {
    color: var(--primary);
    background: rgba(233,30,140,0.06);
    border-color: var(--primary);
}

.profile-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Loyalty Card */
.loyalty-card {
    background: var(--gradient-primary-vibrant);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary-lg);
}

.loyalty-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.loyalty-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.loyalty-card-points {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 4px;
}

.loyalty-card-label {
    font-size: 0.88rem;
    opacity: 0.85;
}

/* Order Timeline */
.order-timeline {
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-500);
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item.completed .timeline-dot {
    background: var(--success);
    box-shadow: 0 0 0 2px var(--success);
}

.timeline-item.pending .timeline-dot {
    background: var(--gray-500);
    box-shadow: 0 0 0 2px var(--gray-500);
}

.timeline-content {
    font-size: 0.9rem;
}

.timeline-content strong {
    display: block;
    margin-bottom: 2px;
}

.timeline-content span {
    font-size: 0.82rem;
    color: var(--gray-700);
}

/* Activity Feed */
.activity-feed-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-500);
}

.activity-feed-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.activity-icon.order {
    background: rgba(233,30,140,0.1);
    color: var(--primary);
}

.activity-icon.review {
    background: rgba(240,165,0,0.1);
    color: var(--accent);
}

.activity-icon.coupon {
    background: rgba(0,184,148,0.1);
    color: var(--success);
}

.activity-text {
    flex: 1;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.activity-text strong {
    color: var(--gray-800);
}

.activity-time {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 2px;
}

/* ------- PAGE HEADER PINK ------- */
.page-header-pink {
    background: var(--gradient-primary-vibrant);
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header-pink::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-pink::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
    z-index: 1;
}

.page-header-pink .breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.page-header-pink .breadcrumb a:hover {
    color: var(--white);
}

.page-header-pink .breadcrumb .separator {
    color: rgba(255,255,255,0.4);
    margin: 0 4px;
}

/* Animated Breadcrumb */
.breadcrumb-animated {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.88rem;
}

.breadcrumb-animated a {
    color: var(--primary-light);
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
}

.breadcrumb-animated a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.breadcrumb-animated .sep {
    color: var(--primary-300);
    margin: 0 2px;
    animation: breadcrumbSep 1.5s ease-in-out infinite;
}

.breadcrumb-animated .sep:nth-child(2) { animation-delay: 0.2s; }
.breadcrumb-animated .sep:nth-child(4) { animation-delay: 0.4s; }

@keyframes breadcrumbSep {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ------- ENHANCED BUTTONS ------- */
.btn-pink {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(233,30,140,0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-pink:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(233,30,140,0.45);
}

.btn-pink:active {
    transform: translateY(0) scale(0.98);
}

.btn-pink-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-pink-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-pink-outline:hover {
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.btn-pink-outline:hover::before {
    left: 0;
}

.btn-pink-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid transparent;
}

.btn-pink-ghost:hover {
    background: rgba(233,30,140,0.06);
    transform: translateY(-1px);
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(233,30,140,0.4);
    border-radius: var(--radius-full);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    filter: blur(10px);
}

.btn-glow:hover::after {
    width: 120%;
    height: 120%;
}

/* ------- ENHANCED FORM ELEMENTS ------- */
.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-floating input,
.form-floating textarea,
.form-floating select {
    width: 100%;
    padding: 20px 18px 8px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    outline: none;
    color: var(--gray-800);
}

.form-floating label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--gray-600);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
}

/* Pink Toggle Switch (in forms) */
.form-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-toggle .toggle-track {
    width: 48px;
    height: 26px;
    border-radius: 26px;
    background: var(--gray-500);
    position: relative;
    transition: var(--transition);
}

.form-toggle .toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.form-toggle input:checked ~ .toggle-track {
    background: var(--gradient-primary);
}

.form-toggle input:checked ~ .toggle-track .toggle-thumb {
    left: 25px;
}

/* Enhanced Select */
.form-select-pink {
    position: relative;
}

.form-select-pink select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    outline: none;
    appearance: none;
    transition: var(--transition);
    cursor: pointer;
}

.form-select-pink select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-select-pink::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.75rem;
    pointer-events: none;
}

/* Date/Time Input */
.form-datetime input[type="date"],
.form-datetime input[type="time"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.form-datetime input[type="date"]:focus,
.form-datetime input[type="time"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-datetime .calendar-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

/* ------- TOAST/SNACKBAR ENHANCEMENT ------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 420px;
    pointer-events: auto;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.toast.toast-exit {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.toast-success {
    background: rgba(255,255,255,0.95);
    border-left: 4px solid var(--success);
    color: #155724;
}

.toast-error {
    background: rgba(255,255,255,0.95);
    border-left: 4px solid var(--danger);
    color: #721c24;
}

.toast-warning {
    background: rgba(255,255,255,0.95);
    border-left: 4px solid var(--warning);
    color: #856404;
}

.toast-pink {
    background: rgba(253,242,248,0.95);
    border-left: 4px solid var(--primary);
    border: 1px solid rgba(233,30,140,0.15);
    color: var(--primary-800);
}

.toast-glass {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--gray-800);
}

.toast .toast-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    margin-left: auto;
    transition: var(--transition-fast);
}

.toast .toast-close:hover {
    opacity: 1;
}

.toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 0 var(--radius-md);
    animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ------- MOBILE IMPROVEMENTS ------- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(233,30,140,0.1);
    padding: 8px 0;
    z-index: var(--z-navbar);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.mobile-bottom-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.mobile-bottom-bar-item i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.mobile-bottom-bar-item.active,
.mobile-bottom-bar-item:hover {
    color: var(--primary);
}

.mobile-bottom-bar-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-bar-item .bar-badge {
    position: absolute;
    top: 0;
    right: 4px;
    min-width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Touch Targets */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .action-btn {
        width: 44px;
        height: 44px;
    }
    
    .nav-links > li > a {
        padding: 12px 18px;
    }
    
    .mobile-bottom-bar {
        display: block;
    }
    
    .profile-dashboard {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar-card {
        position: relative;
        top: 0;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: relative;
        top: 0;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: relative;
        top: 0;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-image-section {
        position: relative;
        top: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        margin: 0 auto 35px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-img-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .hero-cake-emoji {
        font-size: 9rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ------- MISSING COMPONENT STYLES ------- */

/* Pink Badge */
.badge-pink {
    background: rgba(233,30,140,0.1);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Pink Text Highlight */
.pink-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Product Badges Positioning */
.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.badge-new {
    background: rgba(233,30,140,0.9);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.badge-discount {
    background: rgba(255,107,107,0.9);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-featured {
    background: rgba(240,165,0,0.9);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-best {
    background: rgba(0,184,148,0.9);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-yeni {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-400) 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Cart Button Bar */
.product-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: var(--z-sticky);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    border-top: 1px solid rgba(233,30,140,0.08);
    transform: translateY(100%);
    transition: var(--transition);
}

.product-cart-bar.visible {
    transform: translateY(0);
}

.product-cart-bar .bar-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-cart-bar .bar-old-price {
    font-size: 0.88rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.product-cart-bar .btn {
    flex: 1;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
}

.product-rating i {
    color: var(--accent);
    font-size: 0.78rem;
}

.rating-avg {
    font-weight: 700;
    color: var(--secondary);
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.78rem;
}

.rating-text {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.78rem;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.meta-tag:hover {
    background: rgba(233,30,140,0.08);
    color: var(--primary);
}

.meta-tag i {
    font-size: 0.7rem;
    color: var(--primary);
}

/* Vitrin Filter Tabs */
.vitrin-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.vft-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.vft-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.vft-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

/* Popular Categories Scroll */
.popular-cats-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.popular-cats-scroll::-webkit-scrollbar {
    display: none;
}

.popular-cat-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gray-500);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
}

.popular-cat-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.popular-cat-pill.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.popular-cat-pill span {
    font-size: 1.2rem;
}

/* Empty State Enhanced */
.empty-state-enhanced {
    text-align: center;
    padding: 80px 20px;
    background: var(--gradient-warm);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(233,30,140,0.15);
}

.empty-state-enhanced .empty-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.empty-state-enhanced h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.empty-state-enhanced p {
    color: var(--gray-700);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(233,30,140,0.1);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
    box-shadow: var(--shadow-primary);
}

/* Special Offers Section */
.special-offers-section {
    padding: 60px 0;
    background: var(--gradient-primary-soft);
    position: relative;
}

.special-offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233,30,140,0.3), transparent);
}

/* Countdown Timer */
.sob2-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    min-width: 72px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(233,30,140,0.1);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.72rem;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* How It Works Steps */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.hiw-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.hiw-step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-primary);
    font-family: var(--font-heading);
}

.hiw-step h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.hiw-step p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 20px;
}

.trust-badge-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.trust-badge-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.trust-badge-item small {
    font-size: 0.78rem;
    color: var(--gray-700);
}

/* WhatsApp Float (already exists, enhanced) */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition-bounce);
    animation: waFloat 3s ease-in-out infinite;
}

/* Back to Top (already exists, enhanced) */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 24px;
    z-index: var(--z-toast);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
    border-top: 2px solid rgba(233,30,140,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: cookieSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-bar p {
    font-size: 0.88rem;
    color: var(--gray-700);
    flex: 1;
}

.cookie-bar p a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-bar .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(233,30,140,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: cartNotifIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 380px;
}

.cart-notification.exit {
    animation: cartNotifOut 0.3s ease forwards;
}

@keyframes cartNotifIn {
    from { transform: translateX(120%) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes cartNotifOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

.cart-notification .notif-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(233,30,140,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cart-notification .notif-text {
    flex: 1;
}

.cart-notification .notif-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
}

.cart-notification .notif-text span {
    font-size: 0.82rem;
    color: var(--gray-700);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl);
    animation: lightboxZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Compare Bar */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px;
    z-index: var(--z-sticky);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    border-top: 2px solid rgba(233,30,140,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: var(--transition);
}

.compare-bar.visible {
    transform: translateY(0);
}

.compare-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.compare-modal.active {
    opacity: 1;
    visibility: visible;
}

.compare-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 90vw;
    max-height: 85vh;
    overflow: auto;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.4s ease;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 800px;
    width: 90vw;
    max-height: 85vh;
    overflow: auto;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: inline-flex;
    }
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.af-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(233,30,140,0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(233,30,140,0.15);
}

.af-chip button {
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.af-chip button:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

/* Products Sidebar */
.products-sidebar {
    position: relative;
}

@media (max-width: 768px) {
    .products-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: var(--white);
        z-index: var(--z-modal);
        padding: 24px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .products-sidebar.open {
        transform: translateX(0);
    }
}

/* Price Filter Form */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-filter-form .price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-filter-form .price-inputs input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.price-filter-form .price-inputs input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.price-filter-form .price-inputs span {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Pagination Enhanced */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 35px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-500);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.load-more-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

/* Order Progress Bar */
.order-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.order-progress-bar::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-500);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.progress-step-dot {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    background: var(--gray-500);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.progress-step.completed .progress-step-dot {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.progress-step.current .progress-step-dot {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
    animation: pulseCount 2s infinite;
}

.progress-step-label {
    font-size: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
    text-align: center;
    max-width: 80px;
}

.progress-step.completed .progress-step-label {
    color: var(--primary);
}

/* Order Card Enhanced */
.order-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(233,30,140,0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--gray-300);
    border-bottom: 1px solid var(--gray-500);
}

.order-items {
    padding: 18px 22px;
}

/* Payment Option Enhanced */
.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(233,30,140,0.03);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Order Success Enhanced */
.order-success {
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.order-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.whatsapp-success {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.whatsapp-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ------- SOFT PINK BACKGROUND PATTERNS ------- */
.bg-pink-pattern {
    background-image: var(--gradient-pink-pattern);
}

.bg-pink-soft {
    background: var(--gradient-warm);
}

.bg-pink-gradient {
    background: var(--gradient-primary-soft);
}

/* ------- UTILITIES ------- */
.text-pink { color: var(--primary) !important; }
.text-pink-dark { color: var(--primary-700) !important; }
.text-pink-light { color: var(--primary-300) !important; }
.bg-pink-50 { background-color: var(--primary-50) !important; }
.bg-pink-100 { background-color: var(--primary-100) !important; }
.bg-pink-200 { background-color: var(--primary-200) !important; }
.border-pink { border-color: var(--primary) !important; }
.border-pink-light { border-color: rgba(233,30,140,0.15) !important; }
.shadow-pink { box-shadow: var(--shadow-primary) !important; }
.shadow-pink-lg { box-shadow: var(--shadow-primary-lg) !important; }
