:root {
    --primary-rose: #E8B4C8;
    --primary-mauve: #D4A5C8;
    --secondary-lavender: #C8A5D4;
    --accent-gold: #D4AF87;
    --accent-peach: #F5CBA7;
    --soft-cream: #FAF6F3;
    --warm-white: #FFFBF7;
    --deep-plum: #8B6B7D;
    --soft-gray: #E8E3DF;
    --text-dark: #4A3A42;
    --text-muted: #8B7E83;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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 shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.navbar {
    background: linear-gradient(135deg, var(--warm-white) 0%, rgba(232, 180, 200, 0.1) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 165, 200, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(212, 165, 200, 0.2);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve), var(--secondary-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-rose), var(--secondary-lavender));
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    font-weight: 600;
    color: var(--deep-plum) !important;
}

.btn-elegant {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 180, 200, 0.3);
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 180, 200, 0.4);
    color: white;
}

.btn-outline-elegant {
    background: transparent;
    color: var(--primary-mauve);
    border: 2px solid var(--primary-mauve);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-elegant:hover {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-elegant.active {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    color: white;
    border-color: transparent;
}

.hero-carrusel {
    position: relative;
    margin-top: 76px;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 251, 247, 0.85) 0%, 
        rgba(232, 180, 200, 0.4) 50%,
        rgba(212, 165, 200, 0.4) 100%);
    z-index: 1;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 30px;
    bottom: 80px;
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
    box-shadow: 0 10px 40px rgba(212, 165, 200, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.carousel-caption h5 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-plum), var(--primary-mauve));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: 'Cormorant Garamond', serif;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    opacity: 0.5;
    margin: 0 6px;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    border-radius: 50%;
    padding: 25px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-plum), var(--primary-mauve), var(--secondary-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title.text-start {
    text-align: left;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.section-subtitle.text-start {
    text-align: left;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-rose), var(--secondary-lavender));
    margin: 2rem auto;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(212, 165, 200, 0.15);
    border: 1px solid rgba(232, 180, 200, 0.2);
    height: 100%;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.3s; }
.product-card:nth-child(3) { animation-delay: 0.5s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 200, 0.25);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, var(--soft-cream), rgba(232, 180, 200, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.product-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-mauve);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 165, 200, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 200, 0.4);
}

.btn-add-cart:hover::before {
    left: 100%;
}

.btn-add-cart i {
    margin-right: 8px;
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.badge-stock {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-stock.available {
    background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
    color: #2E7D32;
}

.badge-stock.low {
    background: linear-gradient(135deg, #FFE0B2, #FFCC80);
    color: #E65100;
}

.badge-stock.out {
    background: linear-gradient(135deg, #FFCDD2, #EF9A9A);
    color: #C62828;
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(212, 165, 200, 0.12);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-rose), var(--secondary-lavender));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-rose);
    box-shadow: 0 20px 60px rgba(212, 165, 200, 0.25);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 180, 200, 0.2), rgba(212, 165, 200, 0.2));
    border-radius: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-rose), var(--secondary-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cart-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-mauve));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(232, 180, 200, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-floating:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(232, 180, 200, 0.5);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #E53935, #EF5350);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: 3px solid var(--warm-white);
}

footer {
    background: linear-gradient(135deg, var(--deep-plum), var(--primary-mauve));
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

footer h4, footer h5 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .hero-carrusel {
        margin-top: 66px;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 20px;
        bottom: 40px;
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cart-floating {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .btn-add-cart {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-name {
        font-size: 1.4rem;
    }
}