/* ===== CSS Variables - Colores del Logo Margarita ===== */
:root {
    /* Colores principales del logo */
    --primary: #C9A96E;
    /* Dorado del logo */
    --primary-dark: #B8926A;
    /* Dorado oscuro */
    --primary-light: #D4BC8E;
    /* Dorado claro */
    --secondary: #E8B4B8;
    /* Rosa suave del logo */
    --accent: #F5D5D8;
    /* Rosa pálido */
    --gold: #C9A96E;
    /* Dorado principal */
    --rose: #D4A5A5;
    /* Rosa dusty */
    --cream: #FDF8F3;
    /* Crema del fondo */
    --lavender: #C8B8D4;
    /* Lavanda suave */
    --dark: #3D3D3D;
    /* Gris oscuro suave */
    --dark-light: #5A5A5A;
    --gray: #7A7A7A;
    --gray-light: #A0A0A0;
    --light: #FDF8F3;
    /* Crema claro */
    --white: #FFFFFF;
    --success: #25D366;
    --gradient-primary: linear-gradient(135deg, #C9A96E 0%, #B8926A 100%);
    --gradient-gold: linear-gradient(135deg, #C9A96E 0%, #D4BC8E 100%);
    --gradient-rose: linear-gradient(135deg, #E8B4B8 0%, #D4A5A5 100%);
    --shadow-sm: 0 2px 8px rgba(201, 169, 110, 0.15);
    --shadow-md: 0 4px 20px rgba(201, 169, 110, 0.2);
    --shadow-lg: 0 8px 40px rgba(201, 169, 110, 0.25);
    --shadow-xl: 0 20px 60px rgba(201, 169, 110, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Marquee Slogan - Sin fondo, texto elegante ===== */
.marquee-bar {
    background: transparent;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: #C9A96E;
    padding: 0 80px;
    text-shadow: none;
    font-weight: 400;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

/* ===== Logo Image ===== */
.logo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(201, 169, 110, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(201, 169, 110, 0.5));
}

.footer-logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 10px rgba(201, 169, 110, 0.4));
}

/* ===== Hero Logo ===== */
.hero-logo {
    margin-bottom: 40px;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-logo-img {
    height: 320px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 5px 15px rgba(201, 169, 110, 0.5));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.announcement-bar i {
    margin-right: 8px;
}

/* ===== Header ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    position: relative;
    font-size: 1.2rem;
    color: var(--dark);
    padding: 8px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-primary);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-light);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
}

/* ===== Categories ===== */
.categories-section {
    padding: 80px 0;
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--dark);
}

/* ===== Products ===== */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 280px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-image img,
.product-image .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img,
.product-card:hover .product-image .card-img {
    transform: scale(1.08);
}

.product-image span {
    font-size: 5rem;
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

a.product-name,
.product-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

a.product-name:hover {
    color: var(--primary);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .old-price {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== Benefits ===== */
.benefits-section {
    padding: 80px 0;
    background: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===== Occasions ===== */
.occasions-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.occasions-section h2 {
    color: var(--white);
}

.occasions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.occasion-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.occasion-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.occasion-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.occasion-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}

/* ===== About ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat span:last-child {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-visual {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual span {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== Contact ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--light);
    border-radius: var(--radius-lg);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    color: var(--dark);
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--gray-light);
    padding: 5px 0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 25px;
    text-align: center;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.developer-credit {
    font-size: 0.8rem;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.cart-close {
    font-size: 1.5rem;
    color: var(--gray);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cart-item-remove {
    color: var(--gray-light);
    cursor: pointer;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light);
    background: var(--light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-footer .btn {
    width: 100%;
    justify-content: center;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        padding: 80px 30px;
        transition: var(--transition);
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 2001;
    }

    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}