/* Main Theme Styles */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f37021;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-orange {
    background: #f37021;
    color: #fff;
}

.btn-orange:hover {
    background: #d65d1a;
}

.btn-yellow {
    background: #ffc107;
    color: #fff;
}

.btn-yellow:hover {
    background: #e0a800;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: #fff;
}

.hero-content h1 {
    line-height: 1.2;
}

/* Products */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #f37021;
}

.app-links img {
    height: 40px;
    margin-right: 10px;
    margin-top: 20px;
}

/* WooCommerce Custom Styles */
.woocommerce ul.products li.product .button {
    background-color: #f37021;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #d65d1a;
}

.woocommerce span.onsale {
    background-color: #ffc107;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #f37021;
    font-size: 1.5em;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #f37021;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #d65d1a;
}

/* Mobile Responsiveness */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0 !important;
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-inner {
        grid-template-columns: 1fr !important;
    }
    
    .header-buttons {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
    }
}
