/*
Theme Name: Pullcave
Theme URI: https://pullcave.com
Author: Pullcave Team
Author URI: https://pullcave.com
Description: A custom Pokémon card e-commerce theme for Pullcave.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pullcave
Tags: e-commerce, pokemon, cards, woocommerce
*/

body {
    background-color: #f5f5f5;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

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

/* Header Layout */
header.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left: Logo */
.site-branding {
    flex: 1;
    text-align: left;
}

.site-title {
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: #e3350d; /* Pokemon Red */
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.site-description {
    margin: 0;
    font-size: 0.875rem;
    color: #777;
}

/* Center: Menu */
.main-navigation {
    flex: 2;
    text-align: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.main-navigation ul li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover {
    color: #e3350d;
}

/* Right: Actions */
.header-actions {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: #e3350d;
}

.cart-count {
    background-color: #e3350d;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Footer */
footer.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer.site-footer a {
    color: #fff;
}
