:root {
    --primary: #000000;
    --primary-hover: #1e293b;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --accent-success: #15a34a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: none;
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
}


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

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

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- Search & Category Bar --- */
.controls {
    max-width: 1400px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}


.search-box {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
    align-items: center;
}


.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    padding: 10px;
    outline: none;
}

/* --- Category Buttons --- */
/* --- Category Navigation (Top Horizontal) v1.10.0 --- */
.category-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
}

.category-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.subcategory-list {
    display: none; /* Só mostra se a categoria pai for ativa */
    justify-content: center;
    gap: 20px;
    width: 100vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-top: 50px;
    z-index: 100;
}

.category-group.active .subcategory-list {
    display: flex;
}


.subcategory-btn {
    text-align: center;
    padding: 5px 10px;
    border: none;
    background: transparent;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    color: #999999;
    cursor: pointer;
    transition: 0.2s;
}

.subcategory-btn:hover, .subcategory-btn.active {
    color: #000000;
    border-bottom: 1px solid #000000;
}




.category-btn {
    text-align: left;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #999999;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-btn:hover, .category-btn.active {
    color: #000000;
}


.category-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.category-btn:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.category-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}



.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* --- Product Grid --- */
/* --- Product Grid 4 Columns (Full Width) --- */
.catalog-container {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-height: 400px;
}




/* --- Product Cards --- */
.product-card {
    background: white;
    transition: transform 0.3s ease;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}



.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: #15a34a;
}


/* --- Badges & Versioning v1.1 --- */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000000;
    color: white;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}


.version-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.buy-btn {
    background: #15a34a;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(21, 163, 74, 0.3);
}

.buy-btn:hover {
    background: #16a34a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(21, 163, 74, 0.4);
}


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

.product-card {
    animation: fadeInUp 0.5s ease backwards;
}

/* Responsive */
@media (max-width: 768px) {
    .category-container { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 15px; scrollbar-width: none; }
    .category-container::-webkit-scrollbar { display: none; }
    .catalog-container { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
    .hero h1 { font-size: 2.2rem; }
}
/* --- LGPD & Cookie Banner Dolce Me --- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #000000;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.cookie-text a {
    color: #000000;
    font-weight: 800;
    text-decoration: underline;
}

.cookie-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #333333;
}

/* --- Legal Pages Styles --- */
.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
}

.legal-content h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 40px 0 20px;
    font-weight: 800;
}

.legal-content p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .cookie-container { flex-direction: column; text-align: center; gap: 15px; }
    .legal-page { padding: 0 20px; margin: 40px auto; }
}

/* --- Maintenance Mode Design v1.15.0 --- */
.maintenance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100000;
    padding: 20px;
}

.maintenance-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
    border-bottom: 4px solid #000000;
    padding-bottom: 10px;
}

.maintenance-box {
    max-width: 500px;
}

.maintenance-box h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-bottom: 20px;
}

.maintenance-box p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.maintenance-status {
    display: inline-block;
    padding: 8px 15px;
    background: #000000;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}


