/* ================= MONIZZA — ESTILOS ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #FF6B00;
    --primary-dark: #E05E00;
    --primary-light: #FF8C3A;
    --secondary: #1A2B4A;
    --secondary-light: #2A3F6A;
    --accent: #00C853;
    --accent-dark: #00A844;
    --bg-light: #F8F9FC;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A68;
    --text-light: #7A7A98;
    --white: #FFFFFF;
    --wa: #25D366;
    --wa-dark: #128C7E;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 8px 24px rgba(26, 43, 74, 0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

img { max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled, .navbar.solid {
    background: rgba(26, 43, 74, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 12px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-mark {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

.logo .dot { color: var(--primary-light); }

.nav-links { display: flex; gap: 26px; align-items: center; }

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-light); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
    position: relative;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cart-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.cart-count {
    position: absolute;
    top: -6px; right: -6px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.5);
}

.cart-count.bump { animation: bump 0.35s ease; }
@keyframes bump { 50% { transform: scale(1.45); } }

.sell-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
    text-decoration: none;
}

.sell-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 107, 0, 0.5); }

/* ===== HERO ===== */
.hero {
    min-height: 92vh;
    background: linear-gradient(165deg, var(--secondary) 0%, var(--secondary-light) 40%, var(--primary-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.floating-elements { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.float-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.08;
    color: white;
    animation: float-around 20s linear infinite;
}

.float-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 30px; }
.float-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: -3s; font-size: 20px; }
.float-icon:nth-child(3) { top: 60%; left: 15%; animation-delay: -7s; font-size: 28px; }
.float-icon:nth-child(4) { top: 80%; right: 20%; animation-delay: -11s; font-size: 22px; }
.float-icon:nth-child(5) { top: 40%; left: 80%; animation-delay: -15s; font-size: 26px; }
.float-icon:nth-child(6) { top: 70%; left: 60%; animation-delay: -5s; font-size: 18px; }

@keyframes float-around {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.12; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.06; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.1; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.08; }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { color: white; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.badge i { color: var(--wa); font-size: 12px; animation: blink 1.5s ease-in-out infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.btn-primary-lg:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 107, 0, 0.55); }

.btn-ghost-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-ghost-lg:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-ghost-lg i { color: var(--wa); }

.trust-indicators { display: flex; gap: 30px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

.trust-item { display: flex; align-items: center; gap: 10px; }

.trust-icon {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
}

.trust-text { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.3; }
.trust-text strong { display: block; color: white; font-size: 14px; }

/* Hero visual — chat mock */
.hero-visual { animation: fadeInRight 0.8s ease 0.3s both; }

.chat-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

.chat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEF0F6;
    margin-bottom: 16px;
}

.chat-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.chat-name { font-weight: 800; font-size: 15px; }
.chat-status { font-size: 12px; color: var(--accent); font-weight: 600; }

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 10px;
    animation: fadeInUp 0.5s ease both;
}

.bubble-in { background: #F1F3F9; color: var(--text-dark); border-bottom-left-radius: 4px; }
.bubble-out {
    background: linear-gradient(135deg, #DCF8C6, #C8F0B0);
    margin-left: auto;
    border-bottom-right-radius: 4px;
    color: #1E3A1E;
}
.chat-bubble:nth-of-type(2) { animation-delay: 0.9s; }
.chat-bubble:nth-of-type(3) { animation-delay: 1.5s; }
.chat-bubble:nth-of-type(4) { animation-delay: 2.1s; }

.chat-order {
    background: white;
    border: 1.5px solid #E8EBF3;
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-order-thumb {
    width: 42px; height: 42px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F1F3F9;
}

.chat-order-thumb img { width: 100%; height: 100%; object-fit: contain; }

.chat-order-info { font-size: 12px; line-height: 1.4; }
.chat-order-info strong { display: block; font-size: 12.5px; }
.chat-order-info span { color: var(--primary-dark); font-weight: 800; }

.chat-float-tag {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    animation: floaty 3.5s ease-in-out infinite;
    z-index: 2;
}

.tag-sales { top: -22px; left: -40px; }
.tag-sales i { color: var(--accent); }
.tag-secure { bottom: -18px; right: -20px; animation-delay: -1.7s; }
.tag-secure i { color: var(--primary); }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== STATS BAR ===== */
.stats-bar {
    max-width: 1100px;
    margin: -60px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.stat-card {
    background: white;
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.stat-card > i { font-size: 22px; color: var(--primary); margin-bottom: 10px; display: block; }

.counter-value { font-size: 30px; font-weight: 900; color: var(--secondary); }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 600; margin-top: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 90px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== TOOLBAR ===== */
.market-toolbar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.search-wrap { flex: 1; min-width: 260px; position: relative; }

.search-wrap i {
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 15px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 48px;
    border-radius: 14px;
    border: 2px solid #E8EBF3;
    background: white;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: all 0.25s ease;
}

.search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,107,0,0.12); }

.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.cat-pill {
    border: 2px solid #E8EBF3;
    background: white;
    color: var(--text-medium);
    padding: 11px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cat-pill i { font-size: 13px; }
.cat-pill:hover { border-color: var(--primary-light); color: var(--primary-dark); }

.cat-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.product-img {
    height: 200px;
    position: relative;
    background: #FFFFFF;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #F1F3F9;
}

.product-img img {
    width: 100%; height: 100%;
    transition: transform 0.35s ease;
}

.product-img img.fit-contain { object-fit: contain; padding: 14px; }
.product-img img.fit-cover { object-fit: cover; }

.product-card:hover .product-img img { transform: scale(1.06); }

.product-img .emoji-fallback {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
}

.product-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--secondary);
    color: white;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}

.product-tag.hot { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.product-tag.new { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }

.product-store {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
}

.product-store i { color: var(--primary); font-size: 11px; }
.product-store .verified { color: #1D9BF0; font-size: 12px; }

.product-name {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.35;
}

.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: var(--primary-dark); }

.product-rating { font-size: 12px; color: #FFB300; margin-bottom: 12px; }
.product-rating span { color: var(--text-light); font-weight: 600; margin-left: 5px; }

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-price { font-size: 17px; font-weight: 900; color: var(--primary-dark); line-height: 1.2; }
.product-price small { display: block; font-size: 10.5px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.card-actions { display: flex; gap: 8px; }

.icon-btn {
    width: 42px; height: 42px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-cart-btn { background: #FFF0E3; color: var(--primary-dark); }
.add-cart-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.wa-buy-btn { background: #E7F9EE; color: var(--wa-dark); }
.wa-buy-btn:hover { background: var(--wa); color: white; transform: translateY(-2px); }

.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--text-light); }
.empty-state i { font-size: 44px; margin-bottom: 16px; color: #D5DAE6; display: block; }

/* ===== HOW SECTION ===== */
.how-section { background: white; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.step-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.3); box-shadow: var(--shadow-sm); }

.step-number {
    width: 46px; height: 46px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.step-title { font-size: 16.5px; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: var(--text-medium); line-height: 1.65; }

/* ===== STORES ===== */
.stores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.store-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.store-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.store-card:hover::before { opacity: 1; }

.store-avatar {
    width: 68px; height: 68px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.store-name { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.store-name .verified { color: #1D9BF0; font-size: 13px; margin-left: 4px; }
.store-meta { font-size: 12.5px; color: var(--text-light); font-weight: 600; margin-bottom: 14px; }
.store-meta i { color: #FFB300; }

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wa-dark);
    background: #E7F9EE;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}

.store-link:hover { background: var(--wa); color: white; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: white; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover { border-color: rgba(255,107,0,0.25); transform: translateY(-5px); }

.stars { color: #FFB300; font-size: 13px; margin-bottom: 16px; }

.testimonial-text { font-size: 14.5px; line-height: 1.75; color: var(--text-medium); margin-bottom: 22px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.author-name { font-size: 14px; font-weight: 800; color: var(--secondary); }
.author-role { font-size: 12.5px; color: var(--text-light); font-weight: 600; }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(150deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--primary-dark) 120%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 65%);
}

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

.cta-title { font-size: 40px; font-weight: 900; color: white; line-height: 1.15; margin-bottom: 18px; }

.cta-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), #FFC895);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 16.5px;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-features { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }

.cta-feature { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }
.cta-feature i { color: var(--accent); }

/* ===== FOOTER ===== */
.footer { background: #101D33; color: rgba(255,255,255,0.6); padding: 60px 20px 30px; }

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-desc { font-size: 13.5px; line-height: 1.7; margin-top: 16px; max-width: 300px; }

.footer h4 { color: white; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
}

.socials { display: flex; gap: 10px; }

.socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.25s;
}

.socials a:hover { background: var(--primary); color: white; transform: translateY(-2px); }

/* ===== CART DRAWER ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 29, 51, 0.55);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: white;
    z-index: 201;
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}

.cart-drawer.open { transform: translateX(0); }

.drawer-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEF0F6;
}

.drawer-title { font-size: 18px; font-weight: 900; color: var(--secondary); display: flex; align-items: center; gap: 10px; }
.drawer-title i { color: var(--primary); }

.drawer-close {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: none;
    background: #F1F3F9;
    color: var(--text-medium);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.drawer-close:hover { background: #FFE3E3; color: #E53935; }

.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

.cart-empty { text-align: center; padding: 60px 10px; color: var(--text-light); }
.cart-empty i { font-size: 46px; color: #D5DAE6; margin-bottom: 16px; display: block; }
.cart-empty p { font-size: 14.5px; font-weight: 600; }

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #F1F3F9;
    align-items: center;
}

.cart-item-img {
    width: 58px; height: 58px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F6F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 800; color: var(--secondary); line-height: 1.3; }
.cart-item-store { font-size: 11.5px; color: var(--text-light); font-weight: 600; margin: 2px 0 6px; }
.cart-item-price { font-size: 13.5px; font-weight: 900; color: var(--primary-dark); }

.qty-controls { display: flex; align-items: center; gap: 8px; }

.qty-btn {
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 1.5px solid #E8EBF3;
    background: white;
    color: var(--text-medium);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.qty-num { font-size: 13.5px; font-weight: 800; min-width: 18px; text-align: center; }

.remove-btn { border: none; background: none; color: #C6CBDA; cursor: pointer; font-size: 14px; padding: 6px; transition: color 0.2s; }
.remove-btn:hover { color: #E53935; }

.drawer-footer { padding: 22px 24px; border-top: 1px solid #EEF0F6; background: #FBFCFE; }

.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

.cart-total-label { font-size: 14px; font-weight: 700; color: var(--text-medium); }
.cart-total-value { font-size: 22px; font-weight: 900; color: var(--secondary); }

.checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    color: white;
    border: none;
    padding: 17px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
}

.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.checkout-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; font-weight: 600; }
.checkout-note i { color: var(--wa); }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 29, 51, 0.6);
    backdrop-filter: blur(5px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.wide { max-width: 560px; }

.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 10px;
    border: none;
    background: #F1F3F9;
    font-size: 20px;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover { background: #FFE3E3; color: #E53935; }

.modal-icon {
    width: 66px; height: 66px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.modal-title { font-size: 22px; font-weight: 900; color: var(--secondary); text-align: center; margin-bottom: 8px; }
.modal-text { font-size: 14px; color: var(--text-medium); text-align: center; line-height: 1.65; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-label {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #E8EBF3;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    transition: all 0.25s;
    background: white;
    color: var(--text-dark);
}

.form-textarea { resize: vertical; min-height: 90px; }

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,107,0,0.12); }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: var(--secondary);
    color: white;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 400;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show { transform: translate(-50%, 0); }
.toast i { color: var(--accent); }

/* ===== BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 48px; height: 48px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 10px 26px rgba(255, 107, 0, 0.4);
    z-index: 90;
}

.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ===== PAGE HEADER (subpáginas) ===== */
.page-head {
    background: linear-gradient(165deg, var(--secondary) 0%, var(--secondary-light) 60%, var(--primary-dark) 130%);
    padding: 120px 20px 50px;
    color: white;
}

.page-head .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb i { font-size: 10px; }

/* ===== PRODUCT DETAIL ===== */
.detail-wrap {
    max-width: 1200px;
    margin: -20px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 3;
}

.detail-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    margin-top: 40px;
}

.detail-gallery {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 460px;
    position: relative;
    border-right: 1px solid #F1F3F9;
}

.detail-gallery img { max-height: 420px; width: 100%; object-fit: contain; }

.detail-gallery .emoji-xl { font-size: 140px; }

.detail-info { padding: 44px 44px 40px; }

.detail-store-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.detail-store-row a { color: var(--primary-dark); text-decoration: none; }
.detail-store-row .verified { color: #1D9BF0; }

.detail-title { font-size: 30px; font-weight: 900; color: var(--secondary); line-height: 1.2; margin-bottom: 12px; }

.detail-rating { font-size: 14px; color: #FFB300; margin-bottom: 20px; }
.detail-rating span { color: var(--text-light); font-weight: 600; margin-left: 6px; font-size: 13px; }

.detail-price-box {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-price { font-size: 32px; font-weight: 900; color: var(--primary-dark); }
.detail-price small { display: block; font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #E7F9EE;
    color: var(--accent-dark);
    font-size: 12.5px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 50px;
}

.stock-pill.low { background: #FFF3E0; color: #E65100; }

.detail-desc { font-size: 14.5px; line-height: 1.8; color: var(--text-medium); margin-bottom: 28px; }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.qty-label { font-size: 13px; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.8px; }

.qty-stepper {
    display: flex;
    align-items: center;
    border: 2px solid #E8EBF3;
    border-radius: 12px;
    overflow: hidden;
}

.qty-stepper button {
    width: 42px; height: 44px;
    border: none;
    background: white;
    font-size: 15px;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s;
}

.qty-stepper button:hover { background: #FFF0E3; color: var(--primary-dark); }
.qty-stepper .qty-view { width: 52px; text-align: center; font-size: 16px; font-weight: 900; color: var(--secondary); }

.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-add-lg {
    flex: 1;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 17px 26px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
}

.btn-add-lg:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 107, 0, 0.5); }

.btn-wa-lg {
    flex: 1;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    color: white;
    border: none;
    padding: 17px 26px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-wa-lg:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.5); }

.detail-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid #F1F3F9;
}

.perk { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; color: var(--text-medium); }

.perk i {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #FFF0E3;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Store box on detail */
.seller-box {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.seller-box .store-avatar { margin: 0; }
.seller-box-info { flex: 1; min-width: 220px; }
.seller-box-name { font-size: 17px; font-weight: 900; color: var(--secondary); }
.seller-box-name .verified { color: #1D9BF0; font-size: 14px; margin-left: 5px; }
.seller-box-desc { font-size: 13.5px; color: var(--text-medium); line-height: 1.6; margin-top: 4px; }
.seller-box-meta { font-size: 12.5px; color: var(--text-light); font-weight: 700; margin-top: 6px; }
.seller-box-meta i { color: #FFB300; }

.related-title { font-size: 24px; font-weight: 900; color: var(--secondary); margin: 50px 0 24px; }

/* ===== DASHBOARD (Painel do Vendedor) ===== */
.dash-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 20px 60px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.dash-side {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 22px 16px;
    position: sticky;
    top: 96px;
}

.dash-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 18px;
}

.dash-store-badge .avatar {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.dash-store-badge .name { font-size: 13.5px; font-weight: 800; color: var(--secondary); line-height: 1.25; }
.dash-store-badge .role { font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }

.dash-nav { list-style: none; }

.dash-nav button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: none;
    background: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    margin-bottom: 4px;
}

.dash-nav button i { width: 20px; text-align: center; font-size: 15px; }
.dash-nav button:hover { background: #FFF0E3; color: var(--primary-dark); }

.dash-nav button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.dash-main { min-width: 0; }

.dash-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

.dash-title { font-size: 26px; font-weight: 900; color: var(--secondary); }
.dash-subtitle { font-size: 13.5px; color: var(--text-light); font-weight: 600; margin-top: 4px; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }

.dash-stat {
    background: white;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.dash-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.dash-stat-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ic-orange { background: #FFF0E3; color: var(--primary-dark); }
.ic-green  { background: #E7F9EE; color: var(--accent-dark); }
.ic-blue   { background: #E4EEFF; color: #2563EB; }
.ic-purple { background: #F0EAFF; color: #7C3AED; }

.dash-stat-value { font-size: 22px; font-weight: 900; color: var(--secondary); line-height: 1.1; }
.dash-stat-label { font-size: 12px; color: var(--text-light); font-weight: 700; margin-top: 3px; }

.dash-panel {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 26px 28px;
    margin-bottom: 24px;
}

.dash-panel-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-panel-title i { color: var(--primary); }

/* Chart bars */
.chart-bars { display: flex; align-items: flex-end; gap: 14px; height: 180px; padding-top: 10px; }

.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }

.chart-bar {
    width: 100%;
    max-width: 46px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 8px 8px 4px 4px;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.chart-bar:hover { filter: brightness(1.08); }
.chart-bar .val {
    position: absolute;
    top: -22px; left: 50%;
    transform: translateX(-50%);
    font-size: 10.5px;
    font-weight: 800;
    color: var(--text-medium);
    white-space: nowrap;
}

.chart-label { font-size: 11.5px; font-weight: 700; color: var(--text-light); }

/* Tables */
.dash-table-wrap { overflow-x: auto; }

.dash-table { width: 100%; border-collapse: collapse; min-width: 640px; }

.dash-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    padding: 10px 12px;
    border-bottom: 2px solid #F1F3F9;
}

.dash-table td { padding: 14px 12px; border-bottom: 1px solid #F5F6FA; font-size: 13.5px; color: var(--text-medium); vertical-align: middle; }

.dash-table tr:hover td { background: #FBFCFE; }

.tbl-product { display: flex; align-items: center; gap: 12px; }

.tbl-thumb {
    width: 44px; height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: #F6F7FB;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tbl-thumb img { width: 100%; height: 100%; object-fit: contain; }

.tbl-name { font-weight: 800; color: var(--secondary); font-size: 13.5px; }
.tbl-sub { font-size: 11.5px; color: var(--text-light); font-weight: 600; }

.status-pill {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.st-novo       { background: #FFF0E3; color: var(--primary-dark); }
.st-confirmado { background: #E4EEFF; color: #2563EB; }
.st-entregue   { background: #E7F9EE; color: var(--accent-dark); }

.tbl-actions { display: flex; gap: 6px; }

.tbl-btn {
    width: 34px; height: 34px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.tbl-btn.edit { background: #E4EEFF; color: #2563EB; }
.tbl-btn.edit:hover { background: #2563EB; color: white; }
.tbl-btn.del { background: #FFE9E9; color: #E53935; }
.tbl-btn.del:hover { background: #E53935; color: white; }
.tbl-btn.wa { background: #E7F9EE; color: var(--wa-dark); }
.tbl-btn.wa:hover { background: var(--wa); color: white; }

.lock-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 700;
}

/* Store picker (login demo) */
.store-picker {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    text-align: center;
}

.picker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }

.picker-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    font-family: inherit;
}

.picker-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }

.picker-card .store-avatar { margin: 0 auto 14px; }

/* ===== CRM ===== */
.crm-toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.crm-toolbar .search-wrap { min-width: 220px; }
.crm-toolbar .search-input { padding: 12px 16px 12px 44px; font-size: 13.5px; }

.pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}

.pipe-col {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 14px;
    min-height: 120px;
    border-top: 4px solid var(--pipe-color, var(--primary));
}

.pipe-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.pipe-title { font-size: 12.5px; font-weight: 900; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.6px; display: flex; align-items: center; gap: 7px; }
.pipe-title i { color: var(--pipe-color, var(--primary)); font-size: 12px; }

.pipe-count {
    min-width: 22px; height: 22px;
    padding: 0 7px;
    background: white;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    color: var(--text-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(26,43,74,0.08);
}

.pipe-value { font-size: 11px; font-weight: 800; color: var(--text-light); padding: 0 4px 10px; }

.lead-card {
    background: white;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(26,43,74,0.06);
    transition: all 0.25s;
    border: 1.5px solid transparent;
}

.lead-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(255,107,0,0.25); }

.lead-name { font-size: 13.5px; font-weight: 800; color: var(--secondary); line-height: 1.25; }
.lead-value { font-size: 12.5px; font-weight: 900; color: var(--primary-dark); margin-top: 3px; }

.lead-follow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 800;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 50px;
    background: #F1F3F9;
    color: var(--text-medium);
}

.lead-follow.due { background: #FFE9E9; color: #E53935; }
.lead-follow.today { background: #FFF3E0; color: #E65100; }

.lead-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }

.crm-tag { font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 50px; }

.lead-actions {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #F1F3F9;
}

.lead-btn {
    flex: 1;
    height: 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: #F1F3F9;
    color: var(--text-medium);
}

.lead-btn:hover { background: var(--secondary); color: white; }
.lead-btn.wa { background: #E7F9EE; color: var(--wa-dark); }
.lead-btn.wa:hover { background: var(--wa); color: white; }
.lead-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.lead-btn:disabled:hover { background: #F1F3F9; color: var(--text-medium); }

.pipe-empty { text-align: center; font-size: 11.5px; color: var(--text-light); font-weight: 600; padding: 18px 6px; }

/* Templates de mensagens */
.tpl-grid { display: grid; gap: 10px; }

.tpl-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
    width: 100%;
}

.tpl-card:hover { border-color: var(--wa); background: #F2FBF5; }

.tpl-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #E7F9EE;
    color: var(--wa-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tpl-info { flex: 1; min-width: 0; }
.tpl-title { font-size: 14px; font-weight: 800; color: var(--secondary); }
.tpl-desc { font-size: 12px; color: var(--text-light); font-weight: 600; margin-top: 2px; }
.tpl-card > i.fa-chevron-right { color: #C6CBDA; font-size: 12px; }

.tpl-preview {
    background: linear-gradient(135deg, #DCF8C6, #C8F0B0);
    border-radius: 14px;
    border-bottom-right-radius: 4px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #1E3A1E;
    margin: 14px 0 18px;
    white-space: pre-wrap;
}

@media (max-width: 1024px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pipeline { grid-template-columns: 1fr; } }

/* ===== LEMBRETES AUTOMÁTICOS ===== */
.reminders-bar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.reminder-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--rem-color, var(--primary));
    animation: fadeInDown 0.5s ease both;
}

.reminder-item:nth-child(2) { animation-delay: 0.1s; }
.reminder-item:nth-child(3) { animation-delay: 0.2s; }

.reminder-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: color-mix(in srgb, var(--rem-color) 14%, white);
    color: var(--rem-color, var(--primary));
}

.reminder-text { flex: 1; min-width: 0; font-size: 13.5px; font-weight: 700; color: var(--secondary); line-height: 1.4; }
.reminder-text small { display: block; font-size: 12px; color: var(--text-light); font-weight: 600; }

.reminder-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: color-mix(in srgb, var(--rem-color) 14%, white);
    color: var(--rem-color);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.reminder-cta:hover { background: var(--rem-color); color: white; }

.reminder-dismiss {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border: none;
    background: none;
    border-radius: 8px;
    color: #C6CBDA;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.reminder-dismiss:hover { background: #FFE3E3; color: #E53935; }

/* ===== TIMELINE (histórico do cliente) ===== */
.hist-client-head {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.hist-avatar {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.hist-client-name { font-size: 15px; font-weight: 900; color: var(--secondary); }
.hist-client-meta { font-size: 12px; color: var(--text-light); font-weight: 700; margin-top: 2px; }

.timeline {
    max-height: 300px;
    overflow-y: auto;
    padding-left: 6px;
    margin-bottom: 18px;
}

.tl-item { display: flex; gap: 14px; position: relative; padding-bottom: 20px; }

.tl-item::before {
    content: '';
    position: absolute;
    left: 17px; top: 36px; bottom: 0;
    width: 2px;
    background: #EDF0F7;
}

.tl-item:last-child::before { display: none; }
.tl-item:last-child { padding-bottom: 4px; }

.tl-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: color-mix(in srgb, var(--tl-color, #888) 14%, white);
    color: var(--tl-color, #888);
    position: relative;
    z-index: 1;
}

.tl-body { flex: 1; min-width: 0; padding-top: 2px; }

.tl-meta { font-size: 11px; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.tl-meta strong { color: var(--tl-color, var(--secondary)); }
.tl-text { font-size: 13px; color: var(--text-medium); line-height: 1.55; margin-top: 3px; font-weight: 500; }

.tl-empty { text-align: center; color: var(--text-light); font-size: 13px; font-weight: 600; padding: 24px 0; }

.hist-note-row { display: flex; gap: 10px; }
.hist-note-row .form-input { flex: 1; }

.hist-note-btn {
    flex-shrink: 0;
    width: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 18px rgba(255,107,0,0.3);
}

.hist-note-btn:hover { transform: translateY(-2px); }

/* Botão secundário (exportar) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    border: 2px solid #E8EBF3;
    color: var(--text-medium);
    padding: 12px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); background: #F2FBF5; }

@media (max-width: 560px) {
    .reminder-item { flex-wrap: wrap; }
    .reminder-cta { width: 100%; justify-content: center; }
}

/* ===== AUTH: navbar ===== */
.auth-slot { position: relative; display: flex; align-items: center; }

.login-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 11px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}

.login-nav-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 7px 14px 7px 8px;
    border-radius: 50px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
}

.user-chip:hover { background: rgba(255,255,255,0.2); }
.user-chip > i { font-size: 10px; opacity: 0.7; }

.user-chip-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.user-chip-info { text-align: left; line-height: 1.15; }
.user-chip-info strong { display: block; font-size: 13px; font-weight: 800; }
.user-chip-info small { font-size: 10px; opacity: 0.75; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.user-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.25s;
    z-index: 150;
}

.user-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.user-menu-head { padding: 12px 14px; border-bottom: 1px solid #F1F3F9; margin-bottom: 6px; }
.user-menu-head strong { display: block; font-size: 14px; color: var(--secondary); font-weight: 800; }
.user-menu-head small { font-size: 12px; color: var(--text-light); font-weight: 600; }

.user-menu a, .user-menu button {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-medium);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.user-menu a:hover { background: #FFF0E3; color: var(--primary-dark); }
.user-menu button:hover { background: #FFE9E9; color: #E53935; }
.user-menu i { width: 18px; text-align: center; }

/* ===== AUTH: página de login ===== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--secondary) 0%, var(--secondary-light) 40%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 20px 60px;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    padding: 44px 40px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.7s ease both;
}

.auth-head { text-align: center; margin-bottom: 28px; }

.auth-icon {
    width: 68px; height: 68px;
    margin: 0 auto 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.auth-title { font-size: 24px; font-weight: 900; color: var(--secondary); margin-bottom: 6px; }
.auth-sub { font-size: 14px; color: var(--text-medium); line-height: 1.6; }

/* Tabs Entrar/Registar */
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-light);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 26px;
}

.auth-tab {
    padding: 12px;
    border: none;
    background: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s;
}

.auth-tab.active { background: white; color: var(--secondary); box-shadow: 0 4px 12px rgba(26,43,74,0.1); }

/* Selector de perfil */
.role-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

.role-card {
    border: 2px solid #E8EBF3;
    background: white;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    position: relative;
}

.role-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }

.role-card.selected { border-color: var(--primary); background: #FFF8F2; box-shadow: 0 8px 22px rgba(255,107,0,0.15); }

.role-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px; right: 10px;
    width: 22px; height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon {
    width: 52px; height: 52px;
    margin: 0 auto 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.role-card:nth-child(1) .role-icon { background: #E4EEFF; color: #2563EB; }
.role-card:nth-child(2) .role-icon { background: #FFF0E3; color: var(--primary-dark); }

.role-name { font-size: 14.5px; font-weight: 900; color: var(--secondary); }
.role-desc { font-size: 11.5px; color: var(--text-light); font-weight: 600; margin-top: 4px; line-height: 1.45; }

/* Campos extra do vendedor */
.seller-fields {
    background: #FFF8F2;
    border: 1.5px dashed rgba(255,107,0,0.35);
    border-radius: 16px;
    padding: 18px 18px 4px;
    margin-bottom: 16px;
    animation: fadeInDown 0.35s ease both;
}

.seller-fields-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-error {
    display: none;
    background: #FFE9E9;
    color: #C62828;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    align-items: center;
    gap: 10px;
}

.auth-error.show { display: flex; }

.auth-foot { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-light); font-weight: 600; }
.auth-foot a { color: var(--primary-dark); text-decoration: none; font-weight: 800; }

.demo-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 13px 16px;
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 600;
    line-height: 1.7;
}

.demo-box strong { color: var(--secondary); }
.demo-box code { background: white; padding: 2px 7px; border-radius: 6px; font-size: 11.5px; color: var(--primary-dark); font-weight: 800; }

.pass-wrap { position: relative; }

.pass-toggle {
    position: absolute;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.2s;
}

.pass-toggle:hover { color: var(--primary-dark); background: #FFF0E3; }

@media (max-width: 560px) {
    .auth-card { padding: 34px 24px; }
    .user-chip-info { display: none; }
}

/* ===== LANDING PAGES (construtor no painel) ===== */
.theme-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.theme-swatch {
    border: 2.5px solid transparent;
    border-radius: 14px;
    height: 58px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    overflow: hidden;
}

.theme-swatch:hover { transform: translateY(-2px); }
.theme-swatch.selected { border-color: var(--secondary); box-shadow: 0 6px 16px rgba(26,43,74,0.25); }

.theme-swatch.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.theme-swatch span {
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    text-align: center;
    font-size: 8.5px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-link-box {
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 8px;
}

.lp-link-box code { flex: 1; font-size: 11.5px; color: var(--primary-dark); font-weight: 700; word-break: break-all; }

/* ===== LANDING PAGE PÚBLICA (p.html) ===== */
.lp-body { font-family: 'Inter', sans-serif; background: var(--bg-light); color: var(--text-dark); }

.lp-hero {
    min-height: 70vh;
    background: var(--lp-grad);
    color: white;
    padding: 50px 20px 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 65%);
}

.lp-wrap { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.7s ease both;
}

.lp-badge i { color: var(--lp-accent2); animation: blink 1.5s ease-in-out infinite; }

.lp-title { font-size: 40px; font-weight: 900; line-height: 1.12; margin-bottom: 16px; animation: fadeInUp 0.7s ease 0.15s both; }
.lp-sub { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 30px; animation: fadeInUp 0.7s ease 0.3s both; }

.lp-product-card {
    background: white;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    animation: fadeInUp 0.7s ease 0.45s both;
}

.lp-product-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.lp-product-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.lp-product-img .emoji-xl { font-size: 110px; }

.lp-product-name { font-size: 20px; font-weight: 900; color: var(--secondary); margin-bottom: 12px; }

.lp-price-row { display: flex; align-items: baseline; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }

.lp-old-price { font-size: 17px; font-weight: 700; color: var(--text-light); text-decoration: line-through; }
.lp-price { font-size: 38px; font-weight: 900; color: var(--lp-accent); }

.lp-save-pill {
    display: inline-block;
    background: #E7F9EE;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Countdown */
.lp-countdown { margin: 26px 0 8px; animation: fadeInUp 0.7s ease 0.55s both; }
.lp-countdown-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }

.lp-timer { display: flex; justify-content: center; gap: 10px; }

.lp-timer-cell {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 12px 8px;
    min-width: 72px;
}

.lp-timer-num { font-size: 28px; font-weight: 900; line-height: 1; }
.lp-timer-unit { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-top: 5px; }

/* CTA */
.lp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
    animation: lp-pulse 2s ease-in-out infinite;
    width: 100%;
    max-width: 460px;
}

.lp-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(37, 211, 102, 0.6); }

@keyframes lp-pulse {
    0%, 100% { box-shadow: 0 16px 40px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 16px 40px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); }
}

.lp-cta-note { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 12px; }
.lp-cta-note i { color: var(--lp-accent2); }

/* Secções claras */
.lp-section { padding: 60px 20px; }
.lp-section.alt { background: white; }

.lp-h2 { font-size: 26px; font-weight: 900; color: var(--secondary); text-align: center; margin-bottom: 28px; }

.lp-benefits { max-width: 560px; margin: 0 auto; display: grid; gap: 12px; }

.lp-benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-medium);
}

.lp-section.alt .lp-benefit { background: var(--bg-light); box-shadow: none; }

.lp-benefit i {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #E7F9EE;
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.lp-testimonial {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.lp-testimonial .stars { justify-content: center; display: flex; gap: 3px; }
.lp-testimonial-text { font-size: 15.5px; line-height: 1.75; color: var(--text-medium); font-style: italic; margin-bottom: 14px; }
.lp-testimonial-author { font-size: 13.5px; font-weight: 800; color: var(--secondary); }

.lp-trust-row { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.lp-trust { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; color: var(--text-medium); }
.lp-trust i { color: var(--lp-accent); font-size: 15px; }

.lp-footer { text-align: center; padding: 26px 20px 34px; font-size: 12px; color: var(--text-light); font-weight: 600; }
.lp-footer a { color: var(--primary-dark); text-decoration: none; font-weight: 800; }

.lp-float-wa {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wa), var(--wa-dark));
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37,211,102,0.5);
    z-index: 100;
    animation: floaty 3s ease-in-out infinite;
}

@media (max-width: 560px) {
    .lp-title { font-size: 30px; }
    .lp-price { font-size: 32px; }
    .lp-timer-cell { min-width: 62px; }
    .theme-picker { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ADMIN ===== */
.admin-navbar { background: linear-gradient(135deg, #2D1B69, #1A1A2E) !important; }

.admin-badge-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(124,58,237,0.25);
    border: 1px solid rgba(124,58,237,0.5);
    color: #C4B5FD;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
}

.dash-nav button.active.admin-active {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.admin-side-badge .avatar { background: linear-gradient(135deg, #7C3AED, #5B21B6) !important; color: white; font-size: 18px; }

.mini-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mini-bar-label { width: 120px; font-size: 12.5px; font-weight: 800; color: var(--secondary); flex-shrink: 0; }
.mini-bar-track { flex: 1; height: 10px; background: #EFF1F7; border-radius: 50px; overflow: hidden; }
.mini-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, #7C3AED, #A78BFA); transition: width 0.8s cubic-bezier(0.22,1,0.36,1); }
.mini-bar-val { width: 90px; text-align: right; font-size: 12px; font-weight: 900; color: var(--text-medium); flex-shrink: 0; }

.role-pill { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 10.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; }
.role-admin    { background: #F0EAFF; color: #7C3AED; }
.role-vendedor { background: #FFF0E3; color: var(--primary-dark); }
.role-cliente  { background: #E4EEFF; color: #2563EB; }

.st-suspensa { background: #FFE9E9; color: #C62828; }
.st-oculto   { background: #ECEFF4; color: #607089; }

.admin-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFF8F2;
    border: 1.5px dashed rgba(255,107,0,0.4);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.admin-alert i { color: var(--primary-dark); font-size: 16px; }

/* ===== ADMIN: gráficos de crescimento ===== */
.growth-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }

.metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #E8EBF3;
    background: white;
    color: var(--text-medium);
    padding: 9px 17px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s;
}

.metric-pill i { font-size: 12px; }
.metric-pill:hover { border-color: #C4B5FD; color: #7C3AED; }

.metric-pill.active {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.growth-kpis { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 16px; }

.growth-kpi { display: flex; flex-direction: column; }
.growth-kpi-value { font-size: 26px; font-weight: 900; color: var(--secondary); line-height: 1.1; }
.growth-kpi-label { font-size: 11.5px; font-weight: 700; color: var(--text-light); margin-top: 3px; }

.delta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 900;
    padding: 4px 11px;
    border-radius: 50px;
    margin-top: 6px;
    width: fit-content;
}

.delta-up   { background: #E7F9EE; color: var(--accent-dark); }
.delta-down { background: #FFE9E9; color: #C62828; }
.delta-flat { background: #ECEFF4; color: #607089; }

.growth-chart-wrap { width: 100%; overflow: hidden; }
.growth-chart-wrap svg { width: 100%; height: auto; display: block; }

.gc-dot { transition: r 0.15s; cursor: pointer; }
.gc-dot:hover { r: 7; }

.gc-grid { stroke: #EDF0F7; stroke-width: 1; }
.gc-axis-label { font-size: 11px; font-weight: 700; fill: #7A7A98; font-family: 'Inter', sans-serif; }
.gc-val-label { font-size: 10.5px; font-weight: 800; fill: #4A4A68; font-family: 'Inter', sans-serif; }

/* ===== BARRA DE ANÚNCIO (personalizável pelo admin) ===== */
.announce-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    z-index: 120;
    padding: 0 44px;
    text-align: center;
}

.announce-bar a { color: white; text-decoration: underline; text-underline-offset: 3px; }

.announce-close {
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.announce-close:hover { background: rgba(255,255,255,0.3); }

body.has-announce .navbar { top: 40px; }

/* ===== ADMIN: editor da página inicial ===== */
.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 4px;
    border-bottom: 1px solid #F5F6FA;
}

.switch-row:last-child { border-bottom: none; }
.switch-label { font-size: 14px; font-weight: 700; color: var(--secondary); display: flex; align-items: center; gap: 10px; }
.switch-label i { color: #7C3AED; width: 18px; text-align: center; }
.switch-label small { display: block; font-size: 11.5px; color: var(--text-light); font-weight: 600; }

.switch {
    position: relative;
    width: 48px; height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.switch input { opacity: 0; width: 0; height: 0; }

.switch .track {
    position: absolute;
    inset: 0;
    background: #D5DAE6;
    border-radius: 50px;
    transition: background 0.25s;
}

.switch .track::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(22px); }

.color-row { display: flex; gap: 16px; flex-wrap: wrap; }

.color-field { display: flex; align-items: center; gap: 10px; }

.color-field input[type="color"] {
    width: 52px; height: 44px;
    border: 2px solid #E8EBF3;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    padding: 4px;
}

.color-field label { font-size: 12.5px; font-weight: 800; color: var(--secondary); }

.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }

.featured-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #E8EBF3;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.featured-item:hover { border-color: #C4B5FD; }
.featured-item.on { border-color: #7C3AED; background: #FAF8FF; }

.featured-item .tbl-thumb { width: 36px; height: 36px; font-size: 16px; }
.featured-item .fi-name { font-size: 12px; font-weight: 800; color: var(--secondary); line-height: 1.25; flex: 1; }
.featured-item .fi-check { color: #7C3AED; font-size: 15px; opacity: 0; transition: opacity 0.2s; }
.featured-item.on .fi-check { opacity: 1; }

.editor-actions {
    position: sticky;
    bottom: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: rgba(248,249,252,0.92);
    backdrop-filter: blur(8px);
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.product-tag.destaque { background: linear-gradient(135deg, #7C3AED, #A78BFA); }

/* ===== ADMIN: upload de imagem do hero ===== */
.bg-upload-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: stretch; }

.bg-preview {
    width: 240px;
    min-height: 130px;
    border-radius: 14px;
    border: 2px dashed #D5DAE6;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bg-preview.has-img { border-style: solid; border-color: #7C3AED; color: transparent; }

.bg-preview .bg-remove {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    border: none;
    border-radius: 8px;
    background: rgba(16,29,51,0.75);
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: none;
}

.bg-preview.has-img .bg-remove { display: block; }

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid #E8EBF3;
    background: white;
    color: var(--text-medium);
    padding: 12px 20px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s;
}

.upload-btn:hover { border-color: #7C3AED; color: #7C3AED; background: #FAF8FF; }

.sched-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: 4px;
}

.sched-live    { background: #E7F9EE; color: var(--accent-dark); }
.sched-waiting { background: #FFF3E0; color: #E65100; }
.sched-ended   { background: #ECEFF4; color: #607089; }

/* ===== FAVORITOS ===== */
.fav-btn {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.94);
    color: #C6CBDA;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26,43,74,0.18);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-btn:hover { color: #E91E63; transform: scale(1.12); }
.fav-btn.active { color: white; background: linear-gradient(135deg, #E91E63, #F06292); }

.fav-btn.static {
    position: static;
    width: 56px; height: 56px;
    border-radius: 14px;
    border: 2px solid #E8EBF3;
    background: white;
    box-shadow: none;
    font-size: 18px;
    flex: 0 0 auto;
}

.fav-btn.static.active { border-color: transparent; background: linear-gradient(135deg, #E91E63, #F06292); color: white; }

/* ===== PAINEL DO CLIENTE: pedidos ===== */
.order-card {
    border: 1.5px solid #EEF0F6;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: all 0.25s;
    background: white;
}

.order-card:hover { border-color: rgba(255,107,0,0.35); box-shadow: var(--shadow-sm); }

.order-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.order-id { font-size: 14px; font-weight: 900; color: var(--secondary); }
.order-date { font-size: 12px; color: var(--text-light); font-weight: 700; }

.order-store-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-medium);
}

.order-store-chip i { color: var(--primary); font-size: 11px; }

.order-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.order-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 600;
}

.order-item-thumb {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: #F6F7FB;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.order-item-thumb img { width: 100%; height: 100%; object-fit: contain; }

.order-item-row .qty { color: var(--text-light); font-size: 12px; }
.order-item-row .sub { margin-left: auto; font-weight: 900; color: var(--secondary); font-size: 12.5px; }

.order-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #F1F3F9;
}

.order-total { font-size: 16px; font-weight: 900; color: var(--primary-dark); }
.order-total small { display: block; font-size: 10.5px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.order-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    padding: 10px 16px;
    border-radius: 11px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.order-btn.wa { background: #E7F9EE; color: var(--wa-dark); }
.order-btn.wa:hover { background: var(--wa); color: white; }
.order-btn.repeat { background: #FFF0E3; color: var(--primary-dark); }
.order-btn.repeat:hover { background: var(--primary); color: white; }

/* ===== PÁGINAS DE CONTEÚDO (FAQ, Termos, Planos...) ===== */
.doc-wrap { max-width: 860px; margin: -30px auto 0; padding: 0 20px 90px; position: relative; z-index: 3; }

.doc-card {
    background: white;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    padding: 40px 44px;
    margin-top: 36px;
}

.doc-card h2 { font-size: 20px; font-weight: 900; color: var(--secondary); margin: 28px 0 12px; }
.doc-card h2:first-child { margin-top: 0; }
.doc-card p, .doc-card li { font-size: 14.5px; line-height: 1.8; color: var(--text-medium); }
.doc-card ul, .doc-card ol { padding-left: 22px; margin: 10px 0 18px; }
.doc-card li { margin-bottom: 7px; }
.doc-card strong { color: var(--secondary); }
.doc-updated { font-size: 12.5px; color: var(--text-light); font-weight: 700; margin-bottom: 22px; }

/* FAQ accordion */
.faq-item {
    border: 1.5px solid #EEF0F6;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: white;
}

.faq-item[open] { border-color: rgba(255,107,0,0.4); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i.q { color: var(--primary); width: 20px; text-align: center; }
.faq-item summary .chev { margin-left: auto; color: var(--text-light); transition: transform 0.25s; }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--primary); }
.faq-body { padding: 0 20px 18px 52px; font-size: 14px; line-height: 1.75; color: var(--text-medium); }

/* Planos */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }

.plan-card {
    background: white;
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan-card.popular { border-color: var(--primary); }

.plan-pop-tag {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 18px rgba(255,107,0,0.4);
}

.plan-name { font-size: 17px; font-weight: 900; color: var(--secondary); }
.plan-price { font-size: 34px; font-weight: 900; color: var(--primary-dark); margin: 12px 0 2px; }
.plan-price small { font-size: 13px; color: var(--text-light); font-weight: 700; }
.plan-desc { font-size: 13px; color: var(--text-light); font-weight: 600; margin-bottom: 20px; }

.plan-feats { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-medium); font-weight: 600; margin-bottom: 11px; line-height: 1.5; }
.plan-feats li i { color: var(--accent); margin-top: 3px; }
.plan-feats li.off { opacity: 0.45; }
.plan-feats li.off i { color: #C6CBDA; }

/* Dicas */
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.tip-card:hover { transform: translateY(-5px); border-color: rgba(255,107,0,0.3); }

.tip-num {
    width: 42px; height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 17px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px rgba(255,107,0,0.3);
}

.tip-title { font-size: 16px; font-weight: 900; color: var(--secondary); margin-bottom: 8px; }
.tip-text { font-size: 13.5px; line-height: 1.7; color: var(--text-medium); }

@media (max-width: 860px) { .plans-grid { grid-template-columns: 1fr; } .tips-grid { grid-template-columns: 1fr; } .doc-card { padding: 28px 22px; } }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

.scroll-animate { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-animate.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .steps-grid, .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dash-layout { grid-template-columns: 1fr; }
    .dash-side { position: static; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .dash-store-badge { margin-bottom: 0; }
    .dash-nav { display: flex; flex-wrap: wrap; gap: 6px; }
    .dash-nav button { width: auto; margin-bottom: 0; }
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { display: flex; justify-content: center; }
    .chat-card { margin: 0; }
    .nav-links { display: none; }
    .hero-title { font-size: 38px; }
    .section-title { font-size: 30px; }
    .cta-title { font-size: 30px; }
    .detail-card { grid-template-columns: 1fr; }
    .detail-gallery { min-height: 320px; border-right: none; border-bottom: 1px solid #F1F3F9; }
    .detail-info { padding: 30px 24px; }
    .detail-perks { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .steps-grid, .stores-grid, .footer-grid, .picker-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 32px; }
    .tag-sales { left: -8px; }
    .tag-secure { right: -4px; }
    .sell-btn span { display: none; }
    .dash-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
