/* Additional Theme Styles */

/* Header Styles */
.site-header {
    background: var(--background-color);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    color: var(--text-color);
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Cart Icon */
.header-cart {
    position: relative;
}

.cart-icon {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: var(--secondary-bg);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-widgets {
    margin-bottom: 40px;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

/* Buttons */
.button,
button,
input[type="submit"],
.wp-block-button__link {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* WooCommerce Styles */
.woocommerce-page {
    padding: 40px 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.woocommerce ul.products li.product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
}

.woocommerce ul.products li.product .price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.woocommerce .button {
    background: var(--primary-color);
}

.woocommerce .button:hover {
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}
