/* 
 * Pawparazi Theme CSS
 * Pink & Coral Gradient Design System
 */

:root {
    /* Brand Colors */
    --primary-pink: #F827A8;
    --secondary-coral: #FF6B6B;
    --gradient-start: #F827A8;
    --gradient-end: #FF7A59;
    
    /* Neutral Colors */
    --text-dark: #192636;
    --text-medium: #5A697B;
    --text-light: #A3A3A3;
    --border-color: #EEE;
    --bg-light: #FAFAFA;
    --bg-white: #FFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    margin: 0;
    padding: 0;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #F827A8 0%, #FF7A59 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(248, 39, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 39, 168, 0.4);
}

.btn-secondary {
    background: white;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-light);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #F827A8 0%, #FF7A59 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(248, 39, 168, 0.3);
}

.step.completed .step-circle {
    background: var(--primary-pink);
    color: white;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
}

.step.active .step-label {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 32px;
    margin-bottom: 24px;
}

/* Loading Animation */
.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F827A8 0%, #FF7A59 100%);
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Header */
.header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-pink);
    text-decoration: none;
}

.cart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 13px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }
    
    .progress-steps {
        gap: 12px;
        padding: 24px 20px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

