/* ==========================================================================
   WARSZTATY AIBL WB - SPECIFIC STYLES
   ========================================================================== */

/* Hero Section */
.hero-warsztaty {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-accent) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-warsztaty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-warsztaty .hero-content {
    position: relative;
    z-index: 2;
}

.hero-warsztaty .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-warsztaty .hero-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: var(--warmth-cream);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-warsztaty .hero-description {
    font-size: 1.2rem;
    color: var(--warmth-cream);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Progress Overview */
.progress-overview {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-item.optional {
    opacity: 0.8;
    border-style: dashed;
}

.progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--warmth-cream);
    color: var(--warmth-primary);
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-item.optional .progress-number {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.progress-text {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

/* Steps Section */
.steps-section {
    padding: 8rem 0 6rem;
    background: var(--warmth-cream);
    min-height: calc(100vh - 80px);
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin: 0 0 1rem 0;
}

.steps-header p {
    font-size: 1.2rem;
    color: var(--warmth-charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Step Tiles */
.step-tile {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 3px solid transparent;
    transition: all 0.3s var(--ease-organic);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
    justify-content: space-between;
}

.step-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--warmth-primary);
}

.step-tile.completed {
    border-color: var(--warmth-accent);
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
}

.step-tile.optional-step {
    border: 2px dashed var(--warmth-secondary);
    background: linear-gradient(135deg, #fefcf9 0%, #faf7f2 100%);
}

.step-tile.optional-step.completed {
    border-color: var(--warmth-gold);
    border-style: solid;
}

/* Step Tile Elements */
.step-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--warmth-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
}

.step-number.optional {
    background: var(--warmth-secondary);
    border: 3px dashed var(--warmth-gold);
}

.step-status {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 2rem;
    height: 2rem;
    background: var(--warmth-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s var(--ease-bounce);
}

.step-tile.completed .step-status {
    opacity: 1;
    transform: scale(1);
}

.check-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 3;
    color: white;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.step-description {
    font-size: 1rem;
    color: var(--warmth-charcoal);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    flex: 1;
}

.step-arrow {
    width: 2rem;
    height: 2rem;
    color: var(--warmth-primary);
    opacity: 0.6;
    transition: all 0.3s var(--ease-organic);
}

.step-tile:hover .step-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.optional-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warmth-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step Modal */
.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    animation: modalFadeIn 0.3s var(--ease-organic);
}

.step-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 38, 37, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    max-height: calc(100vh - 4rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--warmth-cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
}

.modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--warmth-charcoal);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--warmth-cream);
}

.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-body {
    padding: 1rem 2rem;
    flex: 1;
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--warmth-cream);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Progress Summary */
.progress-summary {
    padding: 4rem 0;
    background: var(--warmth-charcoal);
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-strong);
}

.summary-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    margin: 0 0 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--warmth-cream);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 0 1.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--warmth-accent), var(--warmth-primary));
    border-radius: 6px;
    transition: width 0.5s var(--ease-organic);
    width: 0%;
}

.progress-text {
    font-size: 1.1rem;
    color: var(--warmth-charcoal);
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.progress-percentage {
    font-weight: 600;
    color: var(--warmth-primary);
}

.next-action {
    background: var(--warmth-cream);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--warmth-primary);
}

.next-action p {
    margin: 0;
    font-size: 1rem;
    color: var(--warmth-charcoal);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-header h1 {
        font-size: 2.5rem;
    }
    
    .steps-header p {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-tile {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 6rem 0 4rem;
    }
    
    .steps-header h1 {
        font-size: 2rem;
    }
    
    .steps-header {
        margin-bottom: 3rem;
    }
    
    .step-tile {
        min-height: 200px;
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Footer Styles from web-specific.css */
footer {
    background: #2C2625;
    color: white;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8B48F;
    letter-spacing: -0.01em;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section-title {
    color: #E8B48F;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E8B48F;
}

.footer-coming-soon {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-brand-link {
    color: #E8B48F;
    text-decoration: none;
}

.footer-brand-link:hover {
    color: #D4925A;
}

.footer-cookie-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    text-align: left;
}

.footer-cookie-btn:hover {
    color: #E8B48F;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* IDE Step 4 Specific Styles */
.ide-intro {
    margin-bottom: 2rem;
}

.ide-warning {
    background: linear-gradient(135deg, #fff5f5 0%, #fef5e7 100%);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ide-warning h4 {
    color: #c92a2a;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.ide-warning ul {
    margin: 1rem 0 0 0;
    padding-left: 1.2rem;
}

.ide-warning li {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.ide-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.tool-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-organic);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-card.active {
    border-color: var(--warmth-primary);
    box-shadow: 0 8px 25px rgba(201, 74, 42, 0.2);
}

.claude-card.active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
}

.gemini-card.active {
    border-color: #4285f4;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

.qwen-card.active {
    border-color: #00d4aa;
    background: linear-gradient(135deg, #f0fffc 0%, #fff 100%);
}

.tool-card h5 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
}

.tool-instructions {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--warmth-cream);
    border-radius: 16px;
    min-height: 200px;
}

.select-prompt {
    text-align: center;
    color: var(--warmth-charcoal);
    opacity: 0.6;
    font-style: italic;
    margin: 3rem 0;
    font-size: 1.1rem;
}

.tool-detailed h4 {
    color: var(--warmth-primary);
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--warmth-primary);
    padding-bottom: 0.5rem;
}

.prereq-section {
    background: #f8f9fa;
    border-left: 4px solid var(--warmth-accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.prereq-section h5 {
    margin: 0 0 1rem 0;
    color: var(--warmth-accent);
    font-size: 1.2rem;
}

.prereq-section code {
    background: var(--warmth-charcoal);
    color: var(--warmth-cream);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.install-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--warmth-secondary);
    color: var(--warmth-charcoal);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--warmth-secondary);
    color: white;
}

.tab-btn.active {
    background: var(--warmth-primary);
    border-color: var(--warmth-primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h6 {
    color: var(--warmth-charcoal);
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.step-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-num {
    background: var(--warmth-primary);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.step-block strong {
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.step-block p {
    margin: 0;
    color: var(--warmth-charcoal);
    opacity: 0.8;
    line-height: 1.5;
}

.code-block {
    background: var(--warmth-charcoal);
    color: var(--warmth-cream);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.8rem 0;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-block code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    flex: 1;
}

.code-block button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--warmth-cream);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 1rem;
}

.code-block button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bonus-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.bonus-info h6 {
    color: #0369a1;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.bonus-info ul {
    margin: 0;
    padding-left: 1.2rem;
}

.bonus-info li {
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.ide-help {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.ide-help h4 {
    color: #15803d;
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.help-option {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.help-option strong {
    color: #15803d;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive for IDE section */
@media (max-width: 768px) {
    .ide-tools {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .step-block {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-num {
        align-self: flex-start;
    }
    
    .code-block {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
}

/* Fix for header-cta hover - override web-components.css */
.header-cta:hover {
    background: var(--warmth-primary) !important;
    color: white !important;
}

.header-cta:hover::before {
    left: 100%;
}

/* Style Generator for Step 3 */
.style-generator {
    background: var(--warmth-cream);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.style-generator ol {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.style-generator ol li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.prompt-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin: 2rem 0;
}

.prompt-header {
    background: var(--warmth-charcoal);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prompt-header h6 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-btn {
    background: var(--warmth-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--warmth-accent);
    transform: translateY(-1px);
}

.prompt-content {
    background: var(--warmth-charcoal);
    color: var(--warmth-cream);
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.style-tips {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.style-tips h5 {
    color: #0369a1;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.style-tips p {
    margin: 0;
    color: #0f172a;
    line-height: 1.6;
}

/* Tools list styling for Step 2 */
.tools-list {
    background: var(--warmth-cream);
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.tools-list h5 {
    color: var(--warmth-primary);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--warmth-primary);
    padding-bottom: 0.5rem;
}

.tools-list ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.tools-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.tools-list a {
    color: var(--warmth-primary);
    text-decoration: none;
    font-weight: 600;
}

.tools-list a:hover {
    text-decoration: underline;
}

.tools-list p {
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--warmth-accent);
}

/* Profile paths styling for Step 1 */
.profile-paths {
    background: var(--warmth-cream);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.profile-paths h5 {
    color: var(--warmth-primary);
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    text-align: center;
}

.path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.path-card {
    background: white;
    border: 2px solid var(--warmth-secondary);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-organic);
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    font-family: inherit;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--warmth-primary);
}

.path-card.active {
    border-color: var(--warmth-primary);
    background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
    box-shadow: 0 8px 25px rgba(201, 74, 42, 0.2);
}

.path-card h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--warmth-charcoal);
    line-height: 1.4;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.01em;
}

.selected-path-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--warmth-primary);
}

.prompt-instructions {
    background: var(--warmth-cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.prompt-instructions h5 {
    color: var(--warmth-primary);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.prompt-instructions ol {
    margin: 0;
    padding-left: 1.2rem;
}

.prompt-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.profile-tips {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.profile-tips h5 {
    color: #0369a1;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.profile-tips p {
    margin: 0;
    color: #0f172a;
    line-height: 1.6;
}

/* Responsive for new styles */
@media (max-width: 768px) {
    .prompt-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .prompt-content {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .style-generator {
        padding: 1.5rem;
    }
    
    .tools-list {
        padding: 1.5rem;
    }
    
    .path-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .path-card {
        min-height: 70px;
        padding: 0.8rem;
    }
    
    .path-card h6 {
        font-size: 0.85rem;
    }
    
    .profile-paths {
        padding: 1.5rem;
    }
    
    .selected-path-content {
        padding: 1.5rem;
    }
    
    .prompt-instructions {
        padding: 1rem;
    }
}