/*
Theme Name: Comprare Retatrutide Classic
Theme URI: https://compraretatrutide.com
Author: Dark Web Dev
Author URI: https://compraretatrutide.com
Description: Professional classic peptide research site theme with WooCommerce integration, custom payment gateways (WhatsApp, BTC, USDT), and multilanguage support. Clean green and white design with classic professional header.
Version: 2.0 (Classic)
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: comprare-retatrutide-classic
Tags: e-commerce, woocommerce, clean, modern, responsive, multilanguage, professional
*/

/*
===========================================
CSS VARIABLES - GREEN & WHITE CLASSIC THEME
===========================================
*/
:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #34d399;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-green-light: #d1fae5;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/*
===========================================
GLOBAL RESET & BASE STYLES
===========================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/*
===========================================
TOP BAR (CONTACT INFO)
===========================================
*/
.top-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--text-dark);
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/*
===========================================
MAIN HEADER (CLASSIC PROFESSIONAL)
===========================================
*/
.site-header {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/*
===========================================
SITE BRANDING / LOGO
===========================================
*/
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.site-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*
===========================================
MAIN NAVIGATION
===========================================
*/
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.3s;
}

.nav-menu > li > a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    transition: all 0.3s;
}

.sub-menu li a:hover {
    background: var(--bg-green-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/*
===========================================
CART BUTTON
===========================================
*/
.header-cart {
    flex-shrink: 0;
}

.cart-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.cart-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
}

.cart-icon {
    font-size: 1.25rem;
}

.cart-count {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
}

/*
===========================================
MOBILE MENU TOGGLE
===========================================
*/
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/*
===========================================
MOBILE NAVIGATION
===========================================
*/
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.3s;
    padding-top: 4rem;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: var(--bg-green-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/*
===========================================
RESPONSIVE HEADER
===========================================
*/
@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .logo-main {
        font-size: 1.25rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-wrapper {
        gap: 1rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .cart-text {
        display: none;
    }
    
    .cart-button {
        padding: 0.75rem 1rem;
    }
}

/*
===========================================
CONTENT AREA
===========================================
*/
.site-content {
    min-height: 60vh;
}

/* Continue with existing green theme styles from style-green.css... */
/*
Theme Name: Comprare Retatrutide Pro
Theme URI: https://compraretatrutide.com
Author: Dark Web Dev
Author URI: https://compraretatrutide.com
Description: Professional peptide research site theme with WooCommerce integration, custom payment gateways (WhatsApp, BTC, USDT), and multilanguage support via TranslatePress. Clean green and white design.
Version: 1.1
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: comprare-retatrutide
Tags: e-commerce, woocommerce, clean, modern, responsive, multilanguage
*/

/*
===========================================
CSS VARIABLES - GREEN & WHITE THEME
===========================================
*/
:root {
    --primary-color: #10b981;        /* Green */
    --secondary-color: #059669;      /* Darker green */
    --accent-color: #34d399;         /* Light green */
    --text-dark: #1f2937;            /* Almost black */
    --text-light: #6b7280;           /* Gray */
    --bg-white: #ffffff;             /* White */
    --bg-light: #f9fafb;             /* Very light gray */
    --bg-green-light: #d1fae5;       /* Very light green */
    --border-color: #e5e7eb;         /* Light gray border */
    --success-color: #10b981;        /* Green */
    --warning-color: #f59e0b;        /* Orange */
    --error-color: #ef4444;          /* Red */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/*
===========================================
GLOBAL RESET & BASE STYLES
===========================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/*
===========================================
LAYOUT CONTAINER
===========================================
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/*
===========================================
HEADER
===========================================
*/
.site-header {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--secondary-color);
}

.main-navigation {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.main-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.cart-link {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.cart-link:hover {
    background: var(--secondary-color);
}

/*
===========================================
BUTTONS
===========================================
*/
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary,
button.button,
.button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover,
button.button:hover,
.button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-green-light);
}

/*
===========================================
WOOCOMMERCE SHOP PAGE - CLEAN LAYOUT
===========================================
*/
.woocommerce-page {
    padding: 3rem 0;
    background: var(--bg-light);
}

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

/* Product Images */
.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Product Titles */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text-dark) !important;
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
    min-height: 2.4em;
}

.woocommerce ul.products li.product a {
    color: var(--text-dark);
}

.woocommerce ul.products li.product a:hover {
    color: var(--primary-color);
}

/* Product Prices */
.woocommerce ul.products li.product .price {
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    margin: 1rem 0;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-light);
    opacity: 0.6;
}

/* Add to Cart Buttons */
.woocommerce ul.products li.product .button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    width: 100%;
    margin-top: auto;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Product Badges */
.woocommerce span.onsale {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/*
===========================================
SINGLE PRODUCT PAGE
===========================================
*/
.woocommerce div.product {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.woocommerce div.product .product_title {
    color: var(--text-dark);
    font-size: 2rem;
}

.woocommerce div.product p.price {
    color: var(--primary-color) !important;
    font-size: 2rem;
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--text-dark);
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid var(--border-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 2px solid var(--border-color);
    background: var(--bg-light);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--bg-white);
    border-bottom-color: var(--bg-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--text-dark);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color);
}

/*
===========================================
CART & CHECKOUT
===========================================
*/
.woocommerce table.shop_table {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table th {
    background: var(--bg-green-light);
    color: var(--text-dark);
    padding: 1rem;
    font-weight: 600;
}

.woocommerce table.shop_table td {
    color: var(--text-dark);
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout .woocommerce {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

/* Cart Totals */
.woocommerce .cart-collaterals .cart_totals {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Checkout */
.woocommerce-checkout #payment {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.woocommerce-checkout #payment div.payment_box {
    background: var(--bg-green-light);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

/* All WooCommerce Buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*
===========================================
FOOTER
===========================================
*/
.site-footer {
    background: var(--bg-white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--primary-color);
}

/*
===========================================
WHATSAPP FLOAT BUTTON
===========================================
*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128C7E;
    color: white;
}

/*
===========================================
CARDS
===========================================
*/
.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-body {
    color: var(--text-dark);
}

/*
===========================================
FORMS
===========================================
*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/*
===========================================
ALERTS
===========================================
*/
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bg-green-light) !important;
    color: var(--text-dark) !important;
    border-left: 4px solid var(--primary-color) !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.woocommerce-error {
    background: #fee2e2 !important;
    border-left-color: var(--error-color) !important;
}

/*
===========================================
BADGES
===========================================
*/
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: var(--primary-color);
    color: white;
}

/*
===========================================
RESPONSIVE
===========================================
*/
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation {
        justify-content: center;
        gap: 1rem;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/*
===========================================
UTILITY CLASSES
===========================================
*/
.text-center { text-align: center; }
.text-dark { color: var(--text-dark); }
.text-green { color: var(--primary-color); }
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }

.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.p-2 { padding: 1rem; }

.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
