/* =========================================
   GLAMOUR DE MISS - ULTRA PREMIUM STORE
   R$100K Investment Level Design
   Mobile-First Premium E-commerce
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Tenor+Sans&display=swap');

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes badgePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

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

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff5f8;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.cart-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: #e91e63;
    color: #fff;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.mini-cart-empty .material-symbols-outlined {
    font-size: 64px;
    color: #e0e0e0;
}

.mini-cart-empty p {
    margin: 16px 0 0;
    font-size: 0.95rem;
}

.mini-cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mini-cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

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

.mini-cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mini-cart-item-details h4 {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.mini-cart-item-size {
    font-size: 0.75rem;
    color: #888;
    margin: 0 0 8px;
}

.mini-cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e91e63;
    margin-top: auto;
}

.mini-cart-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 4px;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.mini-cart-remove:hover {
    color: #e91e63;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fff5f8;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total span:first-child {
    font-size: 0.95rem;
    color: #666;
}

.cart-total span:last-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
}

.cart-checkout {
    width: 100%;
    padding: 16px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout:hover {
    background: #c2185b;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

:root {
    /* PINK THEME - Premium */
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #ff69b4;
    --accent-hover: #ff1493;
    --accent-light: #ffb6c1;
    --accent-pale: #ffe4e9;
    --accent-soft: #fff0f5;
    --pink: #ff69b4;
    --pink-dark: #ff1493;
    --pink-rose: #db7093;
    --pink-melon: #f7b7c5;
    --white: #ffffff;
    --off-white: #fff8fa;
    --cream: #fff0f3;
    --light-gray: #ffe4e9;
    --gray: #888888;
    --dark-gray: #444444;
    --black: #0a0a0a;
    --success: #27ae60;
    --error: #e74c3c;
    --warning: #f39c12;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff8dc7 100%);
    --gradient-soft: linear-gradient(135deg, #fff0f3 0%, #ffffff 50%, #fff8fa 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,105,180,0.03) 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 25px 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.18);
    --shadow-pink: 0 10px 40px rgba(255, 105, 180, 0.25);
    --shadow-pink-hover: 0 20px 60px rgba(255, 105, 180, 0.35);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Tenor Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-luxury: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* =========================================
   RESET & BASE
   ========================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#cocoCutDLinject {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -1 !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    pointer-events: none;
    z-index: -1;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

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

ul, ol {
    list-style: none;
}

input, select, textarea {
    font-family: var(--font-body);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* =========================================
   SCROLLBAR STYLING
   ========================================= */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink);
}

/* =========================================
   ANNOUNCEMENT BAR - ENHANCED
   ========================================= */

.marquee-bar {
    background-color: #000000;
    padding: 4px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    border-bottom: 1px solid #e91e63;
    width: 100%;
    display: block;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.marquee-content span:nth-child(odd) {
    color: #e91e63;
}

.marquee-content {
    display: flex !important;
    white-space: nowrap;
    animation: marqueeScroll 0.3s linear infinite;
}

.marquee-content span {
    flex-shrink: 0;
    padding: 0 40px;
    font-size: 13px;
}

.marquee-content span {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 30px;
}

.marquee-content span:nth-child(odd) {
    color: #e91e63;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-content {
        animation: marqueeScroll 120s linear infinite;
    }
    
    .marquee-content span {
        font-size: 11px;
        padding: 0 30px;
    }
}

.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-bar {
        background: #000000;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .marquee-content {
        display: flex;
        animation: marqueeScroll 60s linear infinite;
    }
    
    .marquee-content span {
        font-size: 11px;
        padding: 0 25px;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.announcement-track {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 0 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1002;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
    gap: 0;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
}

@media (max-width: 768px) {
    .logo {
        position: static;
        transform: none;
    }
}

/* Menu Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn .material-symbols-outlined {
    font-size: 18px;
}

.menu-btn:hover {
    background: #f5f5f5;
}

.menu-btn .icon {
    font-size: 24px;
    color: var(--black);
}

/* Search */
.search-container {
    position: relative;
    flex: 1;
    max-width: 250px;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #eee;
    border-radius: 25px;
    font-size: 0.85rem;
    background: #f9f9f9;
    transition: 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--pink);
    background: white;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    max-height: 400px;
    overflow-y: auto;
    display: block;
    z-index: 100;
    margin-top: 8px;
    border: 1px solid #f0f0f0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-results.active {
    visibility: visible;
    opacity: 1;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #fdf5f7;
}

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

.search-result-item img {
    width: 50px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.search-result-category {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.search-result-price {
    font-size: 0.85rem;
    color: var(--pink-dark);
    font-weight: 700;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Logo - Centered */
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--pink-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo:hover {
    opacity: 0.7;
}

.logo span {
    color: var(--black);
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: 0.3s;
    position: relative;
    flex-shrink: 0;
}

.icon-btn:hover {
    background: #f5f5f5;
}

.icon-btn .material-symbols-outlined,
.icon-btn .icon {
    font-size: 18px;
    color: var(--black);
}

.icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--pink-dark);
    color: white;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4%;
    max-width: 1600px;
    margin: 0 auto;
    transition: var(--transition-base);
    position: relative;
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-container {
    padding: 10px 4%;
}

/* Menu Button - Animated */
.menu-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: transparent;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: var(--transition-fast);
}

.menu-btn:hover::before {
    opacity: 0;
}

.menu-btn:hover {
    background: #f5f5f5;
}

.menu-btn span,
.menu-btn .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.menu-btn:hover span,
.menu-btn:hover .material-symbols-outlined {
    color: var(--primary);
}

/* Logo */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo:hover .logo-glamour,
.logo:hover .logo-miss {
    color: var(--pink);
}

.logo-glamour {
    color: var(--pink-dark);
}

.logo-de {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--primary);
    position: relative;
    top: 1px;
}

.logo-miss {
    color: var(--pink-dark);
}

/* Search Bar - Mobile Optimized */
.search-container {
    position: relative;
    flex: 0 1 280px;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 18px;
    border: 2px solid var(--cream);
    border-radius: 25px;
    font-size: 0.85rem;
    background: var(--cream);
    transition: var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--pink-dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    border: 1px solid var(--cream);
}

.search-results.active {
    display: block;
    animation: slideDown 0.25s ease;
}

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

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--cream);
}

.search-result-item:hover {
    background: var(--cream);
}

.search-result-item img {
    width: 45px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-info h4 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.search-result-info span {
    font-size: 0.8rem;
    color: var(--pink-dark);
    font-weight: 600;
}

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

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--cream);
    transition: var(--transition-base);
    position: relative;
}

.nav-icon-btn:hover {
    background: var(--accent-pale);
    transform: translateY(-2px);
}

.nav-icon-btn span {
    font-size: 20px;
    color: var(--primary);
}

.icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =========================================
   HERO SECTION - PREMIUM ANIMATIONS
   ========================================= */

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 52px;
    background: var(--cream);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    transition: transform 6s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 60px;
    right: 8%;
    max-width: 400px;
    text-align: right;
    z-index: 10;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-pale);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--pink-dark);
    color: var(--white);
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
    box-shadow: var(--shadow-pink);
}

.hero-cta:hover {
    background: var(--pink);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-pink-hover);
}

.hero-cta span {
    font-size: 18px;
    transition: var(--transition-fast);
}

.hero-cta:hover span {
    transform: translateX(6px);
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
}

.hero-dot:hover {
    border-color: var(--white);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-arrow:hover {
    background: var(--white);
    transform: scale(1.1);
}

.hero-arrow span {
    font-size: 22px;
    color: var(--white);
}

.hero-arrow:hover span {
    color: var(--pink-dark);
}

/* =========================================
   STORIES / CATEGORIES - INSTAGRAM STYLE
   ========================================= */

.stories-section {
    padding: 30px 0 45px;
    background: var(--white);
    position: relative;
}

.stories-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream), transparent);
}

.stories-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.story-item {
    text-align: center;
    cursor: pointer;
}

.story-circle {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    padding: 3px;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--accent-light) 50%, var(--pink-dark) 100%);
    background-size: 200% 200%;
    animation: gradient-rotate 3s ease infinite;
    position: relative;
    transition: var(--transition-base);
    margin-bottom: 8px;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.story-item:hover .story-circle {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.story-circle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: var(--radius-full);
    background: var(--white);
}

.story-circle img {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: var(--radius-full);
    object-fit: cover;
    z-index: 1;
}

.story-name {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--dark-gray);
}

/* =========================================
   SECTION HEADERS
   ========================================= */

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink-dark);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-line {
    width: 50px;
    height: 3px;
    background: var(--gradient-pink);
    margin: 0 auto;
    border-radius: 2px;
}

/* =========================================
   FILTER SECTION
   ========================================= */

.filter-section {
    padding: 16px 4%;
    background: var(--white);
    border-bottom: 1px solid var(--cream);
    position: sticky;
    top: 52px;
    z-index: 99;
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
}

.filter-select {
    padding: 10px 32px 10px 14px;
    border: 1px solid var(--cream);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff69b4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: var(--transition-fast);
}

.filter-select:hover {
    border-color: var(--pink);
}

.filter-select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.filter-count {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

/* =========================================
   PRODUCTS GRID - PREMIUM CARDS
   ========================================= */

.products-section {
    padding: 40px 3% 60px;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card - Modern Premium Design */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.12);
}

.product-image-container {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: linear-gradient(145deg, #fafafa 0%, #f5f5f5 100%);
}

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

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

/* Wishlist Button */
.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: none;
}

.product-wishlist:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.product-wishlist .material-symbols-outlined {
    font-size: 22px;
    color: #333;
    transition: all 0.3s ease;
}

.product-wishlist:hover .material-symbols-outlined {
    color: #e91e63;
}

.product-wishlist.active .material-symbols-outlined {
    color: #e91e63;
    font-variation-settings: 'FILL' 1;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.product-badge {
    padding: 8px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    backdrop-filter: blur(8px);
}

.product-badge.sale {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.product-badge.new {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 32px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.35);
    white-space: nowrap;
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.45);
}

.quick-view-btn:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ad1457 100%);
    transform: translateX(-50%) translateY(-5px);
}

/* Product Info */
.product-info {
    padding: 20px 16px;
    text-align: center;
    background: #fff;
}

.product-category {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #e91e63;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Mobile Product Card - Novo Design Melhorado */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }
    
    .product-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .product-card:hover {
        transform: translateY(-4px);
    }
    
    .product-image-container {
        aspect-ratio: 3/4;
    }
    
    .product-wishlist {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
    
    .product-wishlist .material-symbols-outlined {
        font-size: 18px;
    }
    
    .product-badges {
        top: 10px;
        left: 10px;
    }
    
    .product-badge {
        padding: 5px 10px;
        font-size: 0.6rem;
    }
    
    .quick-view-btn {
        padding: 10px 16px;
        font-size: 0.65rem;
        bottom: 12px;
    }
    
    .product-info {
        padding: 12px 8px;
    }
    
    .product-category {
        font-size: 0.6rem;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }
    
    .product-name {
        font-size: 0.85rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 1;
    }
    
    .product-price {
        gap: 6px;
    }
    
    .product-price .current {
        font-size: 0.9rem;
    }
    
    .product-price .original {
        font-size: 0.7rem;
    }
}

.product-price .current {
    font-size: 1.15rem;
    font-weight: 800;
    color: #e91e63;
    letter-spacing: 0.5px;
}

.product-price .original {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 500;
}
    color: var(--gray);
    text-decoration: line-through;
}

.product-sizes {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.size-tag {
    padding: 3px 6px;
    font-size: 0.6rem;
    color: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 3px;
}

/* =========================================
   FEATURES BANNER
   ========================================= */

.features-section {
    background: linear-gradient(135deg, #fff0f3 0%, #fff8fa 100%);
    padding: 40px 4%;
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    box-shadow: var(--shadow-pink);
}

.feature-icon span {
    font-size: 22px;
    color: var(--white);
}

.feature-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.7rem;
    color: var(--gray);
}

/* =========================================
   CATEGORY BANNERS
   ========================================= */

.category-section {
    padding: 60px 4%;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover img {
    transform: scale(1.12);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    transition: var(--transition-base);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(255,105,180,0.4) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: var(--white);
    z-index: 2;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.category-card:hover .category-content h3 {
    transform: translateX(5px);
}

.category-content p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */

.reviews-section {
    padding: 60px 4%;
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.review-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating span {
    font-size: 14px;
    color: var(--pink-dark);
}

.review-text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* =========================================
   NEWSLETTER - PREMIUM
   ========================================= */

.newsletter-section {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
    padding: 60px 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-container {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.95);
    transition: var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-btn {
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--black);
    transform: translateY(-2px);
}

/* =========================================
   FOOTER - PREMIUM
   ========================================= */

.footer-section {
    background: var(--primary);
    color: var(--white);
    padding: 60px 4% 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
}

.social-link span {
    font-size: 18px;
    color: var(--white);
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-pale);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.payment-methods {
    display: flex;
    gap: 8px;
}

.payment-icon {
    width: 36px;
    height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

/* =========================================
   CART SIDEBAR - PREMIUM
   ========================================= */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 9999;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    background: var(--accent-pale);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.cart-empty span {
    font-size: 50px;
    color: var(--light-gray);
    display: block;
    margin-bottom: 16px;
}

.cart-empty p {
    color: var(--gray);
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream);
    animation: slideIn 0.3s ease;
}

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

.cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-size {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pink-dark);
    margin-top: auto;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--cream);
    background: var(--cream);
}

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

.cart-summary-row.total {
    font-size: 1rem;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
    margin-top: 12px;
}

.cart-summary-row.discount {
    color: var(--success);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: 10px;
}

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

.continue-shopping {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.continue-shopping:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================
   MOBILE MENU - PREMIUM
   ========================================= */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 9998;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
}

.mobile-menu-logo span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--pink-dark);
    display: block;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    border-bottom: 1px solid var(--cream);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--pink-dark);
    padding-left: 8px;
}

.mobile-nav-link.active {
    color: var(--pink-dark);
    font-weight: 600;
}

.mobile-nav-link span {
    font-size: 20px;
    color: var(--pink-dark);
}

.mobile-menu-footer {
    padding: 16px;
    border-top: 1px solid var(--cream);
    background: var(--cream);
    text-align: center;
}

.mobile-menu-footer p {
    font-size: 0.7rem;
    color: var(--gray);
}

/* =========================================
   LOGIN MODAL - PREMIUM
   ========================================= */

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 10001;
    padding: 20px;
}

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

.login-modal {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.login-overlay.active .login-modal {
    transform: scale(1) translateY(0);
}

.login-header {
    padding: 24px 24px 16px;
    text-align: center;
    position: relative;
}

.login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.login-close:hover {
    background: var(--accent-pale);
}

.login-tabs {
    display: flex;
    border-bottom: 1px solid var(--cream);
}

.login-tab {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.login-tab.active {
    color: var(--pink-dark);
    font-weight: 600;
}

.login-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    width: 70%;
    height: 3px;
    background: var(--pink-dark);
    border-radius: 2px;
}

.login-body {
    padding: 24px;
}

.login-form {
    display: none;
}

.login-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-input-group {
    position: relative;
    margin-bottom: 16px;
}

.login-input-group input {
    width: 100%;
    padding: 14px 40px 14px 40px;
    border: 2px solid var(--cream);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.login-input-group input:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.login-input-group .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 18px;
}

.login-toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.login-submit {
    width: 100%;
    padding: 14px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 8px;
}

.login-submit:hover {
    background: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.login-forgot {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray);
}

.login-forgot:hover {
    color: var(--pink-dark);
}

/* Profile Area */
.profile-area {
    text-align: center;
}

.profile-avatar-large {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    cursor: pointer;
    overflow: hidden;
}

.profile-avatar-large span {
    font-size: 36px;
    color: #ccc;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
}

.profile-menu-item:hover {
    background: var(--cream);
}

.profile-menu-item span:first-child {
    font-size: 18px;
    color: var(--gray);
}

.logout-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--cream);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    margin-top: 16px;
    transition: var(--transition-base);
}

.logout-btn:hover {
    background: var(--error);
    border-color: var(--error);
    color: var(--white);
}

/* =========================================
   QUICK VIEW MODAL - PREMIUM
   ========================================= */

.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 10002;
    padding: 16px;
    overflow-y: auto;
}

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

.quick-view-modal {
    background: var(--white);
    width: 100%;
    max-width: 850px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    max-height: 90vh;
    margin: auto;
    position: relative;
    top: 0;
    bottom: 0;
}

.quick-view-overlay.active .quick-view-modal {
    transform: scale(1);
}

.quick-view-image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--cream);
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quick-view-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    z-index: 10;
}

.quick-view-close:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.quick-view-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.quick-view-category {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.quick-view-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.quick-view-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-view-description {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.quick-view-size-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.size-guide-link {
    font-size: 0.75rem;
    color: var(--pink-dark);
    cursor: pointer;
    text-decoration: underline;
}

.quick-view-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.quick-view-size {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.quick-view-size:hover {
    border-color: #e91e63;
    background: #fce4ec;
    transform: scale(1.05);
}

.quick-view-size.selected {
    border-color: #e91e63;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.quick-view-actions {
    margin-top: auto;
}

.quick-view-add {
    width: 100%;
    padding: 16px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: 10px;
}

.quick-view-add:hover {
    background: var(--pink);
    box-shadow: var(--shadow-pink);
}

.quick-view-wishlist {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--pink-dark);
    color: var(--pink-dark);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-view-wishlist:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.quick-view-wishlist.active {
    background: var(--pink-dark);
    color: var(--white);
    border-color: var(--pink-dark);
}

/* =========================================
   CHECKOUT MODAL - PREMIUM
   ========================================= */

.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 10003;
    padding: 16px;
}

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

.checkout-modal {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-height: 92vh;
    overflow-y: auto;
}

.checkout-header {
    padding: 20px;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.checkout-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.checkout-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkout-body {
    padding: 24px;
}

.checkout-section {
    margin-bottom: 24px;
}

.checkout-section h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--pink-dark);
}

.checkout-form-group {
    margin-bottom: 12px;
}

.checkout-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark-gray);
}

.checkout-form-group input,
.checkout-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--cream);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-summary {
    background: var(--cream);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.checkout-summary-item.total {
    font-size: 1rem;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
    margin-top: 12px;
    color: var(--pink-dark);
}

.checkout-submit {
    width: 100%;
    padding: 16px;
    background: var(--pink-dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.checkout-submit:hover {
    background: var(--pink);
    box-shadow: var(--shadow-pink);
}

/* =========================================
   CHECKOUT MULTI-STEP
   ========================================= */

.checkout-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 24px 0;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.c-step {
    font-size: 0.7rem;
    font-weight: 500;
    color: #bbb;
    white-space: nowrap;
    padding: 6px 8px;
    border-radius: 20px;
    transition: 0.3s;
}

.c-step.active {
    color: var(--pink-dark);
    background: rgba(233,30,99,0.08);
    font-weight: 600;
}

.c-step.done {
    color: #4caf50;
}

.c-step-line {
    height: 2px;
    flex: 1;
    max-width: 40px;
    background: #ddd;
    border-radius: 2px;
}

.c-step-line.done {
    background: #4caf50;
}

.checkout-step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.checkout-step-content.active {
    display: block;
}

.checkout-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0 0 16px;
    color: #333;
}

.checkout-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: space-between;
}

.checkout-back-btn,
.checkout-next-btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.checkout-back-btn {
    background: #f5f5f5;
    color: #666;
}

.checkout-back-btn:hover {
    background: #e8e8e8;
}

.checkout-next-btn {
    background: var(--pink-dark);
    color: #fff;
}

.checkout-next-btn:hover {
    background: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.checkout-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.checkout-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.checkout-back-step {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
}

.checkout-back-step:hover {
    color: var(--pink-dark);
}

.checkout-header .checkout-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.checkout-cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.checkout-cart-item img {
    width: 60px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

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

.checkout-cart-item-info strong {
    font-size: 0.85rem;
    color: #333;
    display: block;
}

.checkout-cart-item-info span {
    font-size: 0.75rem;
    color: #999;
}

.checkout-cart-item-price {
    font-weight: 700;
    color: var(--pink-dark);
    font-size: 0.9rem;
    white-space: nowrap;
}

.checkout-payment-select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.checkout-payment-select:focus {
    border-color: var(--pink-dark);
    outline: none;
}

.checkout-review-section {
    margin-bottom: 16px;
}

.checkout-review-section h4 {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.checkout-review-section p {
    font-size: 0.85rem;
    color: #333;
    margin: 2px 0;
}

@media (max-width: 768px) {
    .checkout-steps-indicator {
        flex-wrap: wrap;
        gap: 2px;
        padding: 12px 12px 0;
    }
    .c-step {
        font-size: 0.6rem;
        padding: 4px 6px;
    }
    .c-step-line {
        max-width: 20px;
    }
    .checkout-nav {
        flex-direction: column;
    }
    .checkout-back-btn,
    .checkout-next-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   ORDER CONFIRMATION OVERLAY
   ========================================= */

.confirmation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.confirmation-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-overlay.active .confirmation-modal {
    transform: translateY(0) scale(1);
}

.confirmation-header {
    text-align: center;
    padding: 36px 32px 24px;
    background: linear-gradient(135deg, #f8fffe, #f0faf5);
    border-radius: 20px 20px 0 0;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: confirmPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmation-icon .material-symbols-outlined {
    font-size: 32px;
    color: #fff;
}

@keyframes confirmPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmation-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.confirmation-header p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
}

.confirmation-body {
    padding: 24px 32px;
}

.confirmation-order-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.confirmation-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
}

.confirmation-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.5px;
}

.confirmation-divider {
    height: 1px;
    background: #eee;
    margin: 16px 0;
}

.confirmation-pix-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.confirmation-pix-header .material-symbols-outlined {
    color: #25D366;
    font-size: 22px;
}

.confirmation-pix-info {
    background: #f0faf5;
    border: 1px solid #d4edda;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.confirmation-pix-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.84rem;
    color: #333;
    gap: 8px;
}

.confirmation-pix-key {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #d4edda;
    color: #1a1a2e;
    word-break: break-all;
    flex: 1;
    text-align: center;
}

.confirmation-pix-value {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.confirmation-copy-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d4edda;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    transition: all 0.2s;
    flex-shrink: 0;
}

.confirmation-copy-btn:hover {
    background: #4caf50;
    color: #fff;
    border-color: #4caf50;
}

.confirmation-pix-note {
    font-size: 0.75rem;
    color: #888;
    margin: 12px 0 0;
    text-align: center;
}

.confirmation-items {
    margin-bottom: 12px;
}

.confirmation-items .confirmation-label {
    display: block;
    margin-bottom: 8px;
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.84rem;
}

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

.confirmation-item img {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
}

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

.confirmation-item-name {
    font-weight: 600;
    color: #1a1a2e;
    display: block;
}

.confirmation-item-size {
    font-size: 0.72rem;
    color: #888;
}

.confirmation-item-price {
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}

.confirmation-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    border-top: 2px solid #1a1a2e;
    margin-top: 4px;
}

.confirmation-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    padding: 12px;
    background: #f0faf5;
    border-radius: 10px;
    font-size: 0.78rem;
    color: #1a6d3c;
}

.confirmation-whatsapp .material-symbols-outlined {
    color: #25D366;
    font-size: 18px;
}

.confirmation-footer {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.confirmation-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.confirmation-btn-primary {
    background: #1a1a2e;
    color: #fff;
}

.confirmation-btn-primary:hover {
    background: #2d2d4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.2);
}

.confirmation-btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.confirmation-btn-outline:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

@media (max-width: 480px) {
    .confirmation-header { padding: 28px 20px 20px; }
    .confirmation-body { padding: 20px; }
    .confirmation-footer { padding: 0 20px 24px; }
    .confirmation-pix-key { font-size: 0.7rem; }
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 998;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--pink-dark);
    color: var(--white);
}

/* =========================================
   CART SIDEBAR
   ========================================= */



.cart-checkout-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
    }
    
    .cart-sidebar-header {
        padding: 16px 20px;
    }
    
    .cart-sidebar-header h2 {
        font-size: 1.3rem;
    }
    
    .cart-item {
        padding: 16px 20px;
    }
    
    .cart-footer {
        padding: 20px;
    }
}

/* =========================================
   TOAST NOTIFICATIONS
   ========================================= */

.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10004;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid;
}

.toast.success {
    border-left-color: var(--success);
}

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

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

.toast.success .toast-icon {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(231, 76, 60, 0.1);
    color: var(--error);
}

.toast-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 0.75rem;
    color: var(--gray);
}

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

/* =========================================
   SIZE GUIDE MODAL
   ========================================= */

.size-guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 10005;
    padding: 20px;
}

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

.size-guide-modal {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    padding: 24px;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.size-guide-overlay.active .size-guide-modal {
    transform: scale(1);
}

.size-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.size-guide-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-table th,
.size-guide-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--cream);
}

.size-guide-table th {
    background: var(--cream);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-guide-table td {
    font-size: 0.85rem;
}

/* =========================================
   LOADING & SKELETON
   ========================================= */

.skeleton {
    background: linear-gradient(90deg, var(--cream) 25%, var(--white) 50%, var(--cream) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10006;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--cream);
    border-top-color: var(--pink-dark);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Large Desktop */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding-bottom: 0;
    }
    
    .hero-slider {
        position: relative;
        height: auto;
    }
    
    .hero-image {
        height: auto;
        min-height: 500px;
        width: 100%;
        display: block;
    }
    
    .stories-section {
        position: relative;
        background: var(--white);
        padding: 20px 0;
        margin-top: 800px;
        z-index: 10;
    }
    
    .stories-container,
    .section-header,
    .products-grid,
    .features-section .features-grid,
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .stories-container {
        display: flex;
        justify-content: center;
        gap: 40px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .announcement-item {
        font-size: 0.6rem;
        padding: 0 30px;
    }
    
    .hero-section {
        margin-top: 46px;
    }
    
    .hero-image {
        width: 100%;
        height: 85%;
        object-fit: cover;
        transform: scale(1);
        margin-top: 15%;
    }
    
    .logo span {
        font-size: 0.45rem;
    }
    
.navbar {
        display: flex;
        justify-content: space-between;
        padding: 10px 4%;
    }
    
    .search-container {
        display: none;
    }
    
    .logo {
        position: static;
        transform: none;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .logo span {
        font-size: 0.45rem;
        letter-spacing: 1px;
    }
    
    .menu-btn .icon,
    .icon-btn .icon {
        font-size: 20px;
    }
    
    .icon-badge {
        font-size: 8px;
        min-width: 14px;
        height: 14px;
    }
    
.hero-section {
        height: 55vh;
        min-height: 350px;
margin-top: 50px;
    }
    
    .hero-content {
        left: 4%;
        right: 4%;
        bottom: 40px;
        max-width: none;
    }
    
    .hero-subtitle {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-cta {
        padding: 12px 20px;
        font-size: 0.65rem;
    }
    
    .hero-arrows {
        display: none;
    }
    
    .hero-nav {
        bottom: 16px;
    }
    
    .stories-container {
        gap: 10px;
    }
    
    .story-circle {
        width: 60px;
        height: 60px;
    }
    
    .story-name {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select {
        flex: 1;
    }
    
    .products-section {
        padding: 24px 3% 40px;
    }
    
    .products-grid {
        gap: 12px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 0.8rem;
    }
    
    .product-price .current {
        font-size: 0.9rem;
    }
    
    .product-sizes {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        aspect-ratio: 4/3;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-view-modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
        margin: auto;
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        overflow-y: auto;
    }
    
    .quick-view-overlay.active .quick-view-modal {
        transform: translateY(0);
    }
    
    .quick-view-image {
        height: 220px;
        aspect-ratio: auto;
        border-radius: 24px 24px 0 0;
    }
    
    .quick-view-image img {
        border-radius: 24px 24px 0 0;
    }
    
    .quick-view-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
    
    .quick-view-info {
        padding: 16px 16px 40px;
    }
    
    .quick-view-category {
        font-size: 0.7rem;
    }
    
    .quick-view-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .quick-view-price {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .quick-view-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .quick-view-size-label {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .quick-view-sizes {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .quick-view-size {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
        border-radius: 8px;
    }
    
    .quick-view-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-view-add {
        width: 100%;
        padding: 14px;
        font-size: 0.85rem;
    }
    
    .quick-view-wishlist {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .toast-container {
        left: 16px;
        right: 16px;
    }
    
    .toast {
        min-width: auto;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    
    .scroll-top-btn {
        bottom: 74px;
        right: 16px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .announcement-bar {
        padding: 8px 0;
    }
    
    .announcement-item {
        font-size: 0.55rem;
        gap: 20px;
        padding: 0 20px;
    }
    
    .navbar-container {
        padding: 10px 4%;
    }
    
    .hero-section {
        margin-top: 44px;
    }
    }
    
    .nav-icon-btn {
        width: 36px;
        height: 36px;
    }
    
    .nav-icon-btn span {
        font-size: 18px;
    }
    
    .hero-section {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        padding: 10px 16px;
        font-size: 0.6rem;
    }
    
    .story-circle {
        width: 52px;
        height: 52px;
    }
    
    .story-name {
        font-size: 0.55rem;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .product-badge {
        padding: 4px 8px;
        font-size: 0.5rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
    }
    
    .action-btn span {
        font-size: 16px;
    }
    
    .quick-view-size {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .checkout-modal {
        max-height: 95vh;
    }
    
    .checkout-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Load Animation */
.page-load {
    animation: pageLoad 0.5s ease;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.heart-animate {
    animation: heartBeat 0.6s ease;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */

.hidden { display: none !important; }

.no-scroll {
    overflow: hidden !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print */
@media print {
    .navbar, .cart-sidebar, .mobile-menu, 
    .whatsapp-float, .scroll-top-btn, .announcement-bar {
        display: none !important;
    }
}

/* =========================================
   PROFILE DROPDOWN (Navbar)
   ========================================= */

.profile-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-btn-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    margin-left: 4px;
}

.profile-dropdown-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 8px 0;
    z-index: 1000;
    animation: slideDown 0.2s ease;
}

.profile-dropdown-menu .dropdown-header {
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e91e63;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.profile-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-dropdown-menu .dropdown-item:hover {
    background: #fafafa;
}

.profile-dropdown-menu .dropdown-item .material-symbols-outlined {
    font-size: 20px;
    color: #888;
}

.profile-dropdown-menu .dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.profile-dropdown-menu .dropdown-logout {
    color: #e91e63;
    font-weight: 600;
}

.profile-dropdown-menu .dropdown-logout .material-symbols-outlined {
    color: #e91e63;
}

/* =========================================
   PROFILE SECTIONS (Modal)
   ========================================= */

.profile-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-section-header .back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    color: #e91e63;
}

.profile-section-header .back-btn .material-symbols-outlined {
    font-size: 22px;
}

.profile-section-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.profile-orders-list {
    max-height: 360px;
    overflow-y: auto;
}

.profile-order-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.profile-order-card .order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.profile-order-card .order-items {
    color: #666;
    margin-bottom: 4px;
}

.profile-order-card .order-total {
    color: #e91e63;
    font-weight: 700;
}

.profile-order-card .order-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.order-status.pendente { background: #fff3e0; color: #e65100; }
.order-status.aprovado { background: #e8f5e9; color: #2e7d32; }
.order-status.enviado { background: #e3f2fd; color: #1565c0; }
.order-status.entregue { background: #e8f5e9; color: #2e7d32; }
.order-status.cancelado { background: #fbe9e7; color: #c62828; }

.profile-address-item {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
}

.profile-address-item strong {
    color: #333;
}

.profile-wishlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
}

.profile-wishlist-item {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.profile-wishlist-item:hover {
    transform: translateY(-2px);
}

.profile-wishlist-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.profile-wishlist-item .wishlist-info {
    padding: 8px;
}

.profile-wishlist-item .wishlist-info h5 {
    font-size: 0.75rem;
    margin: 0 0 4px;
    color: #333;
}

.profile-wishlist-item .wishlist-info span {
    font-size: 0.75rem;
    color: #e91e63;
    font-weight: 700;
}

.profile-empty {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}

.profile-empty .material-symbols-outlined {
    font-size: 40px;
    margin-bottom: 10px;
}

.profile-empty p {
    font-size: 0.85rem;
    margin: 0;
}

/* =========================================
   PROFILE EDIT FORM
   ========================================= */

.profile-edit-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.profile-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.profile-avatar-large:hover .profile-photo-overlay {
    opacity: 1;
}

.profile-photo-overlay .material-symbols-outlined {
    font-size: 24px;
    color: #fff;
}

.profile-edit-form {
    text-align: left;
}

.profile-edit-group {
    margin-bottom: 14px;
}

.profile-edit-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-edit-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.profile-edit-input:focus {
    outline: none;
    border-color: #e91e63;
    background: #fff;
}

.profile-save-btn {
    flex: 1;
    padding: 10px 16px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-save-btn:hover {
    background: #d81b60;
}

/* =========================================
   COOKIE CONSENT
   ========================================= */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
    z-index: 99999;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-icon .material-symbols-outlined {
    font-size: 32px;
    color: #e91e63;
}

.cookie-text {
    flex: 1;
    min-width: 240px;
}

.cookie-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #333;
}

.cookie-text p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.cookie-btn-accept {
    background: #e91e63;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #d81b60;
}

.cookie-btn-reject {
    background: #f5f5f5;
    color: #666;
}

.cookie-btn-reject:hover {
    background: #eee;
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
    }
}