:root {
    --primary-color: #f72585; /* Fuchsia */
    --secondary-color: #ff99c8; /* Pink */
    --accent-color: #8f04a0; /* Deep Purple requested by user */
    --bg-color: #ffffff;
    --text-main: #2b2b2b;
    --text-light: #666666;
    --gold-accent: #f4c024; /* Inspired by the reference images */
    --light-pink-bg: #fff0f5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    animation: pageFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes pageFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.center {
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin-bottom: 2rem;
}

.title-underline.center {
    margin: 0 auto 2rem auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-pink-bg);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-socials {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.nav-socials a:hover {
    color: var(--primary-color);
}

.hero-image-only {
    width: 100%;
    overflow: hidden;
}

.hero-text-box {
    max-width: 800px;
    margin: 0 auto; /* Center the box */
    text-align: center; /* Center the text */
    background: rgba(255, 255, 255, 0.15); /* Original glass opacity */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 15px; /* Original border radius */
    border-bottom: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-left: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff; /* Original white color */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Original shadow */
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0; /* Original light color */
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Original shadow */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-primary:hover {
    background-color: var(--text-main);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.5);
}

/* Features Banner */
.features-banner {
    background-color: var(--light-pink-bg);
    padding: 40px 0;
    border-top: 1px solid #ffe4e1;
    border-bottom: 1px solid #ffe4e1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-image-box {
    position: relative;
    padding: 20px;
}

.color-block-pink {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: var(--secondary-color);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translate(20px, 20px);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-box i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.mv-box:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(244, 192, 36, 0.5));
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: white;
    padding: 20px;
    /* Gradient border effect */
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

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

.product-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-id {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    flex-grow: 1;
}

.product-price {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-whatsapp {
    background-color: var(--gold-accent);
    color: white;
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(244, 192, 36, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--text-main);
    box-shadow: 0 6px 20px rgba(244, 192, 36, 0.5);
    transform: translateY(-2px);
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
}

.bg-light-pink {
    background-color: var(--light-pink-bg);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 20px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 150px;
    height: 150px;
    border-color: white;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p, .social-links-footer {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
