/* =====================================================
   JARDINES DEL SUR — Diseño Premium
   Paleta: Dorado #c5a46d | Navy #1a3a5c | Verde #1f3d2b
   ===================================================== */

/* ── Variables ── */
:root {
    --gold: #c5a46d;
    --gold-light: #d4b98a;
    --gold-dark: #a8894e;
    --navy: #1a3a5c;
    --navy-light: #2a5580;
    --navy-dark: #0f2540;
    --green: #1f3d2b;
    --green-light: #2d5a3f;
    --white: #ffffff;
    --off-white: #f7f6f4;
    --cream: #faf8f5;
    --gray-100: #f0eeeb;
    --gray-200: #e0ddd8;
    --gray-300: #c4bfb7;
    --gray-500: #8a8580;
    --gray-700: #4a4540;
    --gray-900: #2a2520;
    --shadow-sm: 0 2px 8px rgba(26, 58, 92, .06);
    --shadow-md: 0 8px 30px rgba(26, 58, 92, .1);
    --shadow-lg: 0 20px 60px rgba(26, 58, 92, .15);
    --shadow-gold: 0 8px 30px rgba(197, 164, 109, .25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--gray-700);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(10, 28, 50, 0.75) 0%, rgba(10, 28, 50, 0.0) 100%);
}

#main-header.scrolled {
    background: rgba(15, 37, 64, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
}

#main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 260px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

#main-header.scrolled .logo-img {
    height: 72px;
    max-width: 220px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-links a {
    color: rgba(255, 255, 255, .85);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: .3px;
}

.nav-links a:hover {
    color: var(--gold-light);
    background: rgba(197, 164, 109, .1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white !important;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.05);
}

.nav-whatsapp i {
    font-size: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 37, 64, .7) 0%,
            rgba(26, 58, 92, .5) 50%,
            rgba(31, 61, 43, .4) 100%);
}

.slide-content,
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 20px;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    animation: fadeInUp .8s ease;
}

.slide-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    opacity: .9;
    letter-spacing: 1px;
    margin-bottom: 36px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .3);
    animation: fadeInUp .8s ease .2s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    animation: fadeInUp .8s ease .4s both;
}

.btn-hero:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(197, 164, 109, .4);
}

/* slider controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .7);
    border-radius: 3px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════
   SECTIONS GENERAL
   ══════════════════════════════════════════════ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge span {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.feat,
.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature i,
.feat i {
    font-size: 20px;
    color: var(--gold);
    margin-top: 2px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 109, .1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature h4,
.feat h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 3px;
}

.feature p,
.feat p {
    font-size: 13.5px;
    color: var(--gray-500);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: transparent;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.section-services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    transition-delay: var(--delay, 0s);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    font-size: 28px;
    color: var(--gold-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SECTORS
   ══════════════════════════════════════════════ */
.section-sectors {
    background: var(--white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition-delay: var(--delay, 0s);
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.sector-card:hover img {
    transform: scale(1.12);
}

.sector-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(15, 37, 64, .85));
    color: white;
}

.sector-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sector-info i {
    color: var(--gold-light);
}

/* ══════════════════════════════════════════════
   FLOWERS / TIENDA
   ══════════════════════════════════════════════ */
.section-flowers {
    background: var(--cream);
}

.flowers-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.flowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.flower-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.flower-card.hidden {
    display: none;
}

.flower-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.flower-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}

.flower-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.flower-card:hover .flower-img img {
    transform: scale(1.08);
}

.flower-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-300);
    background: linear-gradient(135deg, var(--gray-100), var(--cream));
}

.flower-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.flower-info {
    padding: 22px;
}

.flower-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flower-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    margin: 6px 0 8px;
}

.flower-info p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 16px;
}

.flower-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.flower-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-sm:hover {
    background: #1fb855;
    transform: scale(1.05);
}

.empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-500);
    font-style: italic;
    padding: 60px 0;
}

/* ══════════════════════════════════════════════
   CAFETERIA
   ══════════════════════════════════════════════ */
.section-cafe {
    background: var(--white);
}

.cafe-menu {
    max-width: 800px;
    margin: 0 auto;
}

.cafe-category {
    margin-bottom: 40px;
}

.cafe-cat-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cafe-cat-title i {
    color: var(--gold);
    font-size: 20px;
}

.cafe-item {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.cafe-item:hover {
    background: var(--cream);
    padding-left: 12px;
    border-radius: var(--radius-sm);
}

.cafe-item-info {
    flex-shrink: 0;
}

.cafe-item-info h4 {
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 500;
}

.cafe-item-info p {
    font-size: 12.5px;
    color: var(--gray-500);
}

.cafe-item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--gray-200);
    margin-bottom: 5px;
}

.cafe-item-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

/* ══════════════════════════════════════════════
   GALLERY SLIDER
   ══════════════════════════════════════════════ */
.section-gallery {
    background: var(--navy-dark);
    padding-bottom: 80px;
    overflow: hidden;
}

.section-gallery .section-tag {
    color: var(--gold-light);
}

.section-gallery .section-title {
    color: var(--white);
}

.gallery-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 16px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    color: white;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition);
}

.gallery-slide:hover .gallery-caption {
    opacity: 1;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--gold);
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    text-align: center;
}

/* ══════════════════════════════════════════════
   OBITUARIES
   ══════════════════════════════════════════════ */
.section-obituaries {
    background: var(--cream);
}

.obituaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.obituary-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.obituary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
}

.obituary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.obituary-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(26, 58, 92, .06);
    border-radius: 50%;
    color: var(--navy);
    font-size: 18px;
}

.obituary-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--gold-light);
}

.obituary-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.obituary-dates {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.obituary-sala {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.obituary-msg {
    font-size: 13.5px;
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-900);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 164, 109, .15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #c8e6c9;
}

.contact-info-card {
    background: var(--navy);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 109, .15);
    border-radius: var(--radius-sm);
    color: var(--gold-light);
    font-size: 16px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#main-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .8);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--white);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 50px 0 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-slogan {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    padding: 6px 0;
    font-size: 13.5px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col li i {
    color: var(--gold-light);
    font-size: 12px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-col a {
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════════════════
   BANNER DE SERVICIOS (POSTER)
   ══════════════════════════════════════════════ */
.section-service-banner {
    position: relative;
    padding: 120px 0;
    background: url('../img/hero-2.jpg') center/cover no-repeat fixed;
    color: #fff;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 31, 63, 0.9), rgba(0, 31, 63, 0.7));
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--gray-900);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .2), 0 0 0 14px rgba(37, 211, 102, .08);
    }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 15px;
        padding: 12px 16px;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-whatsapp span {
        display: none;
    }

    .nav-whatsapp {
        padding: 10px;
        border-radius: 50%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        flex: 0 0 calc(100% - 10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        height: 220px;
    }

    .flowers-grid {
        grid-template-columns: 1fr;
    }

    .obituaries-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   ESTILOS PRO (OBITUARIOS & MODALES)
   ══════════════════════════════════════════════ */
.obituary-body {
    padding: 20px 20px 10px;
    text-align: center;
}

.obituary-body h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.obituary-date {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.obituary-sala {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.obituary-msg {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.obituary-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.btn-condolencia {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn-condolencia:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Modal Pro - Fixed Positioning */
.modal-overlay-pro {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85) !important;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000 !important;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal-overlay-pro.active {
    display: flex !important;
}

.modal-content-pro {
    background: #fff;
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-pro {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10100;
    transition: 0.3s;
}

.modal-close-pro:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-header-pro {
    background: var(--navy);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.modal-header-pro i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.modal-header-pro h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    font-family: var(--font-display);
}

.modal-header-pro p {
    font-size: 1rem;
    opacity: 0.8;
}

.modal-body-pro {
    padding: 30px;
}

.condolence-list-view {
    margin-bottom: 30px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
    border-bottom: 1px solid #eee;
}

.condolence-item-pro {
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 12px;
    border-left: 5px solid var(--gold);
}

.condolence-item-pro .c-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.condolence-item-pro .c-info strong {
    color: var(--navy);
}

.condolence-item-pro p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.condolence-form h4 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.2rem;
}

.form-group-pro {
    margin-bottom: 15px;
}

.form-group-pro input,
.form-group-pro textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group-pro input:focus,
.form-group-pro textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    outline: none;
}

.btn-submit-pro {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn-submit-pro:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.note-pro {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

.no-condolencias {
    text-align: center;
    color: #999;
    padding: 20px;
    font-style: italic;
}

/* ══════════════════════════════════════════════
   PLANES DE PREVISIÓN
   ══════════════════════════════════════════════ */
.section-planes {
    background: #f4f7fe;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.plan-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.plan-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-body h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-family: var(--font-display);
}

.plan-body p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.plan-price {
    font-size: 1.8rem;
    color: var(--gold-dark);
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.plan-price span {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--navy);
    color: #fff;
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-plan:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ══════════════════════════════════════════════
   FLORERÍA Y PEDIDOS
   ══════════════════════════════════════════════ */
.section-flowers {
    background: #fff;
}

.flowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.flower-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.flower-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-light);
}

.flower-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.flower-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flower-card:hover .flower-image img {
    transform: scale(1.05);
}

.flower-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flower-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.flower-info h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.flower-price {
    font-size: 1.4rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ══════════════════════════════════════════════
   CAFETERÍA
   ══════════════════════════════════════════════ */
.section-cafe {
    background: #f9fbff;
}

.cafe-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.cafe-category {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cafe-cat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    color: var(--gold-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(184, 134, 11, 0.2);
}

.cafe-cat-title i {
    font-size: 1.8rem;
    color: var(--navy);
}

.cafe-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cafe-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cafe-item-info {
    flex: 0 1 auto;
    padding-right: 15px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.cafe-item-info h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cafe-item-info p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    max-width: 250px;
}

.cafe-item-dots {
    flex: 1 1 auto;
    border-bottom: 2px dotted #ddd;
    margin: 0 10px 6px 0;
    position: relative;
    z-index: 1;
}

.cafe-item-price {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 1.1rem;
    background: #fff;
    padding-left: 10px;
    position: relative;
    z-index: 2;
}

/* Responsividad extra */
@media (max-width: 768px) {
    .cafe-menu {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flowers-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}