/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Moderno */
.header {
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.95) 0%, rgba(160, 80, 109, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(139, 74, 107, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    transform: translateZ(0);
    will-change: transform;
    transition: all 0.3s ease;
    overflow: visible;
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.98) 0%, rgba(160, 80, 109, 0.98) 100%);
    padding: 1.2rem 0;
    box-shadow: 0 8px 40px rgba(139, 74, 107, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2.2rem;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: logo-glow 4s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    0% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section Moderno */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

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

.hero-slide:nth-child(1), 
.hero-slide:nth-child(2), 
.hero-slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.95) 0%, rgba(160, 80, 109, 0.9) 50%, rgba(139, 74, 107, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="purplebg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%238B4A6B"/><stop offset="50%" stop-color="%23A0506D"/><stop offset="100%" stop-color="%23B85A7A"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23purplebg)"/><circle cx="200" cy="150" r="80" fill="%23FFD700" opacity="0.1"/><circle cx="900" cy="400" r="120" fill="%23FFF" opacity="0.05"/><circle cx="600" cy="300" r="100" fill="%23FFD700" opacity="0.05"/></svg>');
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.3)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.4)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,215,0,0.2)"/><circle cx="60" cy="10" r="0.6" fill="rgba(255,255,255,0.3)"/><circle cx="10" cy="70" r="1.2" fill="rgba(255,215,0,0.15)"/></svg>');
    animation: particle-float 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-30px) translateX(-5px); }
    75% { transform: translateY(-10px) translateX(-15px); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: badge-glow 3s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.2s; }
.hero-title-line:nth-child(2) { animation-delay: 0.4s; }

.hero-title-accent {
    color: #FFD700;
    font-size: 2.4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
    animation-delay: 0.6s;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* Botão WhatsApp específico - sobrescreve btn-secondary */
.btn-secondary.hero-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    background: white !important;
    color: #25D366 !important;
    padding: 1rem 2rem;
    border: 2px solid #25D366 !important;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.btn-secondary.hero-whatsapp:hover {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}

.btn-secondary.hero-whatsapp i {
    color: inherit !important;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature-item i {
    color: #FFD700;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-main-image {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: main-float 6s ease-in-out infinite;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.8) 0%, rgba(160, 80, 109, 0.6) 100%);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #FFD700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-main-image:hover .hero-main-overlay {
    opacity: 1;
}

@keyframes main-float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(5deg) scale(1.05); }
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-card i,
.floating-card span {
    display: none;
}

.floating-card-1 {
    top: 20%;
    left: 10%;
    animation: float-1 8s ease-in-out infinite;
    background-image: url('https://res.cloudinary.com/dsypayhq4/image/upload/v1757263071/alta-1112-1_zkkvdl.jpg');
}

.floating-card-2 {
    top: 15%;
    right: 15%;
    animation: float-2 10s ease-in-out infinite;
    background-image: url('https://res.cloudinary.com/dsypayhq4/image/upload/v1755886736/tia-rosa/produtos/tia-rosa/produtos/produto_1755886736644_Crucifixo-Madeira-Tradicional-12cm-Parede-Detalhes.webp');
}

.floating-card-3 {
    bottom: 15%;
    right: 8%;
    animation: float-3 12s ease-in-out infinite;
    background-image: url('https://res.cloudinary.com/dsypayhq4/image/upload/v1755886813/tia-rosa/produtos/tia-rosa/produtos/produto_1755886813475_8663496333_7214396858_b.jpg');
}

.floating-card-4 {
    bottom: 18%;
    left: 5%;
    animation: float-4 9s ease-in-out infinite;
    background-image: url('https://cdn.awsli.com.br/600x450/1981/1981658/produto/209841647637028ec08.jpg');
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(6deg); }
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: pulse 0.6s ease;
}

.btn-secondary {
    background: transparent;
    color: #8B4A6B;
    border: 2px solid #8B4A6B;
}

.btn-secondary:hover {
    background: #8B4A6B;
    color: white;
}

@keyframes pulse {
    0% { transform: translateY(-3px) scale(1.02); }
    50% { transform: translateY(-5px) scale(1.05); }
    100% { transform: translateY(-3px) scale(1.02); }
}

/* Showcase Section */
.showcase-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #8B4A6B;
    margin-bottom: 1rem;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 74, 107, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 74, 107, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.showcase-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.8) 0%, rgba(160, 80, 109, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay i {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-overlay i {
    transform: scale(1);
}

.showcase-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8B4A6B;
    margin-bottom: 0.8rem;
    position: relative;
}

.showcase-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.showcase-hover {
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.showcase-card:hover .showcase-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Seções */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #8B4A6B;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-header {
    margin-bottom: 3rem;
}

/* Seção de produtos */
.products-section {
    padding: 2rem 0 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
}

/* Filtros Modernos */
.modern-filters {
    margin-bottom: 4rem;
}

.search-container {
    margin-bottom: 2.5rem;
}

.search-bar-modern {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B4A6B;
    font-size: 1.1rem;
    z-index: 2;
}

.search-bar-modern input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border: 2px solid rgba(139, 74, 107, 0.1);
    border-radius: 60px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-bar-modern input:focus {
    outline: none;
    border-color: #8B4A6B;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 74, 107, 0.15);
}

.search-bar-modern input::placeholder {
    color: #aaa;
    font-style: italic;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
    margin-top: 0.5rem;
}

.category-filters-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    background: white;
    color: #8B4A6B;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.filter-btn-modern:hover::before,
.filter-btn-modern.active::before {
    left: 0;
}

.filter-btn-modern i,
.filter-btn-modern span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn-modern:hover,
.filter-btn-modern.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 74, 107, 0.25);
}

.filter-btn-modern:hover i,
.filter-btn-modern.active i {
    color: #FFD700;
}

/* Grid de produtos moderno */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(139, 74, 107, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 74, 107, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 74, 107, 0.15);
    border-color: rgba(255, 215, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8B4A6B;
}

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

.product-info {
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.9rem;
    color: #8B4A6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4A6B;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(139, 74, 107, 0.3);
}

.product-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.product-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.product-whatsapp i {
    font-size: 1.1rem;
}

/* Seção Sobre Modernizada */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 74, 107, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4A6B;
    margin-bottom: 1rem;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(139, 74, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(139, 74, 107, 0.15);
}

.feature i {
    font-size: 2rem;
    color: #8B4A6B;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #8B4A6B;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(139, 74, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Seção de contato */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B4A6B 0%, #050505 100%);
    color: white;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #b89ea2;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    color: white;
    opacity: 1;
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 1.8rem;
    }

    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    /* Esconder link Contato no mobile */
    .nav-link-contato {
        display: none;
    }

    /* Controle do nome do usuário em mobile */
    #userName {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(odd) {
    animation: slideInLeft 0.8s ease forwards;
}

.product-card:nth-child(even) {
    animation: slideInRight 0.8s ease forwards;
}

.hero-content {
    animation: fadeInUp 1.2s ease 0.3s forwards;
    opacity: 0;
}

.section-title {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.feature {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.about-image .image-placeholder {
    animation: pulse 3s ease-in-out infinite;
}

/* Estados vazios */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Botão de Acesso Administrativo */
.admin-access-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 74, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0.6;
}

.footer {
    position: relative;
}

.admin-access-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 74, 107, 0.5);
}

/* Modal de Login */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.login-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.login-header {
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.login-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #8B4A6B;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 74, 107, 0.1);
}

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #8B4A6B;
}

.login-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.login-error.show {
    display: block;
    animation: shake 0.5s ease;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B4A6B 0%, #A0506D 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.login-btn:hover {
    background: linear-gradient(135deg, #A0506D 0%, #8B4A6B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 74, 107, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-info {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.login-info i {
    margin-right: 5px;
    color: #8B4A6B;
}

/* Animações do Modal */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Responsividade do Modal */
@media (max-width: 480px) {
    .login-modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .login-header {
        padding: 1rem;
    }
    
    .login-header h3 {
        font-size: 1.1rem;
    }
    
    .login-form {
        padding: 1.5rem;
    }
    
    .admin-access-btn {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ====== ESTADOS DE CARREGAMENTO ====== */

/* Estado de Loading */
.loading-state, .error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    color: var(--text-color);
    grid-column: 1 / -1; /* Ocupa toda a grid */
}

.loading-state h3, .error-state h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.loading-state p, .error-state p {
    margin: 0;
    opacity: 0.7;
    font-size: 1rem;
}

/* Spinner de Loading */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estado de Erro */
.error-state i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.retry-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.retry-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.retry-btn i {
    font-size: 0.9rem;
}

/* Responsividade dos estados */
@media (max-width: 768px) {
    .loading-state, .error-state {
        padding: 3rem 1rem;
        min-height: 250px;
    }
    
    .loading-state h3, .error-state h3 {
        font-size: 1.3rem;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .error-state i {
        font-size: 2.5rem;
    }
}

/* ====== RESPONSIVIDADE MOBILE-FIRST ====== */

/* Mobile Large (414px) */
@media (max-width: 414px) {
    .header {
        padding: 0.7rem 0;
    }

    .header .container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .logo {
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.6rem;
    }

    .nav {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    /* Nome do usuário mais compacto em mobile */
    #userName {
        max-width: 70px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-title-accent {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-cta, .hero-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-image-container {
        width: 280px;
        height: 280px;
    }
    
    .hero-main-image {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }
    
    .floating-card {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
}

/* Mobile Medium (375px) */
@media (max-width: 375px) {
    .header {
        padding: 0.6rem 0;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .nav {
        gap: 0.7rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    /* Nome do usuário ainda mais compacto */
    #userName {
        max-width: 65px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-accent {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .showcase-section {
        padding: 4rem 0;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-image {
        height: 140px;
    }
    
    .showcase-content {
        padding: 1.5rem 1rem;
    }
    
    .showcase-overlay i {
        font-size: 2.5rem;
    }
}

/* Mobile Small (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .header .container {
        padding: 0 8px;
        gap: 0.4rem;
    }

    .logo h1 {
        font-size: 1.15rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .nav {
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    /* Nome do usuário mínimo para telas pequenas */
    #userName {
        max-width: 55px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-title-accent {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-image-container {
        width: 240px;
        height: 240px;
    }
    
    .hero-main-image {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .floating-card {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }
    
    .showcase-title {
        font-size: 1.9rem;
    }
    
    .showcase-image {
        height: 120px;
    }
    
    .showcase-content {
        padding: 1rem;
    }
    
    .showcase-content h3 {
        font-size: 1.2rem;
    }
    
    .showcase-overlay i {
        font-size: 2rem;
    }
    
    .modern-filters {
        margin-bottom: 3rem;
    }
    
    .search-bar-modern input {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 15px;
        font-size: 1rem;
    }
    
    .category-filters-modern {
        gap: 0.5rem;
    }
    
    .filter-btn-modern {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .filter-btn-modern i {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait (768px) */
@media (min-width: 415px) and (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-image-container {
        width: 350px;
        height: 350px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Animações específicas para mobile */
@media (max-width: 414px) {
    .hero-title-line {
        animation-duration: 1s;
    }
    
    .hero-badge {
        animation-duration: 4s;
    }
    
    .floating-card {
        animation-duration: 6s;
    }
    
    .showcase-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Performance otimizada para mobile */
@media (max-width: 414px) {
    .hero-particles {
        display: none; /* Remove partículas em mobile para melhor performance */
    }

    .hero-slide {
        transition: opacity 1.5s ease-in-out;
    }

    .logo i {
        animation: none; /* Remove animação do logo em mobile */
    }
}

/* ========== E-COMMERCE FEATURES ========== */

/* Cart Counter */
.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: pulse 2s infinite;
}

.cart-link, .user-link {
    position: relative;
}

.cart-link:hover .cart-counter {
    animation: none;
    transform: scale(1.1);
}

/* User Menu Dropdown */
.user-menu-container {
    position: relative;
    display: inline-flex;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.user-menu-container:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    background: linear-gradient(135deg, #8B4A6B 0%, #9B5A7B 100%);
    padding: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-dropdown-header i {
    font-size: 2.5rem;
    color: #FFD700;
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.user-dropdown-name {
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-email {
    font-size: 0.85rem;
    opacity: 0.9;
    whitespace: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 0.5rem 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(139, 74, 107, 0.05), rgba(139, 74, 107, 0.1));
    padding-left: 1.5rem;
}

.user-dropdown-item i {
    font-size: 1.1rem;
    color: #8B4A6B;
    width: 20px;
    text-align: center;
}

.user-dropdown-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.user-dropdown-item:last-child {
    color: #dc3545;
    border-top: 1px solid #f0f0f0;
}

.user-dropdown-item:last-child i {
    color: #dc3545;
}

.user-dropdown-item:last-child:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.1));
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.stock-status.in-stock {
    color: #28a745;
}

.stock-status.out-of-stock {
    color: #dc3545;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Empurra os botões para o final do card */
    padding-top: 1rem; /* Mantém espaçamento mínimo */
    flex-wrap: wrap;
}

.btn-add-cart, .btn-buy-now, .btn-whatsapp {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 0.9rem;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before, .btn-buy-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:hover::before, .btn-buy-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart {
    background: linear-gradient(135deg, #8B4A6B 0%, #9B5A7B 100%);
    color: white;
}

.btn-add-cart:hover:not(:disabled) {
    background: linear-gradient(135deg, #7A3A5B 0%, #8A4A6B 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 74, 107, 0.4);
}

.btn-buy-now {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.btn-buy-now:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFC700 0%, #FF9500 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.btn-whatsapp {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem 0.9rem;
    background: #25D366;
    color: white;
}

.btn-whatsapp .whatsapp-text {
    display: inline;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-add-cart:disabled, .btn-buy-now:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-add-cart:disabled:hover, .btn-buy-now:disabled:hover {
    box-shadow: none;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 400px;
}

.notification-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.notification-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.notification button {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    line-height: 1;
}

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

/* Mobile Responsive Adjustments for E-commerce */
@media (max-width: 768px) {
    .product-actions {
        gap: 0.5rem;
    }

    .btn-add-cart, .btn-buy-now, .btn-whatsapp {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: calc(50% - 0.25rem);
        font-size: 0.8rem;
        padding: 0.7rem 0.5rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cart-counter {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .product-actions {
        gap: 0.4rem;
    }

    .btn-add-cart, .btn-buy-now, .btn-whatsapp {
        font-size: 0.75rem;
        padding: 0.65rem 0.4rem;
        gap: 0.3rem;
    }

    .btn-add-cart i, .btn-buy-now i, .btn-whatsapp i {
        font-size: 0.85rem;
    }

    .btn-whatsapp .whatsapp-text {
        display: none;
    }
}