
:root {
    --primary-black: #202223;
    --accent-red: #E84C3D;
    --unico-pink: #f8dcdc;
    --soft-bg: #fceeee;
    --font-main: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --header-height: 70px;
}


* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: var(--font-main);
    color: var(--primary-black);
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-bar {
    background-color: var(--unico-pink);
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
}

.header-flex {
    display: grid;

    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    width: 100%;
}

.burger-icon {
    grid-column: 1;
    background: none;
    border: none;
    width: 22px;
    height: 14px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.burger-icon span, 
.burger-icon span::before, 
.burger-icon span::after {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--primary-black);
    position: absolute;
    transition: all 0.3s ease;
}

.burger-icon span::before { content: ""; top: -6px; }
.burger-icon span::after { content: ""; top: 6px; }

.burger-icon:hover span::before { width: 70%; }
.burger-icon:hover span::after { width: 45%; }

.logo { grid-column: 2; }
.logo a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 22px;
}

.header-links {
    grid-column: 3;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.text-link {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero {
    height: 80vh;
    background-color: var(--soft-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary-black);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.products-section { padding: 80px 0; }
.section-heading { text-align: center; letter-spacing: 4px; margin-bottom: 50px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item { text-align: center; }
.product-media { position: relative; aspect-ratio: 1/1.2; overflow: hidden; background: #f9f9f9; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-item:hover img { transform: scale(1.05); }

.product-media {
    position: relative; 
    overflow: hidden;
    background: #f9f9f9;
}


.badge-sale {
    position: absolute;
    top: 15px;        
    left: 15px;         
    z-index: 10;        

    background-color: var(--accent-red); 
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px; 
    pointer-events: none; 
}


.btn-atc {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--primary-black);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.4s ease;
}

.btn-atc:hover {
    background: var(--primary-black);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}


.categories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 80px; }
.category-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    transition: 0.4s;
}
.category-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.category-name { position: relative; z-index: 2; letter-spacing: 2px; }

.footer {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo { font-weight: 800; letter-spacing: 4px; margin-bottom: 25px; font-size: 20px; }
.footer-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 25px; color: #999; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.footer-links a:hover { opacity: 0.5; }

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--primary-black);
    max-width: 300px;
}
.newsletter-form input { border: none; outline: none; flex-grow: 1; padding: 10px 0; font-family: inherit; }
.newsletter-form button { background: none; border: none; font-size: 20px; cursor: pointer; }

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    padding-top: 20px; 
    border-top: 1px solid #f8f8f8; 
    color: #aaa; 
    font-size: 10px; 
}

@media (max-width: 990px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .categories-grid { grid-template-columns: 1fr; }
    .header-links { display: none; }
}