/* =============================================
   DESIGN SYSTEM — Dra. Delia Vivas
   Colors: #42394d (purple), #ad3d5e (wine), 
           #fdf4f3 (soft pink), #ffffff (white)
   Fonts: Questrial, Montserrat, Raleway
   ============================================= */

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

:root {
    --purple: #42394d;
    --wine: #ad3d5e;
    --wine-light: #c75a7a;
    --wine-dark: #8a2e4a;
    --pink: #fdf4f3;
    --pink-hover: #fbe8e6;
    --white: #ffffff;
    --gray-light: #f8f0ef;
    --gray: #9a8f9e;
    --shadow-sm: 0 2px 8px rgba(66, 57, 77, 0.06);
    --shadow-md: 0 8px 32px rgba(66, 57, 77, 0.1);
    --shadow-lg: 0 16px 48px rgba(66, 57, 77, 0.14);
    --shadow-wine: 0 8px 24px rgba(173, 61, 94, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--purple);
    background: var(--pink);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Questrial', sans-serif;
    line-height: 1.2;
    font-weight: 400;
}

em {
    font-style: normal;
    color: var(--wine);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--wine);
    color: var(--pink);
    box-shadow: var(--shadow-wine);
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(173, 61, 94, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--pink);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--wine);
    box-shadow: var(--shadow-md);
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 16px;
}

.section-tag-alt {
    display: inline-block;
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--purple);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 244, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Questrial', sans-serif;
    font-size: 1.2rem;
    color: var(--purple);
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--wine);
}

.logo-text {
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--purple);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wine);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--wine);
    color: var(--pink) !important;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-wine);
}

.nav-cta:hover {
    background: var(--wine-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--purple);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--wine);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--wine);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--wine-light);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(173, 61, 94, 0.08);
    border-radius: var(--radius-full);
}

.hero-title {
    font-family: 'Questrial', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--purple);
    line-height: 1.08;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--wine);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--purple);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    width: 420px;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 1.5s;
}

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

.float-icon {
    font-size: 1.4rem;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--wine);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(66, 57, 77, 0.1);
    border-bottom: 1px solid rgba(66, 57, 77, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wine);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 120px 0;
    background: var(--pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(66, 57, 77, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine), var(--wine-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--wine);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--wine);
    color: var(--pink);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173, 61, 94, 0.08);
    border-radius: var(--radius-md);
    color: var(--wine);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--purple);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--wine);
    font-weight: 700;
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wine);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* =============================================
   PACKAGES
   ============================================= */
.packages {
    padding: 120px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    background: var(--pink);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(173, 61, 94, 0.15);
}

.package-card.featured {
    background: var(--purple);
    color: var(--pink);
    border-color: var(--purple);
}

.package-card.featured .package-name,
.package-card.featured .package-type,
.package-card.featured .package-ideal {
    color: var(--pink);
}

.package-card.featured .package-features li {
    color: rgba(253, 244, 243, 0.85);
}

.package-card.featured .package-features li::before {
    color: var(--wine-light);
}

.package-card.featured .package-number {
    color: rgba(253, 244, 243, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine);
    color: var(--pink);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.package-number {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(66, 57, 77, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.package-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 4px;
}

.package-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wine);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 16px;
    flex: 1;
}

.package-features li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--purple);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.package-features li::before {
    content: '•';
    color: var(--wine);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.package-ideal {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid rgba(66, 57, 77, 0.08);
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
    padding: 120px 0;
    background: var(--pink);
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.products-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: sticky;
    top: 120px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    border: 1px solid rgba(66, 57, 77, 0.04);
}

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

.product-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 4px;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.product-price {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wine);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--wine);
    color: var(--pink);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.product-btn:hover {
    background: var(--wine-dark);
    transform: translateY(-1px);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 57, 77, 0.88), rgba(173, 61, 94, 0.75));
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--pink);
    margin-bottom: 20px;
}

.cta-content em {
    color: var(--wine-light);
}

.cta-content p {
    color: rgba(253, 244, 243, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-desc {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173, 61, 94, 0.08);
    border-radius: var(--radius-sm);
    color: var(--wine);
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--wine);
}

.contact-form-wrapper {
    background: var(--pink);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form h3 {
    font-family: 'Questrial', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(66, 57, 77, 0.12);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--purple);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wine);
    box-shadow: 0 0 0 3px rgba(173, 61, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--purple);
    color: rgba(253, 244, 243, 0.7);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(253, 244, 243, 0.1);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 4px;
    filter: brightness(1.2);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-text {
    color: var(--pink);
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.8rem;
    margin-top: 2px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(253, 244, 243, 0.6);
}

.footer-links a:hover {
    color: var(--pink);
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 244, 243, 0.08);
    border-radius: 50%;
    color: rgba(253, 244, 243, 0.6);
}

.social-link:hover {
    background: var(--wine);
    color: var(--pink);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--purple);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-frame {
        width: 320px;
        height: 380px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .products-image img {
        position: static;
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand p {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-slow);
        gap: 16px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        width: 260px;
        height: 320px;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* =============================================
   SHOP PAGE STYLES
   ============================================= */

.shop-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--pink), var(--pink-hover));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.shop-hero-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shop-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shop Filters */
.shop-header {
    margin-bottom: 48px;
    text-align: center;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(66, 57, 77, 0.1);
    background: var(--white);
    color: var(--purple);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--wine);
    color: var(--pink);
    border-color: var(--wine);
    box-shadow: var(--shadow-wine);
}

/* Shop Grid */
.shop-products {
    padding: 100px 0;
    background: var(--white);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--pink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(173, 61, 94, 0.1);
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.product-placeholder svg {
    width: 60px;
    height: 60px;
}

.product-badge, .product-brand {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--wine);
    color: var(--pink);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.product-brand {
    right: auto;
    left: 16px;
    background: var(--purple);
}

.product-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--purple);
}

.product-details p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(66, 57, 77, 0.06);
}

.price {
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--wine);
}

/* Wellness Banner */
.wellness-banner {
    padding: 100px 0;
    background: var(--purple);
    color: var(--pink);
    text-align: center;
}

.wellness-content {
    max-width: 800px;
    margin: 0 auto;
}

.wellness-content h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--white);
}

.wellness-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Mobile Adjustments for Shop */
@media (max-width: 968px) {
    .shop-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .shop-hero {
        padding: 120px 0 60px;
    }
    
    .shop-hero-content {
        order: 1;
    }
    
    .shop-hero-image {
        order: 2;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   SHOPPING CART
   ============================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(66, 57, 77, 0.4);
    backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 3001;
    box-shadow: var(--shadow-lg);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--purple);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--purple);
    font-size: 1.5rem;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--wine);
    transform: rotate(90deg);
}

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

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

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

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--purple);
}

.cart-item-info .price {
    font-weight: 700;
    color: var(--wine);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--pink);
    border-color: var(--wine);
    color: var(--wine);
}

.cart-footer {
    padding: 24px;
    background: var(--pink);
    border-top: 1px solid var(--gray-light);
}

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

.cart-total span:first-child {
    font-weight: 500;
    color: var(--gray);
}

.cart-total .total-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wine);
}

/* Floating Cart Button */
.cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--wine);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2500;
    box-shadow: var(--shadow-wine);
    transition: var(--transition);
}

.cart-float:hover {
    transform: scale(1.1);
    background: var(--wine-dark);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--purple);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* WhatsApp Tooltip (updated for cart) */
.whatsapp-float {
    bottom: 110px; /* Move up to make space for cart */
}

@media (max-width: 480px) {
    .cart-sidebar {
        max-width: 100%;
    }
}

