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

:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --pink: #ff69b4;
    --hot-pink: #ff1493;
    --gold: #ffc107;
    --white: #ffffff;
    --gray: #999;
    --light-gray: #1a1a1a;
    --green: #25d366;
    --accent-color: var(--white); /* Default for men - text color */
    --border-color: var(--gold); /* Default for men - border color */
}

/* Theme for Women - Rosa */
body.theme-women {
    --accent-color: var(--pink);
    --border-color: var(--pink);
}

/* Theme for Men - Blanco text, Dorado borders */
body.theme-men {
    --accent-color: var(--white);
    --border-color: var(--gold);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Background Color Themes */
body.bg-white {
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 100%);
    color: #1a1a1a;
}

body.bg-white .hero,
body.bg-white .products-section,
body.bg-white .shipping-section,
body.bg-white .values-section,
body.bg-white footer {
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 100%);
    color: #1a1a1a;
}

body.bg-white .product-card,
body.bg-white .value-card,
body.bg-white .benefit-item {
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

body.bg-white .product-card h3,
body.bg-white .value-card h3,
body.bg-white .benefit-item h3,
body.bg-white h1,
body.bg-white h2,
body.bg-white h3 {
    color: #000 !important;
}

body.bg-white .hero-content-men,
body.bg-white .hero-content-women {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #000 !important;
}

body.bg-white .hero-content-men h1,
body.bg-white .hero-content-men p,
body.bg-white .hero-content-men .hero-tag,
body.bg-white .hero-content-women h1,
body.bg-white .hero-content-women p,
body.bg-white .hero-content-women .hero-tag {
    color: #000 !important;
    text-shadow: none !important;
}

body.bg-white .highlight {
    color: var(--gold) !important;
}

body.bg-white footer,
body.bg-white .footer-col p,
body.bg-white .footer-col a {
    color: #1a1a1a !important;
}

body.bg-light {
    background: linear-gradient(135deg, #525252 0%, #404040 100%);
    color: #000;
}

body.bg-light .hero,
body.bg-light .products-section,
body.bg-light .shipping-section,
body.bg-light .values-section,
body.bg-light footer {
    background: linear-gradient(135deg, #525252 0%, #404040 100%);
    color: #000;
}

body.bg-light .product-card,
body.bg-light .value-card,
body.bg-light .benefit-item {
    background: rgba(255, 255, 255, 0.7);
    color: #000;
}

body.bg-light .product-card h3,
body.bg-light .value-card h3,
body.bg-light .benefit-item h3,
body.bg-light h1,
body.bg-light h2,
body.bg-light h3 {
    color: #000 !important;
}

body.bg-light .hero-content-men,
body.bg-light .hero-content-women {
    background: rgba(255, 255, 255, 0.98) !important;
    color: #000 !important;
}

body.bg-light .hero-content-men h1,
body.bg-light .hero-content-men p,
body.bg-light .hero-content-men .hero-tag,
body.bg-light .hero-content-women h1,
body.bg-light .hero-content-women p,
body.bg-light .hero-content-women .hero-tag {
    color: #000 !important;
    text-shadow: none !important;
}

body.bg-light .highlight {
    color: var(--gold) !important;
}

body.bg-light footer,
body.bg-light .footer-col p,
body.bg-light .footer-col a {
    color: #000 !important;
}

body.bg-light .nav-menu,
body.bg-light .nav-menu a,
body.bg-light p,
body.bg-light span,
body.bg-light li,
body.bg-light .product-card p,
body.bg-light .value-card p,
body.bg-light .benefit-item p,
body.bg-light .shipping-info p,
body.bg-light .footer-col h3 {
    color: #000 !important;
}

body.bg-light .nav-menu {
    background: rgba(200, 200, 200, 0.98) !important;
    backdrop-filter: blur(15px);
}

body.bg-light .nav-menu a:hover {
    color: var(--gold) !important;
}

body.theme-men .footer-col h4,
body.theme-men .footer-col p,
body.theme-men .footer-col a,
body.theme-men .footer-col ul li,
body.theme-men .footer-bottom,
body.theme-men .footer-bottom p,
body.theme-men footer p,
body.theme-men footer h4,
body.theme-men footer a {
    color: var(--gold) !important;
}

body.theme-men.bg-light .footer-col h4,
body.theme-men.bg-light .footer-col p,
body.theme-men.bg-light .footer-col a,
body.theme-men.bg-light .footer-col ul li,
body.theme-men.bg-light .footer-bottom,
body.theme-men.bg-light .footer-bottom p,
body.theme-men.bg-light footer p,
body.theme-men.bg-light footer h4,
body.theme-men.bg-light footer a {
    color: #000 !important;
}

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

/* Header */
header {
    background-color: var(--dark-gray);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.logo-img {
    height: 100px;
    width: auto;
    filter: brightness(1.15) contrast(1.15) saturate(1.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.25) contrast(1.2) saturate(1.15);
}

/* Forzar visualización de emojis de banderas */
.value-icon,
.modal-value-icon,
.lang-btn {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", sans-serif !important;
}

/* Menu Lines - Solo visible en Desktop */
.menu-lines {
    display: none;
}

.decorative-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--black);
}

.nav-menu {
    display: none; /* Hidden by default, shows on click */
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    list-style: none;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--gray);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    min-width: 50px;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.flag-emoji {
    font-size: 2rem;
    display: inline-block;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.share-btn, .pronto-btn, .cart-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.cart-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.pronto-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Banner */
.banner-coming-soon {
    background: linear-gradient(90deg, var(--gold), #ff8c00);
    color: var(--black);
    text-align: center;
    padding: 1rem;
    font-weight: 600;
}

.banner-coming-soon p {
    margin: 0.2rem 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.float-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.float-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.float-btn.women {
    background: var(--pink);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.float-btn.women:hover {
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.float-btn.active {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.8);
}

/* Background Color Selector */
.bg-color-selector {
    display: none; /* Hidden, now in menu */
}

.bg-color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 3px solid transparent;
    padding: 3px;
    background: transparent;
}

.bg-color-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.bg-color-btn.active {
    transform: scale(1.15);
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3), 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Menu Color Selector (Mobile) */
.menu-color-selector {
    display: block; /* Visible in all resolutions */
    padding: 1.5rem 1rem !important;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    margin-top: 1rem;
}

.menu-color-label {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.menu-color-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.menu-bg-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 3px solid transparent;
    padding: 3px;
    background: transparent;
}

.menu-bg-btn:hover {
    transform: scale(1.1);
}

.menu-bg-btn.active {
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

/* Hero Section */
.hero {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%) scale(1.3);
    width: 100%;
    height: calc(100% - 150px);
    object-fit: contain;
    z-index: 0;
    opacity: 0.55;
    display: none;
    filter: brightness(1.4) contrast(1.1);
}

.hero-video-women {
    display: none;
}

.hero-video-men {
    display: none;
}

body.theme-women .hero-video-women {
    display: block;
    transform: translateX(calc(-50% + 5cm)) scale(1.3);
}

body.theme-men .hero-video-men {
    display: block;
}

.hero-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    margin: 4rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
}

.hero-content-women {
    display: none;
    background: rgba(255, 105, 180, 0.15);
    border: 2px solid var(--pink);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 105, 180, 0.3);
}

.hero-content-men {
    display: none;
    background: rgba(0, 0, 0, 0.92);
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-content-men .hero-tag,
.hero-content-men h1,
.hero-content-men p {
    color: var(--gold) !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-content-men h1 {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-content-men h1 span {
    color: var(--gold) !important;
}

.hero-content-men .highlight {
    color: var(--gold) !important;
}

.hero-content-men .hero-tag {
    color: var(--gold) !important;
    font-weight: 800;
    letter-spacing: 4px;
}

body.theme-women .hero-content-women {
    display: block;
}

body.theme-women .hero-content-women .hero-tag,
body.theme-women .hero-content-women h1,
body.theme-women .hero-content-women p {
    color: var(--white) !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

body.theme-women .hero-content-women h1 {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(255, 105, 180, 0.5);
}

body.theme-men .hero-content-men {
    display: block;
}

.hero-tag {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.2;
    color: var(--black);
    font-weight: 700;
}

.hero .highlight {
    color: var(--gold);
    display: block;
}

.hero p {
    color: #333;
    font-size: 1rem;
    margin: 1.5rem 0 2rem 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hide hero image section */
.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3rem;
    margin: 1rem 0;
    color: var(--white);
}

.section-header p {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.product-card {
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
    height: auto;
    min-height: 550px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    display: none;
}

.product-overlay {
    display: none;
}

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

.product-card.pink {
    border: 2px solid var(--border-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

/* Product Info Top - Name and Description */
.product-info-top {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    background: var(--black);
    border-top: 2px solid rgba(212,175,55,0.5);
}

.product-info-top h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--white);
    font-weight: 700;
}

.product-info-top p {
    color: #ccc;
    line-height: 1.3;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Product Info Bottom - Size and Price */
.product-info-bottom {
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    border-top: 1px solid rgba(212,175,55,0.2);
}

.product-size {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: none;
}

.product-price {
    text-align: right;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-shadow: none;
}

/* Remove old product-info styles */
.product-info {
    display: none;
}

.product-footer {
    display: none;
}

.btn-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.values-section > p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-icon.green {
    background: rgba(34, 139, 34, 0.2);
    border: 2px solid #228b22;
}

.value-icon.blue {
    background: rgba(65, 105, 225, 0.2);
    border: 2px solid #4169e1;
}

.value-icon.gold {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid var(--gold);
}

.value-icon.white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--black);
    position: relative;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.98) 100%);
    border-radius: 20px;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
    position: relative;
    overflow: hidden;
}

body.theme-women .benefits-container {
    border: 2px solid var(--pink);
    box-shadow: 0 20px 60px rgba(255,105,180,0.3);
}

.benefits-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('images/1758372322944blob.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: brightness(1.4);
    z-index: 0;
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

body.theme-women .benefits-header h2 {
    color: var(--pink);
    text-shadow: 0 0 20px rgba(255,105,180,0.5);
}

.benefits-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

body.theme-women .benefit-item {
    border: 1px solid rgba(255,105,180,0.3);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

body.theme-women .benefit-item:hover {
    border-color: var(--pink);
    box-shadow: 0 10px 30px rgba(255,105,180,0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-icon-odor .icon-men,
.benefit-icon-sport .icon-men {
    display: none;
}

.benefit-icon-odor .icon-women,
.benefit-icon-sport .icon-women {
    display: inline;
}

body.theme-men .benefit-icon-odor .icon-men,
body.theme-men .benefit-icon-sport .icon-men {
    display: inline;
}

body.theme-men .benefit-icon-odor .icon-women,
body.theme-men .benefit-icon-sport .icon-women {
    display: none;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

body.theme-women .benefit-item h3 {
    color: var(--pink);
}

.benefit-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* International Shipping Section */
.shipping-section {
    padding: 6rem 2rem;
    background: var(--black);
    text-align: center;
}

.shipping-header {
    margin-bottom: 4rem;
}

.shipping-badge {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.shipping-section h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.shipping-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-style: italic;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.shipping-card {
    border: 2px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shipping-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.shipping-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
}

.shipping-contact {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.shipping-days {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin: 0.5rem 0 0;
    position: relative;
    z-index: 2;
}

.shipping-note {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
}

.shipping-note p {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.shipping-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--light-gray);
    border: 2px solid #333;
    border-radius: 15px;
}

.calculator-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.shipping-calculator p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.shipping-calculator a {
    color: var(--accent-color);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.shipping-calculator a:hover {
    color: var(--gold);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-box {
    background: linear-gradient(135deg, var(--light-gray), #1a1a1a);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}

.sparkle {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.coming-soon-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-box p {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.qr-code {
    margin-top: 1rem;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

body.theme-women .qr-code img {
    background: var(--pink);
}

/* Footer product filtering by theme */
.footer-product-men,
.footer-product-women {
    display: list-item;
}

body.theme-men .footer-product-women {
    display: none;
}

body.theme-women .footer-product-men {
    display: none;
}

.qr-code p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: none;
    }
    
    /* Hide desktop color selector in mobile */
    .bg-color-selector {
        display: none;
    }
    
    .navbar {
        padding: 0.8rem 0.8rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        align-items: center;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        grid-template-areas: "hamburger logo buttons cart";
    }
    
    .hamburger {
        grid-area: hamburger;
        display: flex;
    }
    
    .logo {
        grid-area: logo;
        justify-content: flex-start;
        cursor: pointer;
        transition: transform 0.2s;
        margin-left: 0.3rem;
    }
    
    .logo:active {
        transform: scale(0.95);
    }
    
    /* Ocultar líneas decorativas en mobile */
    .menu-lines {
        display: none;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-buttons {
        order: 3;
        gap: 0.3rem;
        flex-shrink: 0;
        position: static;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(20,20,20,0.98) 100%);
        width: 85%;
        max-width: 350px;
        height: 100vh;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: 5px 0 30px rgba(0,0,0,0.5);
        border-right: 2px solid var(--gold);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(212,175,55,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        color: var(--white);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: var(--gold);
        background: rgba(212,175,55,0.1);
        border-left-color: var(--gold);
        padding-left: 1.5rem;
    }
    
    .cart-btn {
        grid-area: cart;
        padding: 0.4rem 0.7rem;
        font-size: 1.1rem;
        border: 1.5px solid var(--gold);
        background: rgba(212, 175, 55, 0.15);
        color: var(--gold);
        min-width: 50px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .cart-badge {
        top: -6px;
        right: -6px;
        width: 19px;
        height: 19px;
        font-size: 0.65rem;
        font-weight: 700;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .nav-buttons {
        grid-area: buttons;
        gap: 0.25rem;
        flex-shrink: 0;
        position: static;
        display: flex;
    }
    
    .lang-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        min-width: 42px;
    }
    
    .share-btn {
        display: none;
    }
    
    .share-btn:hover {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
    }
    
    body.theme-women .share-btn {
        color: rgba(255, 105, 180, 0.5);
    }
    
    body.theme-women .share-btn:hover {
        color: var(--pink);
        background: rgba(255, 105, 180, 0.05);
    }
    
    .pronto-btn {
        display: none;
    }
    
    header {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .hero {
        min-height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        position: relative;
        background: var(--black);
    }
    
    .hero-video {
        position: relative;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: auto;
        min-height: 50vh;
        max-height: 60vh;
        object-fit: cover;
        object-position: center;
        opacity: 0.85;
        display: block;
        margin: 0;
        padding: 0;
        filter: brightness(1.1) contrast(1.05);
        z-index: 1;
        max-width: none;
    }
    
    .hero-video-men {
        display: none;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        transform: translateX(0%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .hero-video-women {
        display: none;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    body.theme-men .hero-video-men {
        display: block;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        transform: translateX(0%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    body.theme-women .hero-video-women {
        display: block;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .hero-content {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero p {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .hero-content {
        display: none;
    }
    
    .hero-content-men,
    .hero-content-women {
        padding: 2rem 1.5rem !important;
        max-width: 100% !important;
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 2;
        background: var(--black) !important;
        text-align: center;
        border: none !important;
        box-shadow: none !important;
        display: none;
        border-radius: 0 !important;
    }
    
    body.theme-women .hero-content-women {
        display: block !important;
        background: var(--black) !important;
        border-top: 3px solid var(--pink) !important;
    }
    
    body.theme-men .hero-content-men {
        display: block !important;
        border-top: 3px solid var(--gold) !important;
    }
    
    .hero-content-men h1,
    .hero-content-women h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-content-men p,
    .hero-content-women p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-tag {
        font-size: 0.75rem !important;
        text-align: center;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        display: none !important;
    }
    
    .benefits-section {
        padding: 2rem 1rem;
    }
    
    .benefits-container {
        padding: 1.2rem;
    }
    
    .benefits-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .benefits-header p {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 0.8rem;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .benefit-item h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .benefit-item p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .benefit-item > div:last-child {
        flex: 1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-info-top h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .product-info-top p {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .product-size,
    .product-price {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .section-header p {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .floating-buttons {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        top: auto;
        right: auto;
        flex-direction: row;
        gap: 0.5rem;
        width: auto;
        background: rgba(0,0,0,0.9);
        padding: 0.5rem;
        border-radius: 50px;
        border: 2px solid var(--gold);
    }
    
    .float-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        border-radius: 25px;
        min-width: auto;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shipping-section h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .shipping-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .shipping-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-col p,
    .footer-col li,
    .footer-col a {
        font-size: 0.85rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-col p,
    .footer-col li {
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }
    
    .banner-coming-soon {
        padding: 0.5rem 0.5rem;
        font-size: 0.6rem;
        text-align: center;
        line-height: 1.4;
        overflow: hidden;
    }
    
    .banner-coming-soon p {
        margin: 0.1rem 0;
        padding: 0 0.3rem;
        word-wrap: break-word;
    }
    
    .banner-coming-soon strong {
        font-size: 0.65rem;
        display: block;
        margin-bottom: 0.2rem;
        word-wrap: break-word;
    }
    
    .coming-soon-section {
        padding: 3rem 1rem;
    }
    
    .coming-soon-box {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-box h2 {
        font-size: 2rem;
    }
    
    .coming-soon-box p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* Menu overlay for mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    display: block;
}

/* Tablet optimization */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-img {
        height: 85px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-video {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.45;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-content-men,
    .hero-content-women {
        padding: 1.2rem 1rem !important;
        max-width: 95% !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-card img {
        height: 350px;
    }
    
    .float-btn span {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-menu {
        width: 90%;
    }
}

/* Instructions Page Styles */
.instructions-page {
    padding: 6rem 2rem 4rem;
    min-height: 80vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.instructions-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/1758372322944blob.jpg');
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: brightness(1.4);
    z-index: 0;
    pointer-events: none;
}

.instructions-page .container {
    position: relative;
    z-index: 1;
}

.instructions-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.instructions-page .subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.qr-center {
    text-align: center;
    margin: 3rem 0;
}

.qr-center img {
    width: 200px;
    height: 200px;
    background: white;
    padding: 15px;
    border-radius: 15px;
}

body.theme-women .qr-center img {
    background: var(--pink);
}

.qr-center p {
    margin-top: 1rem;
    color: var(--gray);
}

.instruction-box {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.instruction-box h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.instruction-box .icon {
    font-size: 2rem;
}

.instruction-box p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.instruction-box.directions {
    border-color: var(--gold);
}

.instruction-box.directions h2 {
    color: var(--accent-color);
}

.instruction-box.caution {
    border-color: var(--gold);
    background: rgba(255, 193, 7, 0.05);
}

.instruction-box.caution h2 {
    color: var(--gold);
}

.instruction-box.ingredients {
    border-color: var(--border-color);
}

.instruction-box.ingredients h2 {
    color: var(--accent-color);
}

.ingredients-list {
    font-size: 0.95rem !important;
    color: #d4af37 !important;
    word-break: break-word;
    text-align: center;
    line-height: 1.8;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.85) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-item span:last-child {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.back-btn-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-back {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* Product cards clickable */
.product-card {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: var(--black);
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 0;
    width: 95%;
    max-width: 900px;
    position: relative;
    animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--white);
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 0;
}

.modal-product-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.modal-product-image:hover {
    transform: scale(1.02);
}

.modal-body h2 {
    color: var(--white);
    font-size: 2rem;
    margin: 2rem 2rem 1rem 2rem;
    font-weight: 600;
}

.modal-description {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 2rem 1.5rem 2rem;
}

.modal-product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #222;
    padding-bottom: 1.5rem;
}

.modal-size-section {
    display: flex;
    flex-direction: column;
}

.modal-size-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.modal-size-value {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-price-section {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.modal-price-label {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.modal-price-sublabel {
    color: var(--gray);
    font-size: 0.85rem;
}

.modal-tabs {
    display: flex;
    gap: 0;
    padding: 0 2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #222;
}

.modal-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--gray);
    padding: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-tab.active {
    color: var(--white);
    border-bottom-color: var(--border-color);
}

.modal-tab:hover {
    color: var(--white);
}

.tab-icon {
    font-size: 1rem;
}

.modal-tab-content {
    display: none;
    padding: 2rem;
}

.modal-tab-content.active {
    display: block;
}

.modal-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-features li {
    color: var(--white);
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #222;
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: var(--dark-gray);
    margin: 0 2rem;
    border-radius: 10px;
}

.modal-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.modal-value-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.modal-value-text {
    color: var(--white);
    font-size: 0.85rem;
}

.btn-whatsapp-modal {
    width: calc(100% - 4rem);
    margin: 2rem;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp-modal:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

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

/* ===== FRESCHE AI CHATBOT ===== */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.chatbot-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(212,175,55), #ff69b4);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff69b4;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid #0a0a0a;
}

.chatbot-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    height: 500px;
    background: #0a0a0a;
    border: 2px solid rgb(212,175,55);
    border-radius: 15px;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.chatbot-header {
    background: linear-gradient(135deg, rgb(212,175,55), #ff69b4);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgb(212,175,55);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chatbot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.chatbot-header h3 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.chatbot-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.75rem;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-close:hover {
    transform: scale(1.2);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bot-message,
.user-message {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    max-width: 85%;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 105, 180, 0.2));
    border: 1px solid rgb(212,175,55);
    align-self: flex-start;
    color: white;
}

.user-message {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(212, 175, 55, 0.3));
    border: 1px solid #ff69b4;
    align-self: flex-end;
    color: white;
}

.bot-message strong,
.user-message strong {
    color: rgb(212,175,55);
    display: block;
    margin-bottom: 0.3rem;
}

.chatbot-input-container {
    display: flex;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid rgb(212,175,55);
    gap: 0.5rem;
}

.chatbot-input-container input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgb(212,175,55);
    border-radius: 8px;
    background: #0a0a0a;
    color: white;
    font-size: 0.9rem;
}

.chatbot-input-container input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.chatbot-input-container button {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgb(212,175,55), #ff69b4);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.chatbot-input-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .chatbot-container {
        bottom: 100px;
        right: 10px;
        z-index: 9999;
    }
    
    .chatbot-window {
        bottom: 70px;
        right: 0;
        left: auto;
        width: 320px;
        max-width: calc(100vw - 20px);
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .modal-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-product-image {
        height: 300px;
    }
}

