/* ==========================================
   Vlafer - Bubble Waffles & Desserts
   Design: Playful Confectionery Modernism
   Colors: Pink (#E94B83), Orange (#F2A900)
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navbar-bg: rgba(255, 255, 255, 0.25);
    --navbar-padding: 1rem;
    --navbar-box-shadow: none;
    --navbar-border: 1px solid rgba(255, 255, 255, 0.35);
    --navbar-icon-height: 40px;
    --navbar-main-logo-height: 52px;
}

.navbar-logo .navbar-icon {
    max-height: 40px;
}

.navbar-logo .navbar-main-logo {
    max-height: 52px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2d2d2d;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==========================================
   Top Bar
   ========================================== */

.top-bar {
    background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   Navigation Bar
   ========================================== */

.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(7px);
    border-bottom: var(--navbar-border);
    box-shadow: var(--navbar-box-shadow);
    padding: var(--navbar-padding) 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.navbar.sticky {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo img {
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.navbar-logo .navbar-icon {
    height: var(--navbar-icon-height);
    transition: height 0.3s ease;
}

.navbar-logo .navbar-main-logo {
    height: var(--navbar-main-logo-height);
    transition: height 0.3s ease;
}

.navbar.sticky .navbar-icon {
    height: 24px;
}

.navbar.sticky .navbar-main-logo {
    height: 40px;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.navbar-link {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #E94B83;
}

.navbar-button {
    background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.navbar-button:hover {
    opacity: 0.9;
}

/* Mobile: zvetsena navbar; top bar zůstává viditelná stále */
@media (max-width: 768px) {
    .navbar {
        background: transparent;
        padding: 1.25rem 0;
        transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
    }

    .navbar.sticky {
        background: white;
        padding: 0.75rem 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar-logo a {
        gap: 10px;
    }

    .navbar-logo .navbar-icon {
        height: 40px;
    }

    .navbar-logo .navbar-main-logo {
        height: 52px;
    }

    .navbar.sticky .navbar-icon {
        height: 24px;
    }

    .navbar.sticky .navbar-main-logo {
        height: 40px;
    }

    .navbar-menu {
        display: flex;
        gap: 0.5rem;
    }

    .navbar-link {
        display: none;
    }

    .navbar-link.back-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
        color: white !important;
        border-radius: 0.5rem;
    }

    .navbar-link.back-btn:hover {
        opacity: 0.9;
    }

    .mobile-back-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
        color: white !important;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        width: auto;
    }

    .mobile-back-btn:hover {
        opacity: 0.9;
        text-decoration: none;
        color: white !important;
    }

    .navbar.show-menu .navbar-menu {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        z-index: 40;
    }
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    height: 520px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.hero:hover {
    filter: brightness(1.1);
}

@media (min-width: 768px) {
    .hero {
        height: 100vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
}

.hero-background-front {
    z-index: 1;
    opacity: 1;
}

.hero-background-back {
    z-index: 0;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 2rem;
}

.hero-logo {
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-logo {
        max-width: 420px;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-button {
    background: white;
    color: #E94B83;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Animations
   ========================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Offer Section
   ========================================== */

.offer-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.offer-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.offer-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.offer-grid .offer-card:nth-child(1) .offer-image {
    background-position: center 18%;
}

.offer-grid .offer-card:nth-child(3) .offer-image {
    background-position: center 25%;
}

.offer-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.offer-content p {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.more-info-btn {
    display: inline-block;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
}

.more-info-btn:hover {
    transform: translateY(-2px);
}

.more-info-btn:active {
    transform: translateY(0);
}

/* Bubble Waffles - Blue */
.more-info-btn.bubble-btn {
    background: linear-gradient(135deg, #64B5F6 0%, #42A5F5 100%);
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.25);
}

.more-info-btn.bubble-btn:hover {
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.35);
}

/* Cakes - Pink */
.more-info-btn.cakes-btn {
    background: linear-gradient(135deg, #F48FB1 0%, #EC407A 100%);
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.25);
}

.more-info-btn.cakes-btn:hover {
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.35);
}

/* Ice Cream - Yellow/Orange */
.more-info-btn.icecream-btn {
    background: linear-gradient(135deg, #FFB74D 0%, #FFA726 100%);
    box-shadow: 0 4px 12px rgba(255, 183, 77, 0.25);
}

.more-info-btn.icecream-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 183, 77, 0.35);
}

/* Pastries - Orange */
.more-info-btn.pastries-btn {
    background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%);
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.25);
}

.more-info-btn.pastries-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.35);
}

/* ==========================================
   About Section
   ========================================== */

.about-section {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-grid.reverse {
        direction: rtl;
    }

    .about-grid.reverse > * {
        direction: ltr;
    }
}

.about-grid.cakes {
    background: linear-gradient(120deg, #ffffff 0%, #ffeaf2 45%, #f7c3de 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.about-grid.cakes .about-text,
.about-grid.cakes .about-image {
    background: transparent;
}

.about-grid.cakes .about-text {
    padding: 0.5rem;
}

.about-grid.bubble {
    background: linear-gradient(120deg, #ffffff 0%, #e7f4ff 45%, #bbe7ff 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.about-grid.bubble .about-text,
.about-grid.bubble .about-image {
    background: transparent;
}

.about-grid.bubble .about-text {
    padding: 0.5rem;
}

.about-grid.icecream {
    background: linear-gradient(120deg, #ffffff 0%, #fff5e8 45%, #ffdab0 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.about-grid.icecream .about-text,
.about-grid.icecream .about-image {
    background: transparent;
}

.about-grid.icecream .about-text {
    padding: 0.5rem;
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E94B83;
    margin-bottom: 1rem;
}

.about-grid.reverse .about-text h3 {
    color: #F2A900;
}

.about-text p {
    color: #555555;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-grid.bubble .about-image img,
.about-grid.icecream .about-image img {
    object-position: center 25%;
}

/* ==========================================
   Quality Section
   ========================================== */

.quality-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #fdf0f5, #fff8f0);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quality-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #999;
}

.quality-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-card:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
}

.quality-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.quality-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #999;
    border-radius: 2px;
}

/* Color Variants */

.quality-card:nth-child(1) {
    border-top-color: #6BAA7C;
}

.quality-card:nth-child(1) .quality-icon {
    background: #D5F1E8;
    color: #6BAA7C;
}

.quality-card:nth-child(1) h3 {
    color: #6BAA7C;
}

.quality-card:nth-child(1) h3::after {
    background: #D5F1E8;
}

.quality-card:nth-child(2) {
    border-top-color: #E874A4;
}

.quality-card:nth-child(2) .quality-icon {
    background: #F5D7E8;
    color: #E874A4;
}

.quality-card:nth-child(2) h3 {
    color: #E874A4;
}

.quality-card:nth-child(2) h3::after {
    background: #F5D7E8;
}

.quality-card:nth-child(3) {
    border-top-color: #E8933F;
}

.quality-card:nth-child(3) .quality-icon {
    background: #F7E3D1;
    color: #E8933F;
}

.quality-card:nth-child(3) h3 {
    color: #E8933F;
}

.quality-card:nth-child(3) h3::after {
    background: #F7E3D1;
}

.quality-card p {
    color: #666666;
    font-size: 0.95rem;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    color: #E94B83;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #E94B83;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #F2A900;
}

.contact-label {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.25rem;
}

.hours-table {
    font-size: 0.95rem;
    color: #555555;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.hours-table td:first-child {
    font-weight: 600;
    min-width: 60px;
}

/* ==========================================
   Contact Form Section
   ========================================== */

.contact-form-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E94B83;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin: 2rem auto;
    max-width: 600px;
}

.footer .hours-table {
    color: #999999;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E94B83 0%, #F2A900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999999;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E94B83;
}

.footer-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 75, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E94B83;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #E94B83;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* ==========================================
   Product Section (Jednotlivé stránky produktů)
   ========================================== */

.product-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    min-height: calc(100vh - 400px);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.product-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 300px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: white;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    line-height: 1.3;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #F2A900;
}


/* ==========================================
   Modal - Image Zoom
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #E94B83;
}

.product-image {
    cursor: pointer;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-text h3 {
        font-size: 1.25rem;
    }

    .navbar-logo h1 {
        font-size: 1rem;
    }
}
