/** Shopify CDN: Minification failed

Line 43:0 All "@import" rules must come first

**/
/* ========================================
   DOC JORDAN URBAN CLOTHING - HIGH VIBRATIONAL CSS
   Custom CSS for Shopify Theme
   ======================================== */

/* === COLOR PALETTE === */
:root {
    /* Primary Colors - Crown Chakra */
    --cosmic-purple: #2D1B69;
    --deep-violet: #4B0082;
    --electric-blue: #4169E1;

    /* Secondary Colors - Solar Plexus */
    --vibrant-gold: #FFD700;
    --warm-gold: #F4A900;

    /* Accent Colors */
    --healing-teal: #00CBA0;
    --passion-magenta: #FF006E;
    --cosmic-teal: #00D9FF;

    /* Urban Colors */
    --urban-orange: #FF6B35;
    --grounded-red: #D62828;

    /* Feminine Colors */
    --rose-quartz: #F8BBD0;
    --lavender: #E1BEE7;
    --sunset-coral: #FF8C94;

    /* Neutrals */
    --soft-white: #F8F9FA;
    --deep-space: #0A0E27;
    --card-dark: #1c1c3c;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--soft-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--electric-blue) 50%, var(--vibrant-gold) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    padding: 80px 20px;
}

/* Add background image overlay if using the generated hero image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('hero_background_1769337252709.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(138, 43, 226, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--vibrant-gold), var(--warm-gold));
    color: var(--deep-space);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
    color: var(--deep-space);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

/* === THREE LINE SHOWCASE === */
.three-line-showcase {
    padding: 80px 20px;
    /* UPDATED: Removed dark background, added vibrant high-vibe gradient */
    background: linear-gradient(135deg, var(--deep-violet) 0%, var(--electric-blue) 100%);
}

/* === GLOBAL BACKGROUND OVERRIDE (Fix 'Still Black' Issue) === */
body,
.gradient,
main,
.content-for-layout {
    background: linear-gradient(135deg, #1a0b2e 0%, #111135 100%) !important;
    background-attachment: fixed !important;
}

/* Force standard sections to be transparent so gradient shows */
.shopify-section:not(.hero-section),
section:not(.hero-section) {
    background-color: transparent !important;
    background: transparent !important;
}

/* Ensure text remains visible on dark gradient */
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span {
    color: var(--soft-white);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--vibrant-gold), var(--cosmic-teal), var(--passion-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* === GLASSMORPHISM CARDS === */
.collection-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.collection-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.collection-card:hover::before {
    opacity: 1;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .card-image {
    transform: scale(1.1);
}

/* Individual Collection Card Styles */
.collection-card.alkami {
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.3), rgba(75, 0, 130, 0.3));
}

.collection-card.alkami:hover {
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
}

.collection-card.skid-row-joe {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(214, 40, 40, 0.3));
}

.collection-card.skid-row-joe:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 215, 0, 0.2);
}

.collection-card.cali-divas {
    background: linear-gradient(135deg, rgba(248, 187, 208, 0.3), rgba(225, 190, 231, 0.3));
}

.collection-card.cali-divas:hover {
    box-shadow: 0 20px 60px rgba(248, 187, 208, 0.6), 0 0 40px rgba(255, 215, 0, 0.2);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, transparent 100%);
}

.card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-tagline {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.card-cta {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--deep-space);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: var(--vibrant-gold);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    color: var(--deep-space);
}

/* === ENERGY AURA EFFECTS === */
.energy-aura {
    position: relative;
}

.energy-aura::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.energy-aura.joy::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
}

.energy-aura.healing::after {
    background: radial-gradient(circle, rgba(0, 203, 160, 0.4) 0%, transparent 70%);
}

.energy-aura.peace::after {
    background: radial-gradient(circle, rgba(65, 105, 225, 0.4) 0%, transparent 70%);
}

.energy-aura.spiritual::after {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
}

.energy-aura:hover::after {
    opacity: 1;
}

/* === ANIMATIONS === */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(138, 43, 226, 0.4);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(138, 43, 226, 0.6);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-image-wrapper {
        height: 350px;
    }

    .three-line-showcase {
        padding: 60px 15px;
    }
}

/* === LOW BANDWIDTH OPTIMIZATION === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize for slow connections */
@media (max-width: 480px) {
    .hero-section::before {
        background-image: none;
        /* Remove background image on very small screens */
    }

    .card-image-wrapper {
        height: 300px;
    }
}