:root {
    --color-bg: #fadadd;
    --color-text: #4b3621;
    --color-glass-light: rgba(244, 240, 235, 0.6);
    /* #f4f0eb with opacity */
    --color-glass-border: rgba(255, 255, 255, 0.4);
    --color-white-translucent: rgba(255, 255, 255, 0.25);

    /* Tinted with brown */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    /* Removed static background color */
    color: var(--color-text);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    /* Ensure footer stays at bottom if content is short */
}

/* Background Slider */
#background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darker fade overlay */
    z-index: 1;
    /* Above images, below content */
}

/* Glassmorphism Container */
.glass-container {
    background: rgba(244, 240, 235, 0.75);
    /* Slight opacity increase for better contrast against dark bg */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    /* Slightly tighter radius */

    padding: 40px 30px;
    /* Compact padding */
    width: 90%;
    max-width: 480px;
    /* Guideline: 480px max width */
    min-height: auto;
    /* Remove min-height to fit content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-logo-text {
    max-width: 200px;
    /* Keep it compact per guidelines */
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Subtle chocolate shadow */
}

/* Content */
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap */
    flex-grow: 1;
}

.tagline {
    font-family: var(--font-body);
    /* Guideline: Modern sans-serif */
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--color-text);
    font-weight: 400;
}

.tagline span {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #3e2b1a;
    font-weight: 700;
    text-decoration: none;
    /* Removed underline for cleaner look */
}

/* Product Image */
.product-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 1rem 0;
}

.product-img {
    width: 97px;
    height: 94px;
    object-fit: contain;
    /* Ensure aspect ratio is preserved if source differs */
    border-radius: 16px;
    /* Softens image if it's rectangular */
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Info Grid */
.info-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

.info-card {
    min-width: 140px;
    /* Smaller width */
    background: rgba(242, 242, 242, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Animation from guidelines */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);

}

.icon-img {
    width: 32px;
    /* Smaller icons */
    height: 32px;
    margin-bottom: 0.25rem;
    object-fit: contain;

}

.info-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.info-card p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
    display: none;
    /* Hide phone/handle text for cleaner look, as requested guideline implies "buttons" */
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .glass-container {
        padding: 1.5rem;
        width: 95%;
    }
}