/* main.css - Extracted styles from index.html */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.hero {
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.hero:hover::before {
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.25);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-panel {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.cart-panel.open {
    transform: translateX(0);
}

.animate-fly-in {
    opacity: 0;
    transform: translateY(50px);
    animation: fly-in 1s forwards;
}

@keyframes fly-in {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 160px;
    z-index: 1000;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #333;
}

.dropdown:hover .dropdown-content {
    display: block;
}
