/*
Theme Name: 2046shop
Description: Italian minimalist WooCommerce theme for European/American customers
Author: Your Name
Version: 1.0
*/
body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fff;
    color: #111;
    margin: 0;
}
::-webkit-scrollbar {
    width: 8px;
    background: #eee;
}
::-webkit-scrollbar-thumb {
    background: #222;
}
.sidebar {
    background: #fff;
    border-right: 1px solid #eee;
    min-width: 240px;
    max-width: 320px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-item {
    border-bottom: 1px solid #eee;
}
.category-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    transition: background 0.2s;
}
.category-toggle:hover {
    background: #f5f5f5;
}
.category-submenu {
    padding-left: 24px;
    display: none;
    animation: fadeIn 0.3s;
}
.category-submenu.open {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.search-bar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 32px 0 24px 0;
}
.search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 18px;
    border: 1px solid #222;
    border-radius: 0;
    background: #fff;
    color: #111;
}
.search-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0;
    margin-left: 8px;
}
.top-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 0 0 0;
}
.action-link {
    color: #111;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #111;
    background: #fff;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}
.action-link:hover {
    background: #111;
    color: #fff;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0;
}
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 16px;
    text-align: center;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-card img {
    max-width: 100%;
    max-height: 160px;
    object-fit: cover;
    margin-bottom: 12px;
}
.ai-chat {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}
.hot-products, .recently-viewed {
    margin: 32px 0;
}
.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111;
}
