/* Screen reader only */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
}

/* NEW badge pill */
.badge-new {
display: inline-block;
background: #dbeafe;
color: #1d4ed8;
font-size: 0.65rem;
font-weight: 700;
padding: 2px 7px;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 0.3px;
vertical-align: middle;
line-height: 1.4;
}

/* =========================================================
   FLOATING BUTTONS: WhatsApp & Back to Top
   ========================================================= */
.fab-whatsapp,
.fab-back-to-top {
    position: fixed;
    right: 20px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s, opacity .25s;
}
.fab-whatsapp {
    bottom: 20px;
    background: #25D366;
}
.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
}
.fab-back-to-top {
    bottom: 82px;
    background: #333;
    opacity: 0;
    pointer-events: none;
}
.fab-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.fab-back-to-top:hover { background: #111; }

/* Breadcrumb back arrow */
.breadcrumb-back {
    font-size: 1.2rem;
    margin-right: 0.3rem;
    text-decoration: none;
}

/* =========================================================
   COMING SOON VIEW
   ========================================================= */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 3rem 1.5rem;
}
.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.coming-soon-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}
.coming-soon-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}
.coming-soon-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #1a56db;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.coming-soon-btn:hover {
    background: #1444b0;
}

/* =========================================
   VIEW ALL PAGES -- Grid Layout
   ========================================= */
.viewall-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
}
.viewall-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.viewall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.viewall-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.viewall-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.viewall-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.viewall-card-body {
    padding: 1rem;
}
.viewall-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.viewall-card-price {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* --- Search Results Dropdown --- */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.search-result-item {
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}
.search-result-item:hover {
    background: #f5f5f5;
}
.search-result-empty {
    padding: 0.8rem;
    color: #999;
}
