/* Woo Theme Generator - Main Styles */
/* Design: DutyFreeTee Vibe (Dark Mode, Red Accents) */

:root {
    --wtg-primary: #E53E3E;
    /* Red-600 */
    --wtg-primary-hover: #C53030;
    --wtg-bg: #1A202C;
    /* Gray-900 */
    --wtg-card-bg: #2D3748;
    /* Gray-800 */
    --wtg-text: #FFFFFF;
    --wtg-text-muted: #A0AEC0;
    --wtg-border: #4A5568;
}

body.wtg-theme-active {
    background-color: var(--wtg-bg);
    color: var(--wtg-text);
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Header */
.wtg-header {
    background-color: #000000;
    border-bottom: 2px solid var(--wtg-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wtg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wtg-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wtg-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--wtg-text);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

.wtg-logo span {
    color: var(--wtg-primary);
}

.wtg-menu-link {
    color: var(--wtg-text);
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.wtg-menu-link:hover {
    color: var(--wtg-primary);
}

/* Product Grid */
.wtg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.wtg-card {
    background-color: var(--wtg-card-bg);
    border: 1px solid var(--wtg-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.wtg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border-color: var(--wtg-primary);
}

.wtg-card-image {
    width: 100%;
    height: 250px;
    background-color: #fff;
    /* White bg for product images usually looks best even in dark mode */
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtg-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wtg-card-body {
    padding: 1rem;
}

.wtg-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--wtg-text);
}

.wtg-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wtg-primary);
}

.wtg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--wtg-primary);
    color: white;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Button */
.wtg-btn {
    display: inline-block;
    background-color: var(--wtg-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.wtg-btn:hover {
    background-color: var(--wtg-primary-hover);
}

.wtg-btn-block {
    display: block;
    width: 100%;
}