/* ================================
   LOJA.CSS — Cariri Estampa 2026
   Catálogo Premium com Search,
   Sort Drawer e Mini Cart
   ================================ */

:root {
    --red:       #E53E3E;
    --red-lt:    #FFF5F5;
    --red-dk:    #C53030;
    --green:     #38A169;
    --green-lt:  #F0FFF4;
    --gray-900:  #1A202C;
    --gray-700:  #4A5568;
    --gray-500:  #718096;
    --gray-200:  #EDF2F7;
    --gray-100:  #F7FAFC;
    --white:     #FFFFFF;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --radius-xl: 24px;
    --radius-pill: 9999px;
    --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* -------- HEADER -------- */
.loja-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
}

.loja-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 12px;
}

.loja-header__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-back {
    width: 38px; height: 38px;
    border-radius: 14px;
    background: var(--gray-100);
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-700);
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-back:hover { background: var(--red-lt); color: var(--red); }

.loja-header__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1;
}
.loja-header__count {
    font-size: .72rem;
    color: var(--gray-500);
    font-weight: 500;
}

.loja-header__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-action-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.icon-action-btn i { font-size: 1.25rem; }
.icon-action-btn:hover { background: var(--gray-100); color: var(--gray-900); }

.sort-btn {
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-pill);
    padding: 8px 14px;
}
.sort-btn:hover { background: var(--gray-200); }
.sort-btn.active-sort { background: var(--red-lt); color: var(--red); }

.cart-action-btn {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.cart-action-btn:hover { background: var(--gray-100); color: var(--red); }
.cart-action-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--red);
    color: #fff;
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    transition: transform .2s;
}

/* -------- SEARCH BAR -------- */
.search-bar-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
    background: var(--white);
    border-top: 1px solid transparent;
}
.search-bar-wrap.open {
    max-height: 80px;
    border-color: var(--gray-200);
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 12px 16px;
    margin: 10px 0;
}
.search-bar-icon { color: var(--gray-500); font-size: 1.2rem; flex-shrink: 0; }
.search-bar-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--gray-900);
    outline: none;
}
.search-bar-input::placeholder { color: var(--gray-500); }
.search-bar-clear {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--gray-700);
    font-size: .85rem;
    opacity: 0;
    transition: var(--transition);
}
.search-bar-clear.visible { opacity: 1; }
.search-bar-clear:hover { background: var(--red-lt); color: var(--red); }

.search-suggestions {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    position: absolute; /* Não empurra o conteúdo */
    width: calc(100% - 32px); /* Alinhado ao container */
    left: 16px;
}

.suggestion-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--gray-100);
}

.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--gray-100); }

.suggestion-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--gray-200);
}

.suggestion-info { display: flex; flex-direction: column; }
.suggestion-name { font-weight: 600; font-size: 0.9rem; color: var(--gray-900); }
.suggestion-cat { font-size: 0.75rem; color: var(--gray-500); }


/* -------- MAIN -------- */
.loja-main {
    padding: 0 0 0;
    /* Espaço suficiente para a floating nav não cobrir produtos */
    padding-bottom: 120px;
}

/* -------- CATEGORY STRIP -------- */
.category-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 20px 0 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip::after {
    content: '';
    flex: 0 0 8px;
}

.cat-tab {
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    box-shadow: var(--shadow-sm);
}
.cat-tab:hover { border-color: var(--red); color: var(--red); }
.cat-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(229,62,62,.3);
}

/* -------- SKELETON -------- */
.prod-skeleton {
    height: 320px;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, #f0f4f8 25%, #e2e8f0 50%, #f0f4f8 75%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
    0% { background-position: -400% 0; }
    100% { background-position: 400% 0; }
}

/* -------- PRODUCT CARD (GRID) -------- */
.prod-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: all .3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante altura igual na linha */
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.prod-card__img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-100);
}
.prod-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.prod-card:hover .prod-card__img-wrap img { transform: scale(1.1); }

.prod-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: .7rem;
    font-weight: 800;
    background: var(--red);
    color: var(--white);
    letter-spacing: .05em;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3);
}
.prod-card__badge.green { background: var(--green); box-shadow: 0 4px 10px rgba(56, 161, 105, 0.3); }
.prod-card__badge.dark { background: var(--gray-900); }

.prod-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1; /* Faz o corpo crescer para alinhar o footer na base */
}

.prod-card__cat {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.prod-card__name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em; /* Garante que títulos curtos ocupem o mesmo espaço de 2 linhas */
}

.prod-card__stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}
.prod-card__stars i { font-size: .7rem; color: #F6AD55; }
.prod-card__stars span { font-size: .7rem; color: var(--gray-500); margin-left: 2px; }

.prod-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-card__price-wrap { 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end;
}
.prod-card__old-price {
    font-size: .72rem;
    color: var(--gray-500);
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 2px;
}
.prod-card__price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--red);
    line-height: 1;
}

.btn-add-to-cart {
    width: 38px; height: 38px;
    border-radius: 12px;
    border: none;
    background: var(--red);
    color: var(--white);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-add-to-cart:hover { background: var(--red-dk); transform: scale(1.1); }
.btn-add-to-cart.added { background: var(--green); }

/* -------- PRODUCT CARD (LIST) -------- */
.list-view .prod-card {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
}
.list-view .prod-card__img-wrap {
    width: 110px;
    min-height: 110px;
    aspect-ratio: unset;
    flex-shrink: 0;
    border-radius: 0;
    border-radius: 18px 0 0 18px;
}
.list-view .prod-card__body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.list-view .prod-card__name { -webkit-line-clamp: 1; }
.list-view .prod-card__desc {
    font-size: .8rem;
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

/* -------- EMPTY STATE -------- */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.empty-state p { color: var(--gray-500); font-size: .95rem; line-height: 1.6; margin-bottom: 24px; }
.btn-reset-filter {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-reset-filter:hover { background: var(--red-dk); }

/* -------- DRAWER (BASE) -------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,20,30,.45);
    backdrop-filter: blur(3px);
    z-index: 10000; /* Acima da floating nav (9999) */
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* -------- SORT DRAWER -------- */
.sort-drawer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-radius: 28px 28px 0 0;
    padding: 12px 24px 48px;
    z-index: 10001; /* Acima do overlay (10000) e da floating nav (9999) */
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -8px 40px rgba(0,0,0,.14);
    /* No mobile, dar espaço para não ficar atrás da floating nav */
    padding-bottom: max(48px, env(safe-area-inset-bottom));
}
.sort-drawer.open { transform: translateY(0); }

.sort-drawer__handle {
    width: 40px; height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-pill);
    margin: 0 auto 20px;
}
.sort-drawer__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.sort-options { display: flex; flex-direction: column; gap: 6px; }
.sort-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}
.sort-opt i:first-child { font-size: 1.2rem; }
.sort-opt .sort-check { margin-left: auto; color: var(--red); opacity: 0; transition: .2s; font-size: 1rem; }
.sort-opt:hover { border-color: var(--red); color: var(--red); background: var(--red-lt); }
.sort-opt.active {
    border-color: var(--red);
    background: var(--red-lt);
    color: var(--red);
}
.sort-opt.active .sort-check { opacity: 1; }

/* -------- MINI CART DRAWER -------- */
.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 380px;
    max-width: 100vw;
    background: var(--white);
    z-index: 10001; /* Mesmo nível dos outros drawers */
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--gray-200);
}
.cart-drawer__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--gray-900);
    margin: 0;
}
.cart-drawer__subtitle { font-size: .78rem; color: var(--gray-500); }
.cart-drawer__close {
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--gray-100);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}
.cart-drawer__close:hover { background: var(--red-lt); color: var(--red); }

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini Cart Item */
.mini-cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: var(--gray-100);
    border-radius: 18px;
    padding: 10px 12px;
    animation: slideInRight .25s ease;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.mini-cart-item__img {
    width: 60px; height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.mini-cart-item__info { flex: 1; min-width: 0; }
.mini-cart-item__name {
    font-weight: 600;
    font-size: .82rem;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.mini-cart-item__price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--red);
}
.mini-cart-item__qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    margin-top: 6px;
}
.qty-btn {
    width: 22px; height: 22px;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-size: .9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: .15s;
}
.qty-btn:hover { background: var(--red-lt); color: var(--red); }
.qty-num { font-size: .82rem; font-weight: 700; min-width: 16px; text-align: center; }
.btn-remove-mini {
    width: 30px; height: 30px;
    border: none;
    background: var(--white);
    color: var(--gray-500);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    transition: .15s;
    flex-shrink: 0;
}
.btn-remove-mini:hover { background: var(--red-lt); color: var(--red); }

.cart-drawer__footer {
    padding: 16px 20px 28px;
    border-top: 1px solid var(--gray-200);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: .9rem;
    color: var(--gray-700);
}
.cart-total-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-900);
}
.btn-checkout {
    width: 100%;
    background: #25D366;
    color: var(--white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.btn-checkout:hover { background: #1EA855; transform: translateY(-2px); }
.cart-full-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: .2s;
}
.cart-full-link:hover { color: var(--red); }

.cart-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.cart-empty-state p { font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.cart-empty-state span { font-size: .82rem; color: var(--gray-500); }

/* -------- RESPONSIVO -------- */
@media (max-width: 991px) {
    .category-strip {
        padding-left: 16px;
        padding-right: 16px;
        margin-left: -16px;
        margin-right: -16px;
    }
    .cart-drawer { width: 100%; }
    /* Espaço extra para floating nav não cobrir o últimos produto */
    .loja-main { padding-bottom: 130px; }
    /* O botão de carrinho do header fica oculto no mobile */
    .cart-action-btn, #openCartBtn { display: none !important; }
}
@media (max-width: 576px) {
    .loja-header__title { font-size: 1rem; }
    .icon-action-btn { padding: 6px 8px; }
    .sort-btn span { display: none; } /* Remove texto "Ordenar" deixa só ícone */
}

/* =========================================
   PRODUCT MODAL (Detalhes) - PREMIUM UI
   ========================================= */
.product-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    z-index: 99999; /* Máximo possível */
    overflow-y: auto; overflow-x: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.product-modal.active { transform: translateY(0); }

.product-modal__close {
    position: fixed;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gray-900);
    z-index: 10; cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}

.product-modal__img-wrap {
    position: relative;
    width: 100%; height: 50vh;
    background: var(--gray-100);
    flex-shrink: 0;
}
.product-modal__img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.product-modal__badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--red); color: white;
    padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: 0.85rem; font-weight: 700;
    box-shadow: 0 4px 12px rgba(229,62,62,0.3);
}

.product-modal__info {
    flex: 1;
    background: var(--white);
}

.product-modal__title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 1.75rem; line-height: 1.2;
    color: var(--gray-900); margin-bottom: 8px;
}
.product-modal__stars { color: #F6AD55; margin-bottom: 12px; }
.product-modal__stars span { font-size: 0.85rem; color: var(--gray-500); margin-left: 6px; }

.product-modal__price-wrap { display: flex; align-items: baseline; gap: 10px; }
.product-modal__old-price { text-decoration: line-through; color: var(--gray-400); font-size: 1.1rem; }
.product-modal__price { 
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.2rem; font-weight: 800; color: var(--red); 
}

.product-modal__desc { font-size: 1rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 30px; }

.product-modal__bottom {
    position: sticky; bottom: 0; left: 0; width: 100%;
    background: var(--white);
    padding: 16px 0 32px;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    z-index: 20;
}

.qty-control {
    display: flex; align-items: center;
    background: var(--gray-100); border-radius: var(--radius-pill);
    padding: 4px; border: 1px solid var(--gray-200);
}
.qty-control button {
    width: 40px; height: 40px; border: none; background: var(--white);
    border-radius: 50%; font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.05); color: var(--gray-700);
    transition: .2s;
}
.qty-control button:hover { background: var(--gray-100); color: var(--red); }
.qty-control input {
    width: 44px; border: none; background: transparent; text-align: center;
    font-weight: 700; font-size: 1.15rem; color: var(--gray-900);
}

.btn-primary-app {
    background: var(--red); color: white; border: none;
    border-radius: var(--radius-pill); font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 1.1rem; padding: 14px 24px;
    transition: .3s; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 15px rgba(229,62,62,0.25);
}
.btn-primary-app:hover { transform: translateY(-3px); box-shadow: 0 12px 20px rgba(229,62,62,0.3); }
