/*
 Theme Name:   Helios Clothing Child
 Theme URI:    https://heliosclothingco.com
 Description:  Custom Streetwear Theme for Helios Clothing Co
 Author:       Jude Fontes
 Template:     storefront
 Version:      1.0.0
*/
/* ==========================================================================
   Helios Clothing Co - Modern Streetwear Theme
   ========================================================================== */

:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #141414;
    --border-dark: #242424;
    --text-pure: #ffffff;
    --text-muted: #888888;
    --accent-copper: #d48a56;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
}

.store-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 1. Hero */
.clothing-hero {
    position: relative;
    padding: 8rem 1.5rem 6rem;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--border-dark);
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--accent-copper);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-pure);
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--text-pure);
    color: #000;
    padding: 0.85rem 2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-copper);
    color: #fff;
    transform: translateY(-2px);
}

/* 2. Product Grid */
.collection-section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.sub-heading {
    font-size: 0.8rem;
    color: var(--accent-copper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2rem;
    margin: 0.25rem 0 0;
}

.view-all-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--text-pure);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.apparel-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.apparel-card:hover {
    border-color: var(--accent-copper);
    transform: translateY(-4px);
}

.card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #181818;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apparel-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.badge-drop {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 3px;
}

.card-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-copper);
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.15rem;
    margin: 0 0 1rem;
}

.product-name a {
    color: var(--text-pure);
    text-decoration: none;
}

.product-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-quick-view {
    color: var(--text-pure);
    background: #222;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-quick-view:hover {
    background: var(--accent-copper);
}

/* 3. Pillars */
.craft-pillars-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: #0d0d0d;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.pillar-card .pillar-num {
    color: var(--accent-copper);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pillar-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 4. CTA */
.clothing-cta {
    padding: 6rem 0;
}

.cta-box {
    text-align: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-dark);
    padding: 3.5rem 2rem;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Fallback placeholder box */
.no-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}