:root {
    --primary-pink: #ff80ab;
    --secondary-pink: #ffafcc;
    --dark-pink: #ff4081;
    --light-pink: #fff5f8;
    --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-light: #5f6368;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 128, 171, 0.3);
    --shadow-soft: 0 10px 40px rgba(255, 128, 171, 0.15);
    --shadow-hover: 0 20px 60px rgba(255, 128, 171, 0.25);
    --accent-blue: #a29bfe;
}

.rbx-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4px;
    object-fit: contain;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Background --- */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite alternate ease-in-out;
}
.shape-1 { background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink)); width: 600px; height: 600px; top: -150px; right: -150px; }
.shape-2 { background: linear-gradient(135deg, var(--accent-blue), #74b9ff); width: 450px; height: 450px; bottom: -100px; left: -100px; animation-delay: -5s; }
.shape-3 { background: linear-gradient(135deg, #fab1a0, #ff7675); width: 350px; height: 350px; top: 45%; left: 10%; animation-delay: -10s; }
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(80px, 100px) rotate(30deg); }
}

/* --- Header --- */
header {
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo { font-size: 28px; font-weight: 900; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.logo i { color: var(--primary-pink); filter: drop-shadow(0 0 8px rgba(255,128,171,0.5)); }
.logo span { color: var(--primary-pink); }
.nav-links { display: flex; gap: 12px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 16px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary-pink); background: var(--light-pink); transform: translateY(-2px); }

/* --- Hero --- */
.hero { padding: 80px 6% 40px; text-align: center; position: relative; max-width: 1100px; margin: 0 auto; }
.hero h1 { 
    font-size: clamp(32px, 5vw, 54px); 
    font-weight: 950; 
    margin-bottom: 20px; 
    background: linear-gradient(135deg, #2d3436 0%, var(--dark-pink) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    line-height: 1.15; 
    letter-spacing: -1.5px;
}
.hero p { font-size: clamp(15px, 2vw, 17px); color: var(--text-light); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 500; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-next, .btn-pay, .btn-back {
    padding: 16px 35px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}
.btn-primary, .btn-next, .btn-pay, .btn-back {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: white;
    box-shadow: 0 15px 35px rgba(255, 64, 129, 0.3);
}
.btn-primary:hover, .btn-next:hover, .btn-pay:hover, .btn-back:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 45px rgba(255, 64, 129, 0.4); }
.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 2px solid var(--glass-border);
}
.btn-secondary:hover { transform: translateY(-8px); background: var(--light-pink); }

/* --- Step Buttons Layout --- */
.step-btns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
}
.step-btns button, .step-btns a {
    flex: 1;
    max-width: calc(50% - 10px);
    justify-content: center;
}

/* --- Sections --- */
.section-title { font-size: clamp(28px, 4vw, 36px); font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; }

/* --- Order Wizard --- */
.order-section { padding: 40px 6%; }
.order-container { background: white; padding: 40px; border-radius: 40px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.order-container::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: linear-gradient(90deg, var(--primary-pink), var(--accent-blue)); }

/* --- Stepper --- */
.order-stepper { display: flex; justify-content: space-between; margin-bottom: 50px; position: relative; max-width: 650px; margin: 0 auto 50px; }
.order-stepper::before { content: ''; position: absolute; top: 25px; left: 0; width: 100%; height: 2px; background: #f1f3f4; z-index: 1; }
.stepper-item { position: relative; z-index: 2; background: white; border: 2px solid #f1f3f4; width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-weight: 900; color: #cbd5e0; transition: 0.4s; }
.stepper-item.active { background: var(--primary-pink); border-color: var(--primary-pink); color: white; transform: scale(1.1); box-shadow: 0 10px 20px rgba(255,128,171,0.3); }
.stepper-item span { position: absolute; top: 62px; white-space: nowrap; font-size: 11px; text-transform: uppercase; font-weight: 800; color: #a0aec0; letter-spacing: 0.5px; }
.stepper-item.active span { color: var(--primary-pink); }

/* --- Cards & Inputs --- */
.step-card { max-width: 580px; margin: 0 auto; }
.input-group { margin-bottom: 30px; text-align: left; }
.input-group label { display: block; font-weight: 800; margin-bottom: 12px; font-size: 15px; color: #2d3436; }
.input-group input { width: 100%; padding: 20px 28px; border: 2px solid #edf2f7; border-radius: 24px; font-size: 17px; font-weight: 600; outline: none; transition: 0.3s; background: #f8fafc; }
.input-group input:focus { border-color: var(--primary-pink); background: white; box-shadow: 0 0 0 6px rgba(255,128,171,0.12); }

.avatar-preview-box { background: var(--light-pink); padding: 40px; border-radius: 40px; text-align: center; margin-bottom: 35px; border: 2px dashed var(--glass-border); }
.avatar-preview-img { width: 130px; height: 130px; border-radius: 50%; border: 6px solid white; box-shadow: 0 15px 35px rgba(0,0,0,0.12); margin-bottom: 20px; background: white; transition: 0.5s; }
.avatar-preview-img:hover { transform: scale(1.05) rotate(5deg); }

.pay-option { border: 2px solid #edf2f7; padding: 25px; border-radius: 28px; text-align: center; cursor: pointer; font-weight: 800; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: 0.3s; background: #f8fafc; }
.pay-option:hover { border-color: var(--secondary-pink); transform: translateY(-5px); }
.pay-option.active { border-color: var(--primary-pink); background: var(--light-pink); color: var(--dark-pink); box-shadow: 0 10px 20px rgba(255,128,171,0.15); }

/* --- Stats & Sales --- */
.stats-section { padding: 80px 6%; max-width: 1200px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.recent-sales-section { padding: 80px 6%; max-width: 1200px; margin: 0 auto; }
.sales-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 20px 10px; scrollbar-width: none; }
.sale-card { min-width: 280px; background: white; padding: 25px; border-radius: 32px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); transition: 0.3s; }
.sale-card:hover { transform: scale(1.03); }
.sale-amount { font-weight: 900; color: var(--text-main); margin-bottom: 8px; font-size: 22px; }
.sale-price { font-size: 15px; margin-bottom: 15px; font-weight: 700; }
.sale-time { font-size: 13px; color: var(--text-light); border-top: 1px solid #f1f3f4; padding-top: 15px; font-weight: 600; }

.faq-section { padding: 100px 6%; max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 28px; margin-bottom: 20px; border: 1px solid var(--glass-border); overflow: hidden; transition: 0.3s; }
.faq-item:hover { box-shadow: var(--shadow-soft); }
.faq-question { padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 900; font-size: 19px; }
.faq-answer { padding: 0 40px 30px; display: none; color: var(--text-light); font-size: 16px; line-height: 1.8; }
.faq-item.active .faq-answer { display: block; animation: fadeIn 0.4s ease; }

/* --- Footer --- */
footer { background: #1a1a1a; color: white; padding: 80px 6% 40px; margin-top: 100px; border-top-left-radius: 60px; border-top-right-radius: 60px; }
footer::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 6px; background: var(--primary-pink); border-radius: 0 0 10px 10px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: var(--primary-pink); margin-bottom: 25px; font-size: 20px; font-weight: 800; }
.footer-col a { color: #aaa; text-decoration: none; display: block; margin-bottom: 15px; font-weight: 600; transition: 0.3s; }
.footer-col a:hover { color: white; transform: translateX(8px); }
.copyright { text-align: center; margin-top: 80px; padding-top: 40px; border-top: 1px solid #2d3436; color: #666; font-size: 15px; font-weight: 500; }

/* --- Cool Enhanced Stats --- */
.stat-card-cool {
    background: white;
    padding: 40px 25px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.stat-card-cool:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-pink);
}
.stat-card-cool::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,128,171,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}
.stat-card-cool:hover::before { opacity: 1; transform: translate(25%, 25%); }

.stat-number {
    font-size: 42px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--dark-pink), #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
    letter-spacing: -1.5px;
}

/* --- Cool Enhanced Testimonials --- */
.testi-card-cool {
    background: var(--white);
    padding: 30px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: 0.4s;
}
.testi-card-cool:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.testi-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    opacity: 0.1;
    color: var(--primary-pink);
}
.testi-avatar-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.testi-initials {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 8px 15px rgba(255,128,171,0.3);
}

/* --- Cool FAQ --- */
.faq-item-cool {
    background: white;
    border-radius: 32px;
    margin-bottom: 20px;
    border: 1px solid #f1f3f4;
    transition: 0.4s;
    cursor: pointer;
}
.faq-item-cool:hover { border-color: var(--primary-pink); transform: translateX(10px); }
.faq-item-cool.active { border-color: var(--primary-pink); box-shadow: var(--shadow-soft); }
.faq-head-cool {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 19px;
    color: #2d3436;
}
.faq-body-cool {
    padding: 0 40px 35px;
    display: none;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
    animation: fadeIn 0.4s ease;
}
.faq-item-cool.active .faq-body-cool { display: block; }
.faq-icon-cool { transition: 0.4s; color: var(--primary-pink); }
.faq-item-cool.active .faq-icon-cool { transform: rotate(180deg); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .order-container { padding: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    header { padding: 12px 5%; flex-direction: column; gap: 15px; text-align: center; }
    .logo { justify-content: center; width: 100%; }
    .nav-links { width: 100%; justify-content: space-around; padding-top: 10px; border-top: 1px solid rgba(255,128,171,0.1); }
    .nav-links a { flex-direction: column; gap: 4px; padding: 5px; }
    .nav-links a span { display: block !important; font-size: 10px; }
    .nav-links a i { width: 18px; height: 18px; }

    .hero { padding: 60px 5% 40px; }
    .hero h1 { font-size: 34px; line-height: 1.2; }
    .hero-btns { flex-direction: column; width: 100%; }

    .order-section { padding: 40px 15px; }
    .order-container { padding: 30px 20px; border-radius: 32px; }
    .order-stepper { margin-bottom: 40px; }
    .order-stepper::before { top: 22px; }
    .stepper-item { width: 44px; height: 44px; border-radius: 14px; }
    .stepper-item span { font-size: 10px; top: 48px; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .stepper-item span { display: none; }
    .order-container { padding: 25px 15px; }
}

.step-content { display: none; animation: slideUp 0.5s ease; }
.step-content.active { display: block; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.loading-pink {
    color: var(--primary-pink);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.loading-pink::after {
    content: '....';
    display: inline-block;
    width: 0;
    overflow: hidden;
    animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
    to { width: 1.25em; }
}
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
.pulse { animation: pulse 1.5s infinite ease-in-out; }

/* Avatar Loader Optimization */
.avatar-preview-box.loading { background: #f1f3f4 !important; overflow: hidden; position: relative; border-color: #eee !important; }
.avatar-preview-box.loading::after {
    content: " \;
 position: absolute;
 top: 0; left: 0; width: 100%; height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
 animation: skeleton-shimmer 1.5s infinite;
}
@keyframes skeleton-shimmer {
 0% { transform: translateX(-100%); }
 100% { transform: translateX(100%); }
}

.status-searching { color: #ff80ab; font-style: italic; font-weight: 600; }
.status-success { color: #2ecc71; font-weight: 800; }
.status-error { color: #e74c3c; font-weight: 800; }

