/* themes/store.css */
:root {
    --bg-color: #f8f9fa;
    --text-color: #333;
    --border-color: #eee;
    --primary: #ff6600;
    --card-bg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Arial, sans-serif; }
body { background-color: var(--bg-color); color: var(--text-color); }

/* Navigation */
.top-nav { background: #fff; padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo h2 { margin: 0; font-size: 24px; color: #333; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.btn-account { border: 2px solid #dc3545; color: #dc3545; padding: 8px 15px; border-radius: 20px; text-decoration: none; font-weight: bold; }
.btn-account:hover { background: #dc3545; color: #fff; }

/* Store Layout */
.store-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

/* Toolbar */
.toolbar { background: #fff; padding: 15px 25px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid var(--border-color); }
.toolbar select { padding: 8px; border: 1px solid #ddd; border-radius: 4px; outline: none; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Product Cards */
.product-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid var(--border-color); transition: transform 0.2s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.product-image img { width: 100%; height: auto; display: block; border-bottom: 1px solid #eee; }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: #222; }
.product-info .price { font-weight: bold; color: #444; font-size: 1.1rem; }
.btn-buy {
    display: inline-block;
    background: var(--primary); /* Orange color */
    color: #fff !important;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}
