/*
Theme Name: Snackems
Theme URI: https://snackems.com
Author: Snackems Team
Author URI: https://snackems.com
Description: A professional WordPress theme for Snackems with full WooCommerce and Elementor support. Built with OOP architecture for performance and extensibility.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
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: snackems
Tags: e-commerce, woocommerce, elementor, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

Snackems WordPress Theme, Copyright 2026 Snackems Team
Snackems is distributed under the terms of the GNU GPL
*/

/* CSS Variables - Soba Design System */
:root {
    /* Colors */
    --soba-primary: #D97706;
    --soba-primary-dark: #B45309;
    --soba-primary-light: #FCD34D;

    --soba-secondary: #059669;
    --soba-secondary-dark: #047857;

    --soba-text-primary: #1d140c;
    --soba-text-secondary: #666;
    --soba-text-tertiary: #999;

    --soba-bg-primary: #ffffff;
    --soba-bg-secondary: #f9fafb;
    --soba-bg-tertiary: #f5f5f5;
    --soba-bg-card: #ffffff;

    --soba-border-light: #e5e5e5;
    --soba-border-medium: #d1d5db;

    /* Spacing */
    --soba-space-1: 0.25rem;
    --soba-space-2: 0.5rem;
    --soba-space-3: 0.75rem;
    --soba-space-4: 1rem;
    --soba-space-6: 1.5rem;
    --soba-space-8: 2rem;
    --soba-space-12: 3rem;
    --soba-space-16: 4rem;

    /* Typography */
    --soba-text-xs: 0.75rem;
    --soba-text-sm: 0.875rem;
    --soba-text-base: 1rem;
    --soba-text-lg: 1.125rem;
    --soba-text-xl: 1.25rem;
    --soba-text-2xl: 1.5rem;
    --soba-text-3xl: 1.875rem;
    --soba-text-4xl: 2.25rem;
    --soba-text-5xl: 3rem;

    /* Border Radius */
    --soba-radius-sm: 0.25rem;
    --soba-radius-md: 0.375rem;
    --soba-radius-lg: 0.5rem;
    --soba-radius-xl: 0.75rem;
    --soba-radius-2xl: 1rem;
    --soba-radius-full: 9999px;

    /* Transitions */
    --soba-transition-fast: 150ms ease;
    --soba-transition-base: 200ms ease;
    --soba-transition-slow: 300ms ease;

    /* Shadows */
    --soba-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --soba-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --soba-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --soba-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--soba-text-base);
    line-height: 1.6;
    color: var(--soba-text-primary);
    background-color: var(--soba-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.snackems-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--soba-space-4);
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress Core Alignment */
.alignleft {
    float: left;
    margin-right: var(--soba-space-4);
}

.alignright {
    float: right;
    margin-left: var(--soba-space-4);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Links */
a {
    color: var(--soba-primary);
    text-decoration: none;
    transition: color var(--soba-transition-fast);
}

a:hover {
    color: var(--soba-primary-dark);
}

/* Buttons */
.soba_button,
button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    padding: var(--soba-space-3) var(--soba-space-6);
    background-color: var(--soba-primary);
    color: white;
    border: none;
    border-radius: var(--soba-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--soba-transition-fast);
}

.soba_button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--soba-primary-dark);
    transform: translateY(-1px);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: var(--soba-space-3);
    border: 1px solid var(--soba-border-light);
    border-radius: var(--soba-radius-md);
    font-family: inherit;
    font-size: var(--soba-text-base);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--soba-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: var(--soba-space-4);
}

.mb-4 {
    margin-bottom: var(--soba-space-4);
}

.my-4 {
    margin-top: var(--soba-space-4);
    margin-bottom: var(--soba-space-4);
}

.pt-4 {
    padding-top: var(--soba-space-4);
}

.pb-4 {
    padding-bottom: var(--soba-space-4);
}

.py-4 {
    padding-top: var(--soba-space-4);
    padding-bottom: var(--soba-space-4);
}

.woocommerce-breadcrumb {
    display: none !important;
}

.elementor-page #masthead .snackems-container,
.elementor-page .site-footer .snackems-container,
#masthead .snackems-container,
.site-footer .snackems-container {
    max-width: 1280px;
}

.footer-widget-area .menu li a {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    display: inline-block;
}

.footer-widget-area .menu li {
    margin-bottom: 8px;
}

.footer-widgets {
    padding: 0 var(--soba-space-4);
}

.footer-widget-area img {
    margin-bottom: 15px;
}