/* ============================================================================
   APPAREL SELECTION COMPONENTS - DARK THEME
   Dark theme overrides for apparel selection UI
   Used by: store/index.php and other pages with dark backgrounds
   Requires: apparel-selection.css (load base styles first)
   ============================================================================ */

/* Dark theme overrides - for pages with dark backgrounds */
.size-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    width: 10%;
    flex: 0 0 10%;
}

.size-btn:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.size-btn:hover {
    background: rgba(253, 226, 49, 0.2);
    color: #fde231;
}

.gender-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.gender-btn:hover {
    background: rgba(253, 226, 49, 0.2);
    color: #fde231;
}

.option-section label {
    color: #ccc;
}

/* Logo and Design buttons */
.logo-btn,
.design-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.logo-btn:hover,
.design-btn:hover {
    background: rgba(253, 226, 49, 0.2);
    color: #fde231;
}

.logo-btn.active,
.design-btn.active {
    background: #fde231;
    color: #222;
    border-color: #fde231;
}

.color-label {
    color: #ccc;
}

.quantity-input {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* T-shirt preview overlay */
.tshirt-preview {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.tshirt-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.tshirt-preview #tshirt-logo {
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================================================
   END APPAREL SELECTION COMPONENTS - DARK THEME
   ============================================================================ */