/*
Theme Name: Fabryka Kavy v2
Theme URI: https://fabrykakavy.com
Author: FK Dev
Author URI: https://itiko.tech
Description: Custom lightweight theme for Fabryka Kavy
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fabrykakavy
Tags: custom-colors, custom-menu, featured-images, flexible-header, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* --- Base Variables --- */
:root {
    --fk-primary: #E21A1A; /* Red from brandbook */
    --fk-primary-dark: #D42B2B;
    --fk-black: #000000;
    --fk-black-light: #1A1A1A;
    --fk-white: #FFFFFF;
    --fk-gray-bg: #F5F5F5;
    --fk-blue-info: #4AABC5;
    --fk-yellow-badge: #F5C518;
    
    --fk-font-main: 'e-Ukraine Light', sans-serif;
    --fk-font-heading: 'e-Ukraine Medium', sans-serif;
}

body {
    font-family: var(--fk-font-main);
    color: var(--fk-black);
    background-color: var(--fk-white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fk-font-heading);
}

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

/* --- Product Card Basic Styles --- */
.fk-product-card {
    list-style: none;
    border: 1px solid #eaeaea;
    padding: 20px;
    position: relative;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.fk-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fk-product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fk-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    color: var(--fk-white);
    border-radius: 3px;
}

.fk-badge-red { background-color: var(--fk-primary); }
.fk-badge-yellow { background-color: var(--fk-yellow-badge); color: var(--fk-black); }

.fk-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.fk-product-title a {
    color: var(--fk-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.fk-product-taste {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.fk-product-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.fk-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--fk-primary);
}

.fk-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--fk-black);
    color: var(--fk-white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.fk-btn:hover {
    background-color: var(--fk-primary);
}
