/* ============================================================
   style.css — Nila Presentes | Front-end Global
   Mobile-First | Rosa Vibrante + Dourado Suave
   ============================================================ */

/* ── Google Fonts são carregadas no layout PHP ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --rosa:        #E91E8C;
    --rosa-dark:   #C01570;
    --rosa-light:  #FDE8F3;
    --rosa-pale:   #FFF0F8;
    --dourado:     #F5A623;
    --dourado-l:   #FFF8E7;
    --branco:      #FFFFFF;
    --fundo:       #FFF8FB;
    --fundo-2:     #F9F0F6;
    --texto:       #1F1F2E;
    --texto-s:     #6B6B80;
    --border:      #F0D6E8;
    --verde:       #10B981;
    --shadow-s:    0 2px 8px rgba(0,0,0,.06);
    --shadow-m:    0 6px 24px rgba(233,30,140,.12);
    --shadow-l:    0 16px 48px rgba(233,30,140,.18);
    --radius-s:    8px;
    --radius-m:    14px;
    --radius-l:    22px;
    --trans:       .22s ease;
    --container:   1200px;
    --header-h:    68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--fundo);
    color: var(--texto);
    line-height: 1.6;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Utilitários ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0 }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
    background: var(--branco);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: var(--shadow-s);
}
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--rosa); font-weight: 700; line-height: 1.1; }
.logo-sub  { font-size: .6rem; color: var(--texto-s); font-weight: 400; letter-spacing: .05em; }

/* Search bar */
.header-search {
    flex: 1; max-width: 440px;
    position: relative;
}
.header-search input {
    width: 100%;
    padding: .6rem 1rem .6rem 2.8rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: .9rem;
    background: var(--fundo);
    outline: none;
    transition: border-color var(--trans), box-shadow var(--trans);
}
.header-search input:focus {
    border-color: var(--rosa);
    box-shadow: 0 0 0 3px rgba(233,30,140,.12);
    background: var(--branco);
}
.header-search .search-icon {
    position: absolute; left: .85rem; top: 50%; transform: translateY(-50%);
    color: var(--texto-s); pointer-events: none; font-size: .95rem;
}
.header-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
    width: 40px; height: 40px;
    border-radius: 50%; background: var(--fundo);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer; transition: all var(--trans);
    position: relative; text-decoration: none; color: var(--texto);
}
.icon-btn:hover { background: var(--rosa-light); border-color: var(--rosa); }
.cart-count {
    position: absolute; top: -5px; right: -5px;
    width: 18px; height: 18px;
    background: var(--rosa); color: #fff;
    font-size: .65rem; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--branco);
}
.hamburger-btn {
    display: none; width: 40px; height: 40px;
    border: none; background: none; font-size: 1.4rem; cursor: pointer; color: var(--texto);
}

/* Nav categorias */
.cat-nav {
    background: var(--fundo-2);
    border-bottom: 1px solid var(--border);
    overflow-x: auto; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
    display: flex; align-items: center; gap: 0;
    white-space: nowrap; padding: 0 1.25rem;
}
.cat-nav a {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .65rem 1rem;
    font-size: .82rem; font-weight: 500; color: var(--texto-s);
    border-bottom: 2.5px solid transparent;
    transition: all var(--trans); white-space: nowrap;
}
.cat-nav a:hover, .cat-nav a.active {
    color: var(--rosa); border-bottom-color: var(--rosa);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
    background: #1A1A2E;
    color: rgba(255,255,255,.75);
    margin-top: 4rem;
}
.footer-top {
    padding: 3rem 1.25rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .83rem; margin-top: .75rem; line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,.08); display: flex; align-items: center;
    justify-content: center; font-size: .9rem; transition: background var(--trans);
}
.social-btn:hover { background: var(--rosa); }
.footer-col h4 { font-size: .82rem; font-weight: 600; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--rosa); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--rosa); }

/* ── HERO BANNER ─────────────────────────────────────────────── */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 100%);
    min-height: 480px;
    display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity .7s ease;
    background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(26,26,46,.85) 0%, rgba(26,26,46,.3) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 3rem 1.25rem;
    max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero-tag {
    display: inline-block;
    background: var(--rosa); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: .35rem .85rem;
    border-radius: 20px; margin-bottom: 1rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff; line-height: 1.2; margin-bottom: .85rem;
    max-width: 560px;
}
.hero p {
    color: rgba(255,255,255,.8);
    font-size: clamp(.9rem, 2vw, 1.1rem);
    max-width: 440px; margin-bottom: 1.75rem; line-height: 1.7;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-hero {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.75rem;
    border-radius: 50px; font-size: .95rem; font-weight: 600;
    transition: all var(--trans); cursor: pointer; border: none;
    text-decoration: none;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: #fff; box-shadow: 0 4px 20px rgba(233,30,140,.4);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,30,140,.5); }
.btn-hero-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-hero-outline:hover { background: rgba(255,255,255,.22); }
.hero-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap:.5rem; z-index:3; }
.hero-dot { width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.35);cursor:pointer;transition:all var(--trans);border:none; }
.hero-dot.active { background:#fff;width:24px;border-radius:4px; }

/* ── SEÇÕES GERAIS ───────────────────────────────────────────── */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--fundo-2); }
.section-header { text-align: center; margin-bottom: 2.25rem; }
.section-eyebrow {
    display: inline-block; font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--rosa); margin-bottom: .5rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--texto); line-height: 1.25; margin-bottom: .5rem;
}
.section-sub { color: var(--texto-s); font-size: .95rem; max-width: 520px; margin: 0 auto; }

/* ── CARROSSEL DE CATEGORIAS ─────────────────────────────────── */
.cat-strip {
    display: flex; gap: 1rem;
    overflow-x: auto; padding: .5rem 0 1rem;
    scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-card {
    flex-shrink: 0; width: 130px;
    background: var(--branco);
    border-radius: var(--radius-m);
    border: 1.5px solid var(--border);
    padding: 1.25rem .75rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    cursor: pointer; transition: all var(--trans);
    text-decoration: none; color: var(--texto);
}
.cat-card:hover { border-color: var(--rosa); box-shadow: var(--shadow-m); transform: translateY(-3px); }
.cat-card.active { border-color: var(--rosa); background: var(--rosa-light); }
.cat-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--rosa-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cat-card:hover .cat-icon, .cat-card.active .cat-icon { background: var(--rosa); }
.cat-card-name { font-size: .78rem; font-weight: 600; color: var(--texto); line-height: 1.2; }

/* ── GRID DE PRODUTOS ────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.product-card {
    background: var(--branco);
    border-radius: var(--radius-m);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: var(--rosa); }
.product-img-wrap {
    position: relative; aspect-ratio: 1;
    overflow: hidden; background: var(--fundo);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
    position: absolute; top: .6rem; left: .6rem;
    background: var(--rosa); color: #fff;
    font-size: .65rem; font-weight: 700; padding: .2rem .55rem; border-radius: 20px;
}
.product-badge.novo { background: var(--dourado); color: #fff; }
.btn-wish {
    position: absolute; top: .55rem; right: .55rem;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: none; cursor: pointer; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--trans); backdrop-filter: blur(4px);
}
.btn-wish:hover { background: var(--rosa); }
.product-info { padding: .9rem; flex: 1; display: flex; flex-direction: column; gap: .35rem; }
.product-cat { font-size: .68rem; color: var(--rosa); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.product-name {
    font-size: .9rem; font-weight: 600; color: var(--texto);
    line-height: 1.35; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-prices { display: flex; align-items: baseline; gap: .5rem; margin-top: auto; }
.price-from { font-size: .75rem; color: var(--texto-s); text-decoration: line-through; }
.price-main { font-size: 1.1rem; font-weight: 700; color: var(--rosa); }
.btn-add-cart {
    width: 100%; padding: .65rem; margin-top: .5rem;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: #fff; border: none; border-radius: var(--radius-s);
    font-size: .82rem; font-weight: 600; cursor: pointer;
    transition: all var(--trans); display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.btn-add-cart:hover { opacity: .9; transform: scale(1.02); }
.btn-add-cart:active { transform: scale(.98); }

/* ── BOTÕES GERAIS ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.4rem; border-radius: 50px;
    font-size: .9rem; font-weight: 600; border: none; cursor: pointer;
    transition: all var(--trans); text-decoration: none; font-family: inherit;
}
.btn-primary { background: linear-gradient(135deg,var(--rosa),var(--rosa-dark)); color: #fff; box-shadow: 0 3px 12px rgba(233,30,140,.3); }
.btn-primary:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,.4); }
.btn-outline { background: transparent; color: var(--rosa); border: 2px solid var(--rosa); }
.btn-outline:hover { background: var(--rosa); color: #fff; }
.btn-ghost { background: var(--fundo); color: var(--texto); border: 1.5px solid var(--border); border-radius: var(--radius-s); }
.btn-ghost:hover { border-color: var(--rosa); color: var(--rosa); }
.btn-danger { background: #FEE2E2; color: #B91C1C; border: none; border-radius: var(--radius-s); }
.btn-danger:hover { background: #FECACA; }

/* ── ALERTAS ─────────────────────────────────────────────────── */
.alert { padding: 1rem 1.1rem; border-radius: var(--radius-s); font-size: .88rem; font-weight: 500; margin-bottom: 1.25rem; }
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid var(--verde); }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-info    { background: #DBEAFE; color: #1E40AF; border-left: 4px solid #3B82F6; }
.alert-warning { background: #FEF3C7; color: #92400E; border-left: 4px solid #F59E0B; }

/* ── FORMULÁRIOS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--texto); margin-bottom: .35rem; }
.form-control {
    width: 100%; padding: .7rem 1rem; font-size: .9rem;
    border: 1.5px solid var(--border); border-radius: var(--radius-s);
    background: var(--branco); outline: none; color: var(--texto);
    transition: border-color var(--trans), box-shadow var(--trans);
}
.form-control:focus { border-color: var(--rosa); box-shadow: 0 0 0 3px rgba(233,30,140,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .73rem; color: var(--texto-s); margin-top: .3rem; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--texto-s); padding: .9rem 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--texto-s); } .breadcrumb a:hover { color: var(--rosa); }
.breadcrumb-sep { color: var(--border); }

/* ── CARRINHO ────────────────────────────────────────────────── */
.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-s); object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .9rem; line-height: 1.35; }
.cart-item-price { color: var(--rosa); font-weight: 700; margin-top: .25rem; }
.cart-qty-ctrl { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1.5px solid var(--border); background: var(--fundo); font-size: 1rem; cursor: pointer; transition: all var(--trans); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--rosa); color: var(--rosa); }
.qty-num { min-width: 30px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-summary { background: var(--branco); border-radius: var(--radius-m); border: 1.5px solid var(--border); padding: 1.5rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: .65rem; }
.cart-summary-total { font-size: 1.2rem; font-weight: 700; color: var(--rosa); padding-top: .75rem; border-top: 2px solid var(--border); margin-top: .75rem; }
.frete-gratis-bar { background: var(--dourado-l); border-radius: 8px; padding: .65rem .85rem; font-size: .8rem; margin: 1rem 0; }
.frete-gratis-progress { height: 5px; background: var(--border); border-radius: 3px; margin-top: .5rem; }
.frete-gratis-fill { height: 100%; background: var(--dourado); border-radius: 3px; transition: width .4s ease; }

/* ── CHECKOUT ─────────────────────────────────────────────────── */
.checkout-steps { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; overflow-x: auto; }
.checkout-step { display: flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 500; color: var(--texto-s); white-space: nowrap; padding: .5rem .75rem; }
.checkout-step.active { color: var(--rosa); font-weight: 700; }
.checkout-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--fundo); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; transition: all var(--trans); }
.checkout-step.active .checkout-step-num { background: var(--rosa); border-color: var(--rosa); color: #fff; }
.checkout-step.done .checkout-step-num { background: var(--verde); border-color: var(--verde); color: #fff; }
.checkout-sep { flex: 1; height: 1px; background: var(--border); min-width: 20px; }
.checkout-card { background: var(--branco); border-radius: var(--radius-m); border: 1.5px solid var(--border); padding: 1.5rem; margin-bottom: 1.25rem; }
.checkout-card-title { font-size: 1rem; font-weight: 700; color: var(--texto); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }

/* ── PRODUTO DETALHE ──────────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: flex-start; }
.product-gallery { position: sticky; top: calc(var(--header-h) + 1rem); }
.gallery-main { border-radius: var(--radius-m); overflow: hidden; border: 1.5px solid var(--border); aspect-ratio: 1; background: var(--fundo); }
.gallery-main img { width:100%;height:100%;object-fit:cover; }
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; border-radius: var(--radius-s); border: 2px solid var(--border); cursor: pointer; overflow: hidden; transition: border-color var(--trans); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--rosa); }
.gallery-thumb img { width:100%;height:100%;object-fit:cover; }
.product-detail-info .product-title { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; margin-bottom: .5rem; line-height: 1.25; }
.product-detail-price { font-size: 1.9rem; font-weight: 700; color: var(--rosa); margin: .75rem 0; }
.product-detail-price .old { font-size: 1rem; color: var(--texto-s); text-decoration: line-through; margin-left: .5rem; font-weight: 400; }
.qty-picker { display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0; }
.qty-picker input { width: 55px; text-align: center; font-weight: 700; border: 1.5px solid var(--border); border-radius: var(--radius-s); padding: .5rem; }
.btn-add-detail { flex: 1; padding: .85rem 1.5rem; font-size: 1rem; }

/* ── ANIMAÇÕES ─────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0;transform:translateY(16px); } to { opacity:1;transform:translateY(0); } }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.fade-up { animation: fadeUp .4s ease both; }
.add-cart-pulse { animation: pulse .3s ease; }

/* ── RESPONSIVO ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
}
@media (max-width: 768px) {
    .header-search { display: none; }
    .hamburger-btn { display: flex; }
    .cat-nav { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero { min-height: 360px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
    .section { padding: 2.5rem 0; }
}
@media (max-width: 420px) {
    .products-grid { grid-template-columns: repeat(2,1fr); gap: .6rem; }
    .cart-summary { position: static; }
}

/* ── TOAST NOTIFICATION ───────────────────────────────────────── */
#toast-container { position:fixed;bottom:1.5rem;right:1.5rem;z-index:9999;display:flex;flex-direction:column;gap:.5rem; }
.toast {
    background:#1F1F2E;color:#fff;padding:.85rem 1.25rem;border-radius:var(--radius-s);
    font-size:.85rem;font-weight:500;box-shadow:0 4px 20px rgba(0,0,0,.2);
    display:flex;align-items:center;gap:.6rem;
    animation:fadeUp .3s ease;min-width:240px;max-width:320px;
}
.toast-success { border-left: 4px solid var(--verde); }
.toast-error   { border-left: 4px solid #EF4444; }
.toast-info    { border-left: 4px solid #3B82F6; }