:root {
    --bg-primary: #fdf8f9;
    --text-primary: #8b1c3f;
    --accent: #e8a2c1;
    --accent-dark: #701331;
    --color-cream: #f9f0f2;
    --font-titulos: 'Playfair Display', serif;
    --font-texto: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
body { font-family: var(--font-texto); background: var(--bg-primary); color: var(--text-primary); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-titulos); font-weight: 700; color: var(--text-primary); }
em { font-family: var(--font-titulos); font-style: italic; color: var(--accent); }


#main-nav { 
    position: fixed; 
    width: 100%; 
    padding: 20px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
}
#main-nav.scrolled { 
    background: var(--bg-primary); 
    backdrop-filter: blur(10px); 
    padding: 15px 5%; 
    box-shadow: 0 4px 20px rgba(139, 28, 63, 0.1); 
}
#main-nav.nav-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}
.logo { font-family: var(--font-titulos); font-size: 1.8rem; color: var(--text-primary); text-decoration: none; font-weight: 700; letter-spacing: -1px; }
.logo span { color: var(--accent); font-style: italic; }
#main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
#main-nav a { 
    text-decoration: none; 
    color: var(--text-primary); 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 400;
}
#main-nav a svg { 
    width: 18px; 
    height: 18px; 
    stroke-width: 1.5; 
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.7;
}
#main-nav a:hover { color: var(--accent); }
#main-nav a:hover svg { 
    transform: translateY(-2px); 
    color: var(--accent);
    opacity: 1;
}
#main-nav a.active { color: var(--accent); font-weight: 500; }
#main-nav a.active svg { opacity: 1; color: var(--accent); }
.nav-cta { background: var(--accent); color: white; padding: 8px 20px; border-radius: 0; font-weight: 500; }


#hero { min-height: 90vh; display: flex; align-items: center; padding: 100px 8% 50px; gap: 80px; }
.hero-left { flex: 1.2; max-width: 650px; }
.hero-title { font-size: 5rem; line-height: 1.1; margin: 20px 0; font-weight: 600; }
.hero-image { width: 100%; height: 650px; object-fit: cover; border-radius: 0; filter: sepia(0.2) contrast(1.1); }
.hero-badge { position: absolute; bottom: 40px; right: -40px; background: var(--accent); color: white; width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(10deg); }


.marquee-bar { background: var(--color-cream); color: var(--text-primary); padding: 25px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; }
.marquee-inner { display: flex; flex-shrink: 0; animation: marquee 50s linear infinite; }
.marquee-item { font-size: 1.2rem; margin-right: 50px; display: inline-flex; align-items: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }


.prod-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding: 50px 5%; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 50px 5%; }
.prod-header { 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 50px; 
    padding: 0 5%;
}
.prod-header h2.section-title { 
    padding-left: 0 !important; 
    padding-right: 0 !important; 
    margin-bottom: 20px;
}
.prod-header p {
    margin: 0 auto 40px !important;
}
.cat-card, .prod-card { position: relative; border-radius: 15px; overflow: hidden; height: 400px; background: white; }
.cat-img, .prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cat-card:hover .cat-img { transform: scale(1.1); filter: brightness(0.7); }


.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.in-view { opacity: 1 !important; transform: translateY(0) !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


.reveal-scale { opacity: 0; transform: scale(0.95); transition: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-scale.in-view { opacity: 1 !important; transform: scale(1) !important; }


.btn-primary { background: var(--text-primary); color: white; padding: 15px 35px; border-radius: 0; text-decoration: none; font-weight: 500; transition: 0.3s; letter-spacing: 1px; }
.btn-primary:hover { background: var(--accent); }
.prod-overlay { position: absolute; inset: 0; background: rgba(60, 47, 37, 0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; backdrop-filter: blur(2px); }
.prod-card:hover .prod-overlay { opacity: 1; }
.prod-overlay-btn { 
    background: transparent; 
    color: white; 
    padding: 10px 0; 
    border-bottom: 1px solid white; 
    text-decoration: none; 
    font-weight: 400; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}
.prod-overlay-btn:hover {
    letter-spacing: 2px;
    opacity: 0.8;
}

footer { background: var(--text-primary); color: white; padding: 80px 5% 40px; }
.footer-top { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-links { list-style: none; }
.footer-links a { color: white; text-decoration: none; opacity: 0.7; }

.decoraciones-flotantes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; 
    z-index: -1; 
    overflow: hidden;
}

.flor-flotante {
    position: absolute;
    animation: flotar 8s infinite alternate ease-in-out;
}


.f1 { top: 15%; left: 5%; width: 120px; color: var(--accent); opacity: 0.15; animation-duration: 12s; }
.f2 { top: 40%; right: 8%; width: 80px; color: var(--text-primary); opacity: 0.12; animation-duration: 9s; animation-delay: 2s; }
.f3 { bottom: 10%; left: 15%; width: 150px; color: var(--accent); opacity: 0.15; animation-duration: 15s; animation-delay: 1s; }
.f4 { top: 75%; right: 20%; width: 60px; color: var(--accent); opacity: 0.18; animation-duration: 10s; animation-delay: 3s; }

@keyframes flotar {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-50px) rotate(25deg) scale(1.1); }
}


#contacto {
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 80px 0;
    padding: 120px 8%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.contacto-info {
    flex: 1;
}

.contacto-info .section-label {
    color: var(--accent);
    font-size: 0.9rem;
    background: none;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.contacto-info h2 {
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1;
    margin: 0 0 30px;
}

.contacto-info h2 em {
    color: var(--accent);
}

.contacto-form-wrap {
    flex: 1;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.form-input, .form-textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(60, 47, 37, 0.2);
    border-radius: 0;
    background: transparent;
    font-family: var(--font-texto);
    font-size: 1rem;
    color: var(--text-primary);
    transition: 0.3s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
    box-shadow: none;
}

.form-textarea {
    min-height: 120px;
    resize: none;
}


.form-submit, .form-submit-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--text-primary);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px; 
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    margin-top: 15px;
    cursor: pointer;
}

.form-submit:hover, .form-submit-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background-color: var(--accent-dark);
}

.form-submit-whatsapp svg {
    transition: transform 0.3s ease;
}

.form-submit-whatsapp:hover svg {
    transform: scale(1.2) rotate(10deg);
}



footer {
    background-color: var(--text-primary);
    color: white;
    padding: 100px 8% 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-brand {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand .logo {
    color: white;
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-titulos);
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.6;
    font-weight: 400;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-map-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-map-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.5;
    transition: 0.3s ease;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

.footer-bottom-right {
    font-style: italic;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    #contacto { flex-direction: column; margin: 40px 5%; padding: 30px; }
    .contacto-info h2 { font-size: 2.5rem; }
    .footer-top { flex-direction: column; gap: 20px; }
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; 
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}


@media (max-width: 850px) {
    
    .hamburger { display: flex; }

    
    #nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 0;
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    
    #nav-links.active {
        max-height: 600px; 
        padding: 30px 0;
    }

    #nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }

    #nav-links a {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
        font-size: 1.2rem;
    }

    
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    
    .mobile-hide {
        display: none !important;
    }

    .load-more-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
    }
}


@media (min-width: 851px) {
    .load-more-container { display: none !important; }
}



html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}


@media (max-width: 850px) {
    
    #hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: left;
        gap: 50px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        height: 450px; 
        border-radius: 0;
        width: 100%;
    }

    .hero-badge {
        bottom: -20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }

    .cat-grid, .prod-grid, .features-grid {
        grid-template-columns: 1fr;
        padding: 60px 8%;
        gap: 40px;
    }

    #contacto {
        flex-direction: column;
        padding: 80px 8%;
        gap: 50px;
    }
    
    .form-submit {
        width: 100%;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    align-items: flex-start; 
}

.hero-subtitle {
    margin: 0 !important; 
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; 
    margin: 0 !important;
}

.hero-stats {
    display: flex;
    gap: 30px;
    width: 100%;
    border-top: 1px solid rgba(139, 28, 63, 0.2);
    padding-top: 25px;
    margin: 0 !important;
}


@media (max-width: 850px) {
    .hero-left {
        align-items: center; 
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary) !important;
    border: 1px solid var(--text-primary);
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-ghost:hover {
    background-color: var(--text-primary);
    color: white !important;
}

   

.contacto-info h2 {
    font-size: 4.5rem !important; 
    font-weight: 900 !important; 
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4); 
    letter-spacing: -1px; 
    margin-bottom: 25px !important;
}


.contacto-info .section-label {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    letter-spacing: 4px;
    text-transform: uppercase;
}


.contacto-info p {
    font-size: 1.35rem !important;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.95;
}


.form-input, .form-textarea {
    font-size: 1.15rem !important;
    font-weight: 600 !important; 
    color: #222 !important; 
}


.form-input::placeholder, .form-textarea::placeholder {
    font-weight: 500 !important;
    color: #666 !important; 
}


.form-submit {
    font-size: 1.25rem !important;
    font-weight: 900 !important; 
    letter-spacing: 2px;
}


@media (max-width: 850px) {
    .contacto-info h2 {
        font-size: 3.2rem !important;
    }
    .contacto-info p {
        font-size: 1.15rem !important;
    }
}





body {
    font-size: 1.15rem; 
    line-height: 1.7; 
}



.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 60px;
}

.section-title em {
    color: var(--accent);
}


.cat-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(139, 28, 63, 0.7) 0%, transparent 60%);
    color: white;
    z-index: 5;
    transition: 0.4s;
}

.cat-card:hover .cat-content {
    background: linear-gradient(to top, rgba(139, 28, 63, 0.9) 0%, transparent 80%);
}

.cat-name {
    font-size: 2.8rem !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: white !important;
}

.cat-num {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 5px;
    display: block;
}

.cat-link {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0.8;
    transition: 0.3s;
}

.cat-card:hover .cat-link {
    opacity: 1;
    letter-spacing: 3px;
}


.prod-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.prod-price {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
}


.feature-box h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1.15rem !important;
    color: #4A3B3E !important; 
}


@media (max-width: 850px) {
    .section-title { font-size: 3rem !important; }
    .cat-name { font-size: 2.2rem !important; }
}


.feature-box {
    background-color: #FFFFFF; 
    padding: 30px; 
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(58, 38, 42, 0.08); 
    width: 100%;
    box-sizing: border-box; 
    text-align: center;
    overflow: hidden; 
}


.feature-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: var(--color-cream);
    display: block;
}


.feature-box h3 {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 15px;
    word-wrap: break-word; 
}


.feature-box p {
    font-size: 1.2rem !important;
    line-height: 1.6;
    color: #444 !important;
    margin: 0;
}


@media (max-width: 850px) {
    .feature-box {
        padding: 25px 20px; 
    }
    
    .feature-img {
        height: 180px; 
    }
    
    .feature-box h3 {
        font-size: 1.8rem !important; 
    }
    
    .feature-box p {
        font-size: 1.15rem !important;
    }
}



.section-label, 
.section-title, 
.love-content {
    padding-left: 5% !important;
    padding-right: 5% !important;
    box-sizing: border-box;
}


.love-section {
    text-align: center; 
    padding-top: 80px;  
    padding-bottom: 80px; 
    width: 100%;
}

.love-content {
    max-width: 800px; 
    margin: 0 auto; 
}


.love-content h2 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}


.love-content p {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.7;
}


@media (max-width: 850px) {
    .love-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .love-content h2 {
        font-size: 2.8rem !important;
    }
}


.whatsapp-cta-wrap {
    text-align: center;
    padding: 100px 8%;
    background: var(--bg-primary);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whatsapp-cta-wrap p {
    font-family: var(--font-titulos);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

.btn-whatsapp-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--text-primary);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-whatsapp-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background-color: var(--accent-dark);
    color: white;
}

@media (max-width: 850px) {
    .btn-whatsapp-full {
        width: 100%;
    }
}




@media (min-width: 851px) {
    .prod-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px; 
    }
    .prod-grid.grid-2-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .prod-grid.grid-1-col {
        grid-template-columns: 1fr !important;
        max-width: 900px;
        margin: 0 auto;
    }
    .prod-grid.grid-eventos {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 1200px;
        margin: 0 auto;
    }
    .prod-grid.grid-eventos > .prod-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 20px);
        margin: 0 auto;
    }
}


.prod-img-wrap.img-large {
    height: 550px !important;
}


.prod-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(58, 38, 42, 0.05); 
    height: 100%; 
}


.prod-img-wrap {
    position: relative;
    width: 100%;
    height: 280px !important; 
    background-color: var(--color-cream);
    overflow: hidden;
}

.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover !important; 
    display: block;
}


.prod-info {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.prod-tag {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.prod-name {
    margin-bottom: 5px;
    line-height: 1.2;
}

.prod-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.prod-price {
    margin-top: auto; 
}


@media (max-width: 850px) {
    footer {
        padding: 60px 8% 30px;
    }
    
    .footer-container {
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .footer-col-title {
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-map-link {
        margin-bottom: 20px;
    }
}