/* assets/css/style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #faf7f2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e2a2e;
    line-height: 1.5;
}
h1, h2, h3, .logo, .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}
.site-header {
    background: #1e2a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 1.6rem;
    color: #c49a6c;
    text-decoration: none;
    letter-spacing: 1px;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    color: #c49a6c;
}
.cart-icon {
    background: none;
    border: 1px solid #c49a6c;
    color: #c49a6c;
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    transition: 0.2s;
}
.cart-icon:hover {
    background: #c49a6c;
    color: white;
}
.hero {
    background: linear-gradient(135deg, #2c3e2f 0%, #1e2a2e 100%);
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 3rem;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; }
.btn-gold {
    background: #c49a6c;
    color: white;
    border: none;
    border-radius: 3rem;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-gold:hover {
    background: #b07d4c;
    transform: translateY(-2px);
}
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e2f;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.category-tile {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #1e2a2e;
    transition: all 0.3s;
    border: 1px solid #ede6dc;
}
.category-tile:hover {
    transform: translateY(-6px);
    border-color: #c49a6c;
    box-shadow: 0 12px 20px rgba(0,0,0,0.05);
}
.category-tile i { font-size: 2.2rem; color: #c49a6c; margin-bottom: 0.5rem; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.product-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #ede6dc;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
    border-color: #c49a6c;
}
.product-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.product-card:hover .product-img { transform: scale(1.03); }
.product-info { padding: 1rem; }
.product-name { font-weight: 600; margin-bottom: 0.25rem; }
.product-price { font-weight: 700; color: #c49a6c; font-size: 1.2rem; }
.sidebar {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid #ede6dc;
}
.sidebar h4 { font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar li a {
    display: block;
    padding: 0.4rem 0;
    color: #1e2a2e;
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar li a:hover, .sidebar li a.active { color: #c49a6c; font-weight: 500; }
.filter-bar {
    background: white;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}
.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1050;
    padding: 1.5rem;
    overflow-y: auto;
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.cart-overlay.show { display: block; }
.cart-item { border-bottom: 1px solid #ede6dc; padding: 0.8rem 0; }
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.pagination a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: white;
    border-radius: 2rem;
    text-decoration: none;
    color: #1e2a2e;
    border: 1px solid #ede6dc;
}
.pagination a.active, .pagination a:hover {
    background: #c49a6c;
    color: white;
    border-color: #c49a6c;
}
.site-footer {
    background: #1e2a2e;
    color: #8b9a8b;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 1rem; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .cart-sidebar { width: 100%; right: -100%; }
}