/* ====================================
   HIGH PALACE 777 - Custom Styles
   Premium 420 Experience
   ==================================== */

/* === ROOT VARIABLES === */
:root {
    /* Brand Colors */
    --primary-green: #7CFC00;
    --dark-green: #228B22;
    --neon-green: #39FF14;
    --lime-green: #CCFF00;
    --deep-green: #0B4F0B;

    /* Base Colors */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #1a1a1a;
    --bg-card: #151515;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    --gradient-psychedelic: linear-gradient(135deg, #7CFC00 0%, #39FF14 50%, #CCFF00 100%);

    /* Effects */
    --glow-green: 0 0 20px rgba(124, 252, 0, 0.5);
    --glow-green-strong: 0 0 30px rgba(124, 252, 0, 0.8);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-verification-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-verification-modal {
    background: linear-gradient(135deg, #0a0a0a 0%, #0B4F0B 100%);
    border: 3px solid #7CFC00;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(124, 252, 0, 0.5);
    animation: modalAppear 0.5s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-verification-icon {
    font-size: 4rem;
    color: #7CFC00;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.age-verification-logo {
    margin-bottom: 1.5rem;
}

.age-verification-logo .brand-777 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7CFC00 0%, #39FF14 50%, #CCFF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.age-verification-logo h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(124, 252, 0, 0.5);
    margin: 0;
}

.age-verification-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #7CFC00;
    margin-bottom: 1rem;
}

.age-verification-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.age-verification-text strong {
    color: #7CFC00;
    font-weight: 800;
}

.age-verification-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.btn-age-yes,
.btn-age-no {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-age-yes {
    background: linear-gradient(135deg, #228B22 0%, #7CFC00 100%);
    color: white;
    box-shadow: 0 0 20px rgba(124, 252, 0, 0.5);
}

.btn-age-yes:hover {
    background: linear-gradient(135deg, #7CFC00 0%, #39FF14 50%, #CCFF00 100%);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(124, 252, 0, 0.8);
}

.btn-age-no {
    background: rgba(220, 53, 69, 0.2);
    color: #ff4757;
    border: 2px solid #ff4757;
}

.btn-age-no:hover {
    background: rgba(220, 53, 69, 0.4);
    transform: translateY(-3px);
}

.age-verification-disclaimer {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.4;
    margin: 0;
}


/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--neon-green);
}

/* === NAVBAR === */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 252, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-777 {
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-right: 5px;
}

.brand-glow {
    text-shadow: var(--glow-green);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
    text-shadow: var(--glow-green);
}

.badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
}

/* === HERO SECTION === */
.hero-section {
    background-image: url('../img/hero.png');
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(11, 79, 11, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-777 {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: var(--glow-green-strong);
    margin: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Smoke Effects */
.smoke-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.smoke-1 {
    background: var(--primary-green);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.smoke-2 {
    background: var(--neon-green);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.smoke-3 {
    background: var(--lime-green);
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

/* === BUTTONS === */
.btn-primary {
    background: var(--gradient-green);
    border: none;
    color: white;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--gradient-psychedelic);
    transform: translateY(-3px);
    box-shadow: var(--glow-green-strong);
}

.btn-glow {
    box-shadow: var(--glow-green);
}

.btn-glow:hover {
    box-shadow: var(--glow-green-strong);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* === SECTIONS === */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-green);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* === FEATURES SECTION === */
.features-section {
    background: var(--bg-dark-secondary);
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--glow-green);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* === CATEGORIES SECTION === */
.categories-section {
    background: var(--bg-dark);
}

.category-card {
    display: block;
    background: var(--bg-card);
    border: 2px solid rgba(124, 252, 0, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--text-light);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 252, 0, 0.05) 100%);
    box-shadow: var(--glow-green-strong);
    color: var(--text-light);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--gradient-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section .lead {
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* === PRODUCTS SECTION === */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--deep-green) 100%);
    border-bottom: 2px solid rgba(124, 252, 0, 0.2);
}

.filters-card {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.filters-card h4,
.filters-card h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.filter-group {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(124, 252, 0, 0.1);
}

.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.form-check-label {
    color: var(--text-light);
    cursor: pointer;
}

/* === PRODUCT CARDS === */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: var(--glow-green);
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--deep-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--glow-green);
}

.product-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-shadow: var(--glow-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Precios con opción de cápsula */
.product-price-options {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.price-option {
    flex: 1;
    background: var(--bg-dark-secondary);
    border: 2px solid rgba(124, 252, 0, 0.2);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.price-option.highlighted {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, rgba(124, 252, 0, 0.1) 100%);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-green);
}

.price-option.highlighted .price-value {
    text-shadow: var(--glow-green);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
}

/* === PRODUCT DETAIL === */
.product-detail-image {
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, var(--deep-green) 100%);
    border: 2px solid rgba(124, 252, 0, 0.2);
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-detail-image img.image-changing {
    opacity: 0;
    transform: scale(0.95);
}

.product-detail-info {
    padding: 2rem;
}

.product-detail-category {
    display: inline-block;
    background: var(--gradient-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-green-strong);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-features h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.product-features li i {
    color: var(--primary-green);
    margin-right: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-light);
}

.quantity-selector input {
    width: 80px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.2);
    color: var(--text-light);
}

/* === SELECTOR DE CÁPSULA === */
.capsule-selector {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.capsule-selector h5 {
    color: var(--primary-green);
}

.capsule-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.capsule-option {
    cursor: pointer;
    margin: 0;
}

.capsule-option input[type="radio"] {
    display: none;
}

.capsule-option-card {
    background: var(--bg-dark-secondary);
    border: 2px solid rgba(124, 252, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.capsule-option input[type="radio"]:checked+.capsule-option-card {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, rgba(124, 252, 0, 0.15) 100%);
    box-shadow: var(--glow-green);
}

.capsule-option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.capsule-option-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    display: block;
}

.option-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    text-shadow: var(--glow-green);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--glow-green);
}

/* === CART ITEMS === */
.cart-item {
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-dark-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.cart-item-category {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.cart-item-quantity {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.3rem;
}

.capsule-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.cart-item-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #ff4757;
    transform: scale(1.2);
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark-secondary);
    border-top: 2px solid rgba(124, 252, 0, 0.2);
    margin-top: 4rem;
}

.footer h3,
.footer h5 {
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(124, 252, 0, 0.2);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-5px) rotate(15deg);
    box-shadow: var(--glow-green);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8);
    color: white;
}

/* === BREADCRUMB === */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-green);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-30px) translateX(30px);
    }

    66% {
        transform: translateY(30px) translateX(-30px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive - Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-777 {
        font-size: 3rem;
    }

    .filters-card {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    /* Mantener selector de cápsula horizontal en tablets */
    .capsule-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Móviles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-777 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .product-detail-image {
        min-height: 200px;
        max-height: 400px;
        margin: 30px;
        overflow: hidden;
    }

    .product-detail-image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;

    }

    /* Selector de cápsula en móvil - Vertical */
    .capsule-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .capsule-option-card {
        padding: 1.2rem;
    }

    .capsule-option-card i {
        font-size: 2rem;
    }

    .option-price {
        font-size: 1.3rem;
    }

    /* Precios en cards - Vertical en móvil */
    .product-price-options {
        flex-direction: column;
        gap: 8px;
    }

    .price-option {
        width: 100%;
    }

    /* Ajustar título del detalle */
    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-price {
        font-size: 2rem;
    }

    /* Botones en detalle */
    .product-detail-info .d-flex {
        flex-direction: column;
    }

    .product-detail-info .d-flex .btn-lg {
        width: 100%;
    }

    /* Cards de productos más compactas en móvil */
    .product-card {
        margin-bottom: 1rem;
    }

    .product-body {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    /* Botones de acción en cards */
    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    /* Cantidad selector más grande en móvil */
    .quantity-selector input {
        width: 100%;
        max-width: 120px;
    }

    /* Cart items en móvil */
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto 1rem;
    }

    .cart-item-remove {
        margin-top: 1rem;
    }
}