/*
 * Crafted by Itzee - PREMIUM Website Styles
 * Enhanced with 50x more awesomeness
 */

/* ========================================
   ORIGINAL CRAFTED BY ITZEE THEME
   --primary-color: #E89B6E;
   --secondary-color: #2B5647;
   --accent-color: #B84C4C;
   --gold-accent: #D4AF37;
   --cream: #F5EFE0;
   --light-cream: #FFF9F0;
======================================== */

:root {
    /* VALENTINE'S DAY THEME */
    --primary-color: #E91E63;
    --secondary-color: #880E4F;
    --accent-color: #FF4081;
    --gold-accent: #E8B4B8;
    --cream: #FFF0F5;
    --light-cream: #FFF5F8;
    --text-dark: #2D2D2D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;

    --font-primary: 'Quicksand', sans-serif;
    --font-script: 'Sacramento', cursive;
    --font-accent: 'Raleway', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

body.no-scroll {
    overflow: hidden;
}

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

/* ========================================
   SEASONAL BANNER
======================================== */
.seasonal-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5c0a35 100%);
    color: var(--white);
    padding: 0.875rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-icon {
    font-size: 1.2rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.banner-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0 0.5rem;
    transition: var(--transition);
}

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

.seasonal-banner.hidden {
    display: none;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.98);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--secondary-color);
    line-height: 1;
    transition: var(--transition);
}

.logo-script:hover {
    color: var(--primary-color);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.language-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 38px;
    line-height: 1;
    vertical-align: middle;
}

.language-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.lang-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    transition: var(--transition);
}

.chihuahua-icon {
    font-size: 1.25rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.language-toggle:hover .chihuahua-icon {
    animation: bark 0.5s ease;
}

@keyframes bark {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-15deg); }
    50% { transform: scale(1.2) rotate(15deg); }
    75% { transform: scale(1.2) rotate(-15deg); }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
    position: relative;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background,
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Floating heart particles */
.particle {
    position: absolute;
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.5;
    animation: particleFloat 30s infinite ease-in-out;
}

/* Lighter particles for light backgrounds */
.testimonials-section .particle,
.gallery-section .particle,
.faq-section .particle,
.about-section .particle {
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Particles for cream backgrounds */
.how-it-works .particle,
.packages-section .particle {
    color: var(--primary-color);
    opacity: 0.4;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,30,99,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43,86,71,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--accent-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

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

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-welcome {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-brand {
    display: block;
    font-family: var(--font-script);
    font-size: 5rem;
    color: var(--secondary-color);
    line-height: 1.3;
    padding: 0.5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flower-accent {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.flower-1 {
    top: 8%;
    left: 15%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.flower-2 {
    top: 12%;
    left: 30%;
    animation-delay: 1.5s;
    font-size: 2.8rem;
}

.flower-3 {
    top: 5%;
    left: 50%;
    margin-left: -1.5rem;
    animation-delay: 3s;
    font-size: 3rem;
}

.flower-4 {
    top: 12%;
    right: 30%;
    animation-delay: 2s;
    font-size: 2.8rem;
}

.flower-5 {
    top: 8%;
    right: 15%;
    animation-delay: 4s;
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) translateX(0); }
    50% { transform: translateY(-20px) rotate(5deg) translateX(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233,30,99,0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(233,30,99,0.8);
    }
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   HIGHLIGHTS SECTION
======================================== */
.highlights-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-cream);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   SECTION STYLES
======================================== */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

/* ========================================
   SHOP SECTION
======================================== */
.shop-section {
    background: var(--light-cream);
}

.category-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-card[data-product-id="1"] .product-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.product-card[data-product-id="4"] .product-badge {
    background: linear-gradient(135deg, #880E4F, #5c0a35);
}

.product-card[data-product-id="5"] .product-badge {
    background: linear-gradient(135deg, var(--gold-accent), #c9a0a4);
}

.product-card[data-product-id="7"] .product-badge {
    background: linear-gradient(135deg, #4ecdc4, #44a39f);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233,30,99,0.1) 0%, rgba(136,14,79,0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

.image-caption {
    position: absolute;
    bottom: 5px;
    right: 8px;
    font-size: 0.65rem;
    color: #555;
    background: rgba(255, 255, 255, 0.85);
    padding: 3px 8px;
    border-radius: 3px;
    text-align: right;
    max-width: 90%;
    line-height: 1.3;
}

/* Product Carousel */
.product-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-carousel .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-carousel .carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.8rem;
    transition: var(--transition);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary-color);
}

/* Modal Carousel */
.modal-carousel {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--cream);
}

.modal-carousel .modal-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-carousel .modal-carousel-image.active {
    opacity: 1;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    color: var(--text-light);
    transition: var(--transition);
}

.product-card:hover .product-placeholder {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-card:hover .product-placeholder i {
    transform: scale(1.2) rotate(5deg);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-btn {
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.product-customizable {
    font-size: 0.85rem;
    color: var(--gold-accent);
    font-weight: 500;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: var(--cream);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section > .container {
    position: relative;
    z-index: 2;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2rem;
    text-align: center;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--cream);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -70px;
}

.slider-btn.next {
    right: -70px;
}

.testimonials-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cream);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
}

/* ========================================
   HOW IT WORKS
======================================== */
.how-it-works {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.how-it-works .step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.how-it-works .step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.how-it-works .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.how-it-works .step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.how-it-works .step h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.how-it-works .step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   PACKAGES SECTION
======================================== */
.packages-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--light-cream);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-slow);
    border: 3px solid transparent;
}

.package-card.featured {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card.featured .package-badge {
    background: var(--gold-accent);
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.package-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.price-new {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features i {
    color: var(--primary-color);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    background: var(--light-cream);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-left: 100px;
}

.about-photo {
    width: 350px !important;
    max-width: 350px !important;
    height: auto !important;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: top;
    border: 4px solid var(--primary-color);
    margin-top: 0;
}

.photo-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.photo-flower {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.photo-flower-1 {
    top: 100px;
    left: -30px;
    font-size: 2.2rem;
    animation-delay: 0s;
}

.photo-flower-2 {
    top: 180px;
    right: -25px;
    font-size: 1.8rem;
    animation-delay: 1.5s;
}

.photo-flower-3 {
    bottom: 150px;
    left: -25px;
    font-size: 2rem;
    animation-delay: 3s;
}

.photo-flower-4 {
    bottom: 80px;
    right: -30px;
    font-size: 2.2rem;
    animation-delay: 2s;
}

.photo-flower-5 {
    top: 250px;
    left: 20px;
    font-size: 1.6rem;
    animation: heartFloat 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.photo-flower-6 {
    top: 320px;
    right: 10px;
    font-size: 1.8rem;
    animation: heartFloat 5s ease-in-out infinite;
    animation-delay: 1s;
}

.photo-flower-7 {
    bottom: 220px;
    left: 10px;
    font-size: 1.5rem;
    animation: heartFloat 4.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.photo-flower-8 {
    bottom: 30px;
    left: 30px;
    font-size: 1.7rem;
    animation: heartFloat 5.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

/* Animacion de aparecer/desaparecer para corazones */
@keyframes heartFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1);
    }
    80% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1);
    }
}

/* Efecto de destello amarillo al pasar el cursor - Hero */
.flower-accent {
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.flower-accent:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 30px rgba(255, 193, 7, 0.7)) brightness(1.2);
    transform: scale(1.3) rotate(15deg);
}

/* Efecto de destello amarillo al pasar el cursor - Photo flowers */
.photo-flower {
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.photo-flower:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 30px rgba(255, 193, 7, 0.7)) brightness(1.2);
    transform: scale(1.4) rotate(-10deg) !important;
    animation-play-state: paused;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-cream) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.decorative-border {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
}

.decorative-border::before,
.decorative-border::after {
    content: '🌸';
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
}

.decorative-border::before {
    top: 20px;
    left: 20px;
}

.decorative-border::after {
    bottom: 20px;
    right: 20px;
}

.decorative-border i {
    font-size: 4rem;
    color: var(--primary-color);
}

.placeholder-text {
    color: var(--text-light);
    font-style: italic;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-title::after {
    margin: 1rem 0 0 0;
}

.about-story p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 8px;
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateX(10px);
    background: var(--cream);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 30px;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title::after {
    margin: 1rem 0 0 0;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-cream);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-method p,
.contact-method a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--primary-color);
}

/* Payment Methods */
.payment-methods {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
    border-radius: 15px;
    text-align: center;
}

.payment-methods h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 70px;
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.payment-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

/* Brand colors for payment icons */
.payment-icon.zelle i {
    color: #6D1ED4;
}

.payment-icon.venmo i {
    color: #3D95CE;
}

.payment-icon.paypal i {
    color: #003087;
}

.payment-icon.cash i {
    color: #2E7D32;
}

.payment-icon:hover i {
    transform: scale(1.1);
}

.payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-container {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Social Links */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.pinterest {
    background: #E60023;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--accent-color);
}

/* ========================================
   MODALS & LIGHTBOX
======================================== */
.modal, .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active, .lightbox.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close, .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover, .lightbox-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

/* Colors Wizard Styles */
.colors-wizard-content {
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    padding: 0;
}

.colors-wizard {
    display: flex;
    height: 85vh;
    max-height: 700px;
}

.wizard-options {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background: var(--white);
}

.wizard-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.wizard-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.wizard-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream);
}

.wizard-section:last-child {
    border-bottom: none;
}

.wizard-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Wizard Name Input */
.wizard-name-input {
    width: 100%;
}

.wizard-text-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--cream);
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
}

.wizard-text-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 155, 110, 0.2);
}

.wizard-text-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

/* Color Type Buttons */
.color-type-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-type-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--cream);
    border-radius: 25px;
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-type-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-cream);
}

.color-type-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
}

.color-type-btn i {
    font-size: 0.85rem;
}

/* Color Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 0.75rem;
    max-width: 100%;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.color-swatch.selected {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.color-swatch.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.color-swatch.glitter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* Color swatch with real images */
.color-grid-images {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
}

.color-swatch-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    border: 3px solid transparent;
}

.color-swatch-image:hover {
    transform: scale(1.05);
    background: rgba(232, 155, 110, 0.1);
}

.color-swatch-image.selected {
    border-color: var(--secondary-color);
    background: rgba(232, 155, 110, 0.15);
}

.color-swatch-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.color-swatch-image:hover img {
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.color-swatch-image.selected img {
    box-shadow: 0 4px 15px rgba(43, 86, 71, 0.4);
}

.color-label {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 500;
}

.color-swatch.glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255,255,100,0.5); }
    50% { box-shadow: 0 0 20px rgba(255,255,100,0.8); }
}

/* View Samples Button */
.view-samples-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 2px dashed var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-samples-btn:hover {
    background: var(--primary-color);
    color: white;
    border-style: solid;
}

.view-samples-btn i {
    font-size: 1rem;
}

/* Samples Lightbox */
.samples-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.samples-lightbox.active {
    display: flex;
}

.samples-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.samples-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.samples-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.samples-lightbox-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Font Grid */
.font-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.font-option {
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.font-option:hover {
    border-color: var(--primary-color);
    background: var(--light-cream);
}

.font-option.selected {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
}

/* Wizard Summary */
.wizard-summary {
    width: 320px;
    background: linear-gradient(135deg, var(--secondary-color), #1e3d32);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.summary-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.summary-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    display: inline-block;
}

/* Preview */
.summary-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.summary-preview p {
    opacity: 0.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.preview-tag {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
}

.preview-tag::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #ccc;
    border-radius: 50%;
    border: 3px solid #999;
}

/* Hide bone elements */
.preview-tag .bone-bottom-left,
.preview-tag .bone-bottom-right {
    display: none;
}


.preview-tag span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.wizard-order-btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Shape Buttons */
.shape-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shape-btn {
    flex: 1;
    min-width: 80px;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--cream);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.shape-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.shape-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.shape-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.shape-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
}

.shape-btn.active i {
    color: white;
}

/* Size Buttons */
.size-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-btn {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.size-btn.active {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
}

.size-btn .size-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Second Color Section in Summary */
.second-color-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.second-color-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.second-color-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.second-color-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 155, 110, 0.2);
}

.second-color-select optgroup {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .colors-wizard {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .wizard-options {
        max-height: none;
        overflow-y: visible;
    }

    .wizard-summary {
        width: 100%;
        padding: 1.5rem;
    }

    .summary-preview {
        padding: 1rem 0;
    }

    .colors-wizard-content {
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .modal-content {
        max-height: none;
        margin: 10px 0;
    }
}

@media (max-width: 600px) {
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 0.5rem;
    }

    .color-swatch {
        width: 40px;
        height: 40px;
    }

    .color-type-buttons {
        flex-direction: column;
    }

    .color-type-btn {
        justify-content: center;
    }

    .colors-wizard-content {
        max-height: none;
        height: auto;
        padding: 0;
    }

    .colors-wizard {
        height: auto;
        max-height: none;
    }

    .wizard-options {
        padding: 1.5rem;
        max-height: none;
        overflow-y: visible;
    }

    .wizard-summary {
        padding: 1rem;
    }

    .modal-content {
        border-radius: 15px;
        max-height: none;
        overflow: visible;
    }

    .modal {
        padding: 5px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gift-tags-wizard-content {
        max-height: none;
        overflow-y: visible;
        padding: 1rem;
    }
}

.lightbox-content {
    max-width: 500px;
    max-height: 500px;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--cream);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================
   FLOATING ACTION BUTTONS
======================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fab-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

#backToTop {
    opacity: 0;
    pointer-events: none;
}

#backToTop.visible {
    opacity: 1;
    pointer-events: all;
}

.fab-email {
    background: var(--secondary-color);
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.custom-cursor,
.custom-cursor-dot {
    display: none;
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 130px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 130px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-brand {
        font-size: 3.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .how-it-works .steps-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    /* Move hearts down on mobile */
    .flower-1,
    .flower-2,
    .flower-3,
    .flower-4,
    .flower-5 {
        top: calc(52% - 100px) !important;
    }

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

@media (max-width: 640px) {
    /* Hide holiday banner on mobile */
    .seasonal-banner {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
    }

    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-welcome {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .contact-form-container {
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Mobile modal fixes */
    .modal {
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-content {
        border-radius: 0;
        max-height: none;
        min-height: 100vh;
        overflow-y: auto;
    }

    .colors-wizard-content {
        border-radius: 0;
        max-height: none;
        min-height: auto;
        overflow-y: auto;
    }

    .wizard-options {
        padding: 1rem;
        overflow-y: visible;
    }

    .wizard-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .color-grid-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .color-swatch-image img {
        width: 50px;
        height: 50px;
    }

    .color-label {
        font-size: 0.6rem;
    }

    .size-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .size-btn {
        min-width: 100%;
    }

    /* About photo mobile */
    .about-photo {
        width: 250px !important;
        max-width: 250px !important;
        margin: 0 auto;
        display: block;
    }

    .about-image {
        justify-content: center;
    }

    /* Hearts mobile - move further down */
    .flower-1,
    .flower-2,
    .flower-3,
    .flower-4,
    .flower-5 {
        top: calc(52% - 50px) !important;
        font-size: 1.8rem !important;
    }

    .hero-decorations {
        opacity: 0.4;
    }
}

/* ========================================
   GIFT TAGS WIZARD
======================================== */
.gift-tags-wizard-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.gift-tags-wizard {
    text-align: center;
}

.gift-tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.gift-tag-option {
    position: relative;
    border: 3px solid var(--cream);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.gift-tag-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gift-tag-option.selected {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(43, 86, 71, 0.3);
}

.gift-tag-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.gift-tag-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gift-tag-label {
    padding: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-cream);
}

.gift-tags-selection {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 10px;
}

.gift-tags-selection h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.selected-tag-preview {
    max-width: 300px;
    margin: 0 auto;
}

.selected-tag-preview img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* ========================================
   LEAVE A REVIEW FORM
======================================== */
.leave-review-container {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-md);
}

.leave-review-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.leave-review-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-stars-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.review-stars-select > span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating i {
    font-size: 1.75rem;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.hovered {
    color: #FFD700;
    transform: scale(1.2);
}

.star-rating i.selected {
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.review-form-row input,
.review-form-row textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.review-form-row input:focus,
.review-form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 155, 110, 0.2);
}

.review-form-row textarea {
    resize: vertical;
    min-height: 80px;
}

.review-form button {
    align-self: center;
    padding: 0.875rem 2rem;
}

@media (max-width: 768px) {
    .leave-review-container {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .review-stars-select {
        flex-direction: column;
        gap: 0.5rem;
    }

    .star-rating i {
        font-size: 2rem;
    }
}

/* Holographic Option */
.holographic-option {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--light-cream) 0%, #fff 100%);
    border: 2px solid var(--cream);
    border-radius: 12px;
    text-align: left;
}

.holographic-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.holographic-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.holographic-checkbox .checkmark {
    height: 24px;
    width: 24px;
    min-width: 24px;
    background-color: var(--white);
    border: 2px solid var(--cream);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holographic-checkbox:hover .checkmark {
    border-color: var(--primary-color);
}

.holographic-checkbox input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--secondary-color), #3d7a65);
    border-color: var(--secondary-color);
}

.holographic-checkbox input:checked ~ .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.holographic-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.holographic-price {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.holographic-desc {
    margin-top: 0.5rem;
    margin-left: 2.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .gift-tags-wizard-content {
        padding: 1.5rem;
    }

    .gift-tags-grid {
        grid-template-columns: 1fr;
    }

    .gift-tag-option img {
        height: 180px;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
