/*
Theme Name: Secure Corp Store
Author: Hubi Security Labs
Description: A highly complex store theme for networking hardware. (Educational: Intentional vulnerabilities included for testing).
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: secure-corp
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1a237e;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

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

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card h3 {
    margin: 10px 0;
    color: #1a237e;
}

.price {
    font-weight: bold;
    color: #d32f2f;
    font-size: 1.2em;
}

.btn-buy {
    display: block;
    background: #1a237e;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

footer {
    background: #263238;
    color: #b0bec5;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.main-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 30px;
}

.sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar h4 {
    border-bottom: 2px solid #1a237e;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #1a237e;
}

.brand-tree ul {
    list-style: none;
    padding-left: 15px;
}

.brand-tree > ul {
    padding-left: 0;
}

.brand-tree li {
    margin: 10px 0;
}

.brand-tree a {
    text-decoration: none;
    color: #555;
    font-size: 0.95em;
    transition: color 0.2s;
}

.brand-tree a:hover {
    color: #1a237e;
    font-weight: bold;
}
