/*
Theme Name: Flavor Starter
Theme URI: https://datendirekt.de
Author: DataDirekt
Author URI: https://datendirekt.de
Description: Minimal blank canvas theme for WooCommerce. No styles, no opinions - just your HTML/CSS/JS.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: flavor-starter
Tags: woocommerce, minimal, blank, custom

Flavor Starter - A blank canvas theme for WooCommerce sites.
*/

/* ========== RESET - Remove all browser defaults ========== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ========== BASIC LAYOUT ========== */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* ========== MINIMAL HEADER (optional - you can override) ========== */
.site-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

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

.site-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* ========== MINIMAL NAV ========== */
.main-navigation ul {
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: #333;
    font-size: 14px;
}

.main-navigation a:hover {
    color: #05889A;
}

/* ========== MINIMAL FOOTER ========== */
.site-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* ========== WOOCOMMERCE BASIC FIXES ========== */
.woocommerce-page .site-content,
.woocommerce .site-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Remove default WooCommerce sidebar space */
.woocommerce #content,
.woocommerce-page #content {
    width: 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .site-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
