/* ============================================
   YAWTEEF AI STYLIST - PRODUCTION STYLES
   Version: 2.0 (Clean & Optimized)
   ============================================ */

/* 1. MAIN SECTION LAYOUT */
.stylist-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fdfbf7 0%, #f1f5f9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 2. HEADER TYPOGRAPHY */
.stylist-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.stylist-header h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: #0f172a;
    letter-spacing: -1px;
    /* Gradient Text */
    background: -webkit-linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3. APP CONTAINER (The "Glass" Box) */
.stylist-app {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ffffff;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    min-height: 500px;
    transition: height 0.3s ease;
}

/* 4. VIEW STATES (Input vs Loading vs Results) */
.app-view {
    padding: 3rem;
    animation: fadeIn 0.4s ease;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 5. INPUT CONTROLS */
.selection-row {
    margin-bottom: 2rem;
}

.selection-row label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Button Group (Gender) */
.button-group {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 6px;
    border-radius: 16px;
    display: flex;
    gap: 0.5rem;
}

/* Grid Group (Occasions) */
.grid-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

/* Universal Select Button */
.select-btn {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: white;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.select-btn:hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
}

.select-btn.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

/* Text Area */
.prompt-box { margin-bottom: 2rem; }

.prompt-box textarea {
    width: 100%;
    background: #fdfbf7;
    border: 2px solid #e2e8f0;
    font-size: 1.1rem;
    padding: 1.5rem;
    border-radius: 16px;
    font-family: inherit;
    resize: none;
    height: 120px;
    transition: border 0.2s;
}

.prompt-box textarea:focus {
    border-color: #ec4899;
    background: white;
    outline: none;
}

/* Action Button */
.btn-find {
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
    border: none;
    border-radius: 50px;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-find:hover { transform: translateY(-2px); }

/* 6. LOADING STATE (Radar Animation) */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    text-align: center;
}

.scanner-radar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(79, 70, 229, 0.1);
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
    position: relative;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.1);
}

.radar-beam {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(79, 70, 229, 0.6) 360deg);
    animation: radarSpin 1.5s linear infinite;
}

.radar-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 2;
    animation: iconPulse 1.5s ease-in-out infinite;
}

.status-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #1e293b, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-sub {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

@keyframes radarSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes iconPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.15); } }

/* 7. RESULTS GRID (The Products) */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
}

.results-header h3 { font-size: 1.5rem; color: #0f172a; margin: 0; }

.btn-restart {
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-restart:hover { border-color: #cbd5e1; color: #0f172a; transform: translateX(-2px); }

/* The Grid */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
    border-color: #e0e7ff;
}

/* Badge (Tip) */
.match-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4f46e5;
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
    z-index: 10;
}

/* Image Wrapper */
.product-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08) rotate(-2deg);
}

/* Info Section */
.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.merchant-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: #0f172a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    transition: color 0.2s;
}

.product-title a:hover { color: #4f46e5; }

/* Price Row */
.price-row {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.product-rating {
    font-size: 0.85rem;
    color: #f59e0b;
    font-weight: 700;
}

/* Buy Button */
.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.2s;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

/* 8. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .stylist-app { border-radius: 0; border: none; }
    .app-view { padding: 1.5rem; }
    .cards-container { grid-template-columns: 1fr; } /* Single column stack */
    .stylist-header h2 { font-size: 2rem; }
}

/* ================================================
   AI STYLIST - ENHANCED STYLES
   ================================================ */

/* Header */
.stylist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.stylist-tagline {
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.step {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.step.active {
    color: #667eea;
    font-weight: 600;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
}

/* Selection Labels */
.selection-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.label-icon {
    font-size: 1.2rem;
}

.label-hint {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Enhanced Buttons */
.select-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.select-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
}

.select-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.btn-emoji {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.grid-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.occasion-btn {
    padding: 0.875rem 1rem;
}

/* Prompt Box */
.prompt-box {
    margin: 2rem 0;
}

.prompt-box textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.prompt-box textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.prompt-box textarea::placeholder {
    color: #9ca3af;
}

/* Suggestion Chips */
.prompt-suggestions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.suggestion-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.suggestion-chip {
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Location Display */
.location-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 1.5rem 0;
}

.location-icon {
    font-size: 1rem;
}

/* Main CTA Button */
.btn-find {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}

.btn-find:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
}

.btn-find:active {
    transform: translateY(-1px);
}

.btn-find-icon {
    font-size: 1.25rem;
}

.btn-find-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-find:hover .btn-find-arrow {
    transform: translateX(4px);
}

/* Disclaimer */
.ai-disclaimer {
    text-align: center;
    color: #9ca3af;
    margin-top: 1.5rem;
}

/* Loading State */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 400px;
}

.scanner-radar {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
}

.radar-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 2;
    animation: bounce 1s ease-in-out infinite;
}

.radar-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #667eea;
    border-radius: 50%;
    animation: radar-spin 2s linear infinite;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(102, 126, 234, 0.3) 60deg, transparent 60deg);
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid #667eea;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

.loading-text-wrapper {
    text-align: center;
}

.status-main {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.status-sub {
    color: #6b7280;
    font-size: 0.95rem;
}

.loading-fact {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    max-width: 400px;
}

.loading-fact p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Results */
.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.results-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.results-icon {
    font-size: 1.5rem;
}

.results-title h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #1f2937;
}

.results-subtitle {
    color: #6b7280;
    margin: 0.5rem 0 1.5rem;
}

.btn-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-restart:hover {
    background: #f9fafb;
    border-color: #667eea;
    color: #667eea;
}

/* Feedback Section */
.results-feedback {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.results-feedback p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.feedback-btn {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

/* Responsive */
@media (max-width: 768px) {
    .step-indicator {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .grid-group {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .select-btn {
        padding: 0.75rem;
        min-width: auto;
    }
    
    .btn-emoji {
        font-size: 1.25rem;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .grid-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prompt-suggestions {
        justify-content: center;
    }
}

/* ================================================
   ENHANCED AI STYLIST STYLES
   ================================================ */

/* Smooth transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.step {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1.5rem;
}

.step.active {
    color: #667eea;
    font-weight: 600;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
}

/* Selection Labels */
.selection-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.label-icon {
    font-size: 1.2rem;
}

.label-hint {
    font-weight: 400;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

/* Enhanced Button Styling */
.select-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
    font-family: inherit;
}

.select-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.select-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.btn-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.btn-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.grid-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

/* Occasion Buttons */
.occasion-btn {
    padding: 0.875rem 1rem;
}

/* Prompt Box */
.prompt-box {
    margin: 2rem 0;
}

.prompt-box textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.prompt-box textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Suggestion Chips */
.prompt-suggestions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.suggestion-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.suggestion-chip {
    padding: 0.375rem 0.875rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.suggestion-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

/* Location Display */
.location-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 1.5rem 0;
}

.location-icon {
    font-size: 1rem;
}

/* Main CTA Button */
.btn-find {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    font-family: inherit;
}

.btn-find:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
}

.btn-find:active {
    transform: translateY(-1px);
}

.btn-find-icon {
    font-size: 1.25rem;
}

.btn-find-arrow {
    font-size: 1.25rem;
}

.btn-find:hover .btn-find-arrow {
    transform: translateX(4px);
}

/* AI Disclaimer */
.ai-disclaimer {
    text-align: center;
    color: #9ca3af;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

/* Loading State */
.loading-fact {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.loading-fact p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Radar Pulse Animation */
.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid #667eea;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Results Section */
.results-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.results-icon {
    font-size: 1.75rem;
}

.results-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0.5rem 0 1.5rem;
}

.btn-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-restart:hover {
    background: #f9fafb;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
}

/* Shoe Result Cards */
.shoe-result-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shoe-result-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
}

.shoe-image {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.shoe-details {
    text-align: center;
}

.shoe-style {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.shoe-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0.5rem 0;
}

.shoe-brand {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.shoe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.shoe-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
}

.btn-shop {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-shop:hover {
    background: #5568d3;
    transform: translateX(2px);
}

/* Feedback Section */
.results-feedback {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.results-feedback p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.feedback-btn {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.feedback-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-1px);
}

/* Cards Container Grid */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-indicator {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .grid-group {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .select-btn {
        padding: 0.75rem;
        min-width: auto;
    }
    
    .btn-emoji {
        font-size: 1.25rem;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .grid-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .suggestion-label {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-find {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}