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

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #fafbfc;
}

.fdr-topbar {
    background: linear-gradient(to right, #f7f9fb, #ffffff);
    padding: 18px 0;
    border-bottom: 2px solid #e3e8ef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.fdr-location-query {
    max-width: 420px;
}

.fdr-geo-link {
    color: #1e7fc1;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fdr-geo-link:hover {
    color: #155a8a;
    transform: translateX(3px);
}

.fdr-hero-wrap {
    background: radial-gradient(ellipse at top left, #dff3fb 0%, #f4f9fd 50%, #e6f4fb 100%);
    padding: 75px 0 80px;
    position: relative;
    overflow: hidden;
}

.fdr-hero-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.fdr-visual-frame {
    background: linear-gradient(145deg, #ffffff, #f8fbfd);
    border: 4px solid #1e88e5;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.15), 
                0 4px 12px rgba(0, 0, 0, 0.08);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.fdr-visual-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 16px 48px rgba(30, 136, 229, 0.2), 
                0 6px 16px rgba(0, 0, 0, 0.1);
}

.fdr-visual-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.fdr-main-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #0a3d2e;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fdr-tagline {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 28px;
    font-weight: 400;
}

.fdr-beverage-zone {
    background: radial-gradient(ellipse at bottom right, #e1f5e8 0%, #f2f9f4 50%, #e8f5ed 100%);
    padding: 75px 0 80px;
    position: relative;
    overflow: hidden;
}

.fdr-beverage-zone::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.fdr-mega-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #1b5e35;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.fdr-description {
    font-size: 1.05rem;
    color: #4a5f6d;
    margin-top: 28px;
    line-height: 1.7;
    max-width: 520px;
}

.fdr-beverage-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.fdr-beverage-visual img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .fdr-main-headline {
        font-size: 2.4rem;
    }
    
    .fdr-mega-heading {
        font-size: 3rem;
    }

    .fdr-visual-frame {
        transform: none;
    }
}

@media (max-width: 768px) {
    .fdr-main-headline {
        font-size: 2rem;
    }
    
    .fdr-mega-heading {
        font-size: 2.2rem;
    }

    .fdr-hero-wrap,
    .fdr-beverage-zone {
        padding: 50px 0;
    }
}
