/*
Theme Name: Abhay Agency
Theme URI: https://abhayagency.com
Author: Abhay Agency Team
Author URI: https://abhayagency.com
Description: Premium, fully customizable, high-performance WooCommerce theme optimized for Printer and Printer Accessories.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: abhay-agency
Tags: woocommerce, e-commerce, custom-colors, custom-menu, featured-images, translation-ready, accessibility-ready
*/

/* 
 * 1.0 - Normalize & Base 
 * Add minimal CSS reset or normalize here.
 */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* 
 * 2.0 - Header 
 */
.site-header {
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-top-bar {
    background: #f8f9fa;
    padding: 8px 20px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

.header-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.header-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

