:root {
    --primary: #1a1a1a;
    --secondary: #ff3e6c;
    --accent: #00d2ff;
    --bg: #ffffff;
    --text: #333333;
    --light-gray: #f8f8f8;
    --luxury-gold: #c5a059;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.announcement-bar {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--secondary);
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.cart-icon {
    position: relative;
}

.cart-icon span {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/hero_banner_fravegga_1775075012278.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    color: #fff;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.tag {
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}

/* Flash Sale */
.flash-sale {
    background: #ffecf1;
    padding: 20px 0;
    border-bottom: 1px solid #ffe1e8;
}

.flash-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.flash-header h2 {
    font-size: 1.2rem;
    color: var(--secondary);
}

#countdown {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary);
}

/* Product Section */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.section-title span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 5px;
    font-weight: 900;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--light-gray);
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
}

.product-price span {
    text-decoration: line-through;
    color: #b1b1b1;
    font-size: 0.9rem;
    margin-left: 10px;
    font-weight: 400;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
    margin-top: 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background: var(--secondary);
}

/* Social Feed */
.social-feed {
    padding: 80px 0;
    background: var(--light-gray);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #b1b1b1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.logo.inverted {
    color: #fff;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.8rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.5rem; }
    .main-nav { display: none; }
}
