@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

@font-face {
    font-family: 'Sink';
    src: url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.eot');
    src: url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.eot?#iefix') format('embedded-opentype'), url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.woff') format('woff'), url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.ttf') format('truetype'), url('https://cdn.jsdelivr.net/gh/pacificosas/magnolia@main/fonts/SinkRegular.svg#SinkRegular') format('svg');
    font-weight: lighter;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-pink: #F5A3B8;
    /* Light pink background */
    --accent-red: #E91E63;
    /* CTA Button */
    --text-dark: #333333;
    --white: #FFFFFF;
    --quote-bg: #FFFFFF;
    --marquee-bg: #E91E63;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --font-main: 'Sink', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-pink);
    /* Make background a subtle gradient if needed, keeping it flat for now based on mockup */
    background: linear-gradient(135deg, #f8bbcd 0%, #f48fb1 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-bottom: 60px;
    /* Space for marquee */
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle fill */
    border-radius: 40px;
    overflow: hidden;
    /* Clips the marquee and content */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    /* Slight lift */
}

/* Gradient Border Effect */
.hero-frame::before {
    content: "";
    /* Empty pseudo-element */
    position: absolute;
    inset: 0;
    /* Cover the whole frame */
    border-radius: 40px;
    /* Match frame radius */
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(to top, var(--frame-border-color, rgba(255, 255, 255, 0.7)) 0%, rgba(255, 255, 255, 0) 60%);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    /* Click through */
    z-index: 0;
    /* On top */
    transition: background 0.3s ease;
    /* Smooth transition */
}

.frame-dark-mode {
    --frame-border-color: rgba(50, 0, 50, 0.8);
    /* Dark purple/black for Slide 3 */
}

/* Slide 3: Purple Gradient */
.slide-purple {
    background: linear-gradient(180deg, #F48FB1 0%, #880E4F 100%);
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Contact Box for Slide 3 */
.contact-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    color: #C2185B;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    /* Center text inside box */
}

.contact-quote-icon {
    position: absolute;
    top: -40px;
    left: 20px;
    font-size: 10rem;
    color: #C2185B;
    line-height: 1;
    font-family: serif;
    font-weight: bold;
}

.contact-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #C2185B;
    margin: 0;
    transition: color 0.3s ease;
    margin-top: 1rem;
    /* Space for quote icon */
}

.slide-purple .contact-box {
    margin-bottom: 2rem;
}

.hero-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-image-container {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Hero Animation - AOS style */
.hero-animate-img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.swiper-slide-active .hero-animate-img {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.hero-text-container {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Right align elements */
    text-align: right;
    margin-top:-80px;
}

.quote-box {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 20px 0 20px 20px;
    /* Rounded corners except top-right maybe? or all rounded */
    border-radius: 25px;
    position: relative;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
    max-width: 400px;
    text-align: center;
    width: 100%;
}

.quote-icon {
    font-size: 10rem;
    color: #D81B60;
    /* Darker pink for quotes */
    position: absolute;
    top: -45px;
    left: 20px;
    line-height: 1;
    font-family: serif;
    font-weight: bold;
    /* Classic quote look */
}

.quote-text {
    font-size: 2rem;
    font-weight: 300;
    color: #EFA6B7;
    /* Light text color for "LOS RECOMIENDAS..." */
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-main);
}

/* --- Hero Slide Variants --- */
.slide-magenta {
    background: linear-gradient(135deg, #D81B60 0%, #AD1457 100%);
    color: white;
    height: 100%;
    /* Ensure it fills the slide height if needed */
    display: flex;
    /* Keep flex layout if wrapper doesn't handle it */
    align-items: center;
    /* Center vertically */
}

/* Typography for Slide 2 */
.promo-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.discount-text {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    color: #F8BBD0;
    /* Lighter pink/white for contrast */
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.discount-sub {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    color: #F8BBD0;
}

/* Star Decorations */
.star-decoration {
    position: absolute;
    color: #FFE082;
    /* Gold/Yellow */
    font-size: 2rem;
    animation: twinkle 2s infinite ease-in-out;
}

.slide-magenta .hero-text-container {
    text-align: center;
}

.star-1 {
    top: -60px;
    right: 0;
    font-size: 3rem;
}

.star-2 {
    bottom: 20px;
    left: -30px;
    font-size: 2.5rem;
    animation-delay: 1s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Adjust Quote Text for default slides */
.quote-highlight {
    font-size: 2rem;
    font-weight: 300;
    color: #D81B60;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: var(--font-main);
}

.cta-button {
    background-color: #E63568;
    /* Specific pink from button */
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    /* Slightly rounded */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 53, 104, 0.4);
    transition: transform 0.2s;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* --- Marquee Strip --- */
.marquee-container {
    position: absolute;
    bottom: 40px;
    /* Adjust overlap */
    left: 0;
    width: 100%;
    background: #E63568;
    color: white;
    padding: 8px 0;
    transform: rotate(-2deg) scale(1.05);
    /* Skewed look */
    z-index: 10;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.marquee-container.footer-marquee {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    padding: 0 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* --- Section Heading Below Hero --- */
.section-intro {
    text-align: center;
    padding: 4rem 1rem 2rem;
    color: #333;
}

.intro-light {
    font-weight: 300;
    font-size: 2rem;
    color: #1d1d1d;
    margin-bottom: 0.5rem;
}

.intro-bold {
<<<<<<< HEAD
    
=======
    font-weight: 600;
>>>>>>> f81fb3492aaca2d7e80f817e2a596ede6ee328fb
    font-size: 2.5rem;
    color: #000;
    font-family: var(--font-main);
    letter-spacing: 2px;
}

/* --- Swiper / Cards --- */
.swiper-section {
    padding: 2rem 0 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    padding: 20px;
    /* Space for shadows */
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    /* Content padding handled inside */
    width: 300px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    overflow: visible;
    /* For badges */
    text-align: center;
    display: flex;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Ensure image zoom stays within radius */

    transform: translateY(-5px);
    /* Lift card slightly */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: #CBD5E0;
    /* Grayish background for top half */
    background: linear-gradient(to bottom, #dcdcdc 0%, #eee 100%);
    border-radius: 20px 20px 0 0;
    padding: 2rem 1rem 0;
    position: relative;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
    /* Allow image to overlap body */
    z-index: 10;
}

/* Hover Effects on Elements */
.product-card:hover .card-image {
    transform: scale(1.08) rotate(-3deg);
}

.product-card:hover .card-quote {
    transform: translateY(-5px) scale(1.1);
    color: #AD1457;
    /* Darker pink on hover */
}

.product-card:hover .product-title {
    color: #D81B60;
}

.card-quote {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: #C2185B;
    font-family: serif;
    line-height: 1;
    opacity: 0.8;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1;
}

.iconic-badge {
    position: absolute;
    top: 60px;
    /* Below quote */
    left: 20px;
    background: #FF80AB;
    color: white;
    font-size: 0.7rem;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 5;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.card-image {
    width: auto;
    height: auto;
    margin-bottom: -40px;
    z-index: 20;
    /* Higher than body */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    max-height: 200px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
    position: relative;
}

.card-body {
    padding: 3rem 1.5rem 2rem;
    background: white;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
    /* Lower than image */
}


.swiper-pagination-bullet-active {
    background: #ffffffbd;
}

.mySwiper .swiper-horizontal>.swiper-pagination-bullets,
.mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.mySwiper .swiper-pagination-custom,
.mySwiper .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px);
}



.category-pill {
    padding: 4px 12px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-title {
    font-weight: 300;
    font-size: 1.8rem;
    color: #D81B60;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.product-subtitle {
    font-weight: 300;
    font-size: 1.6rem;
    color: #D81B60;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.card-btn {
    background: #F06292;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: auto;
    font-family: 'Montserrat';
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
    color: #C2185B !important;
    font-weight: bold;
}

/* Hero Swiper Specific Nav */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    --swiper-navigation-size: 1.2rem;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 900;
}

/* Mobile */
@media (max-width: 920px) {
   
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

	.hero-text-container {
		align-items: center;
		text-align: center;
		margin-top: 0;
	}

    .quote-box {
        margin-bottom: 1rem;
    }

    .marquee-container {
        transform: rotate(-2deg) scale(1);
    }

    /* Hero Cards Adjustments */
    .contact-box,
    .quote-box {
        padding: 1rem;
    }

    .contact-text {
        font-size: 2rem;
    }

    .hero-image-container {
        flex: 1 1 287px;
    }

    .hero-content-wrapper {
        gap: 0rem;
    }

    .hero-image-container img {
        max-width: 400px;
        width: 100%;
    }
}

/* --- Product Detail Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(135deg, #F8BBD0 0%, #FCE4EC 100%);
    width: 90%;
    max-width: 900px;
    border-radius: 30px;
    padding: 3rem 2rem;
    /* Increased padding */
    max-height: 90vh;
    /* Prevent overflow on small screens */
    overflow-y: auto;
    /* Scroll if content is tall */
    position: relative;
    z-index: 1;
}

.modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--modal-bg-image, none);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 235% bottom;
    z-index: -1;
    opacity: 1;
    border-radius: inherit;
    pointer-events: none;
    bottom: -70px;
    right: 0px;
}

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

.close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    background: white;
    border: none;
    font-size: 2rem;
    color: #D81B60;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    z-index: 10;
}

.close-button:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Orbit Header */
.modal-orbit-container {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-ring {
    position: absolute;
    width: 90%;
    /* Responsive width */
    max-width: 600px;
    height: 140px;
    /* Tall oval */
    border: 2px solid #D81B60;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(50deg);
    /* 3D tilt */
    background: transparent;
    box-shadow: 0 0 20px rgba(216, 27, 96, 0.2);
    /* Sparkles */
    background-image: radial-gradient(circle at 10% 20%, white 2px, transparent 2.5px),
        radial-gradient(circle at 90% 80%, white 2px, transparent 2.5px);
}

.orbit-title {
    position: relative;
    z-index: 2;
    background: transparent;
    /* No background to let ring show through/behind */
    color: #AD1457;
    font-size: 2.8rem;
    font-weight:3900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1;
    max-width: 70%;
    font-family: var(--font-main);
    letter-spacing: 2px;
    /* Keep text inside ring visual area */
}

/* Modal Layout */
.modal-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.modal-info {
    flex: 1 1 300px;
    text-align: left;
    padding-left: 2rem;
    /* Indent slightly */
}

.modal-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align to bottom for pedestal */
    position: relative;
    min-height: 300px;
}

/* Typography */
.modal-product-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.modal-description ul {
    list-style: none;
    padding: 0;
}

.modal-description li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.modal-description li::before {
    content: "•";
    color: #D81B60;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
}

/* Pedestal */
.pedestal-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pedestal-base {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 60px;
    background: linear-gradient(90deg, #F48FB1 0%, #FCE4EC 50%, #F06292 100%);
    border-radius: 50%;
    /* Oval base */
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.4),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pedestal-shine {
    position: absolute;
    bottom: 50px;
    /* Float above base */
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.modal-product-img {
    position: relative;
    z-index: 5;
    max-height: 350px;
    /* Taller image */
    width: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    margin-bottom: 20px;
    /* Sit on pedestal overlap */
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-grid {
        flex-direction: column-reverse;
        /* Image on top */
        gap: 1rem;
    }

    .modal-info {
        text-align: center;
        padding-left: 0;
    }

    .orbit-ring {
        width: 100%;
        transform: translate(-50%, -50%) rotateX(30deg);
    }

    .orbit-title {
        font-size: 1.5rem;
    }

    .modal-product-img {
        width: 100%;
    }

    .modal-content::before {
        display: none;
    }
}