/**
Theme Name: Hello Reroot (Child Hello Elementor)
Theme URI: #
Description: Theme for Reroot - Child Theme for Hello Elementor Theme
Template:    hello-elementor
Author: Lima Multimedia
Author URI: https://limamultimedia.com
Version: 1.0.0
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: lima
**/

@import url('https://fonts.googleapis.com/css?family=Poppins');

:root {
    --primary-green-1: #445347;
    --primary-green-2: #5b6956;
    --primary-green-3: #707a68;
    --neutral-color-1: #f5f2ed;
    --neutral-color-2: #e9e3da;
    --neutral-color-3: #dde3ea;
    --neutral-color-4: #f2ebdd;
    --primary-color-text:#2a2926;
    --second-color-text:#faf8f5;

    --radius-item: 20px;
}

/* body {
    font-family: 'Poppins', sans-serif !important;
} */

.lm-woo-archive-el {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.lm-tab-container {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.lm-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.lm-tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.lm-tab-item {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    padding-bottom: 12px;
    position: relative;
    transition: color 0.2s;
}

.lm-tab-item:hover,
.lm-tab-item.active {
    color: #111;
}

.lm-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111;
}

.lm-tab-sort {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Grid Layout */
.lm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.lm-product-card {
    background: #fff;
    transition: transform 0.2s;
    display: block;
}

.lm-card-image {
    position: relative;
    background-color: #f7f5f0;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.lm-card-image img {
    max-height: 240px;
    object-fit: contain;
    width: auto;
}

/* Badge UI */
.lm-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2d3a2f;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

/* Info Area */
.lm-card-info {
    padding: 20px;
}

.lm-product-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 500;
}

.lm-product-title a {
    color: #111;
    text-decoration: none;
}

.lm-product-meta {
    color: #777;
    font-size: 14px;
    margin: 0 0 15px 0;
}

/* Artist Meta Section */
.lm-artist-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.lm-artist-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.lm-artist-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.artist-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.artist-location {
    font-size: 12px;
    color: #888;
}

/* Action Link */
.lm-btn-action {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lm-btn-action .arrow {
    transition: transform 0.2s;
}

.lm-btn-action:hover .arrow {
    transform: translateX(4px);
}