/* Location Specific Styles */

/* —— App-like location listing (uniform type, cards, single action row) —— */
.location-page {
    --loc-fs: 1rem;
    --loc-fs-sm: 0.9375rem;
    --loc-leading: 1.45;
    --loc-radius: 12px;
    --loc-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --loc-shadow-hover: 0 8px 24px rgba(15, 23, 42, 0.12);
    font-size: var(--loc-fs);
    line-height: var(--loc-leading);
    background: #f3f4f6;
    min-height: 60vh;
}

.location-page__header.sticky-top {
    top: 72px;
    z-index: 1040;
}

/* Below desktop .desktop-nav (sticky); nav z-index 1060 stays on top */
@media (min-width: 992px) {
    .location-page__header.sticky-top {
        top: 88px;
    }
}

.loc-text-muted {
    color: #64748b;
    font-size: var(--loc-fs-sm);
}

.location-page__breadcrumb {
    font-size: var(--loc-fs-sm);
}

.location-page__breadcrumb .breadcrumb-item.active {
    color: #475569;
    font-size: var(--loc-fs-sm);
}

.location-page__title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #0f172a;
}

@media (min-width: 768px) {
    .location-page__title {
        font-size: 1.35rem;
    }
}

.location-page__meta-line {
    font-size: var(--loc-fs-sm);
    line-height: 1.35;
}

.location-page__category-pill {
    font-size: var(--loc-fs-sm);
    padding: 0.4rem 0.9rem;
    background: #fff;
    border-color: #e2e8f0 !important;
    color: #475569;
}

.location-page__category-pill:hover {
    background: #f8fafc;
    border-color: #cbd5e1 !important;
    color: #0f172a;
}

.location-page__trust {
    background: #eef2ff;
    border-color: #e0e7ff !important;
}

.location-page__trust-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .location-page__trust-title {
        font-size: 1.125rem;
    }
}

.location-page__trust-copy {
    font-size: var(--loc-fs);
}

.location-page__section-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .location-page__section-title {
        font-size: 1.1875rem;
    }
}

.location-page__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Service card */
.location-service-card {
    background: #fff;
    border-radius: var(--loc-radius);
    box-shadow: var(--loc-shadow);
    border: 1px solid #eef2f7;
    padding: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (min-width: 768px) {
    .location-service-card {
        padding: 1.125rem 1.25rem;
    }
}

.location-service-card:hover {
    box-shadow: var(--loc-shadow-hover);
}

.location-service-card__body {
    font-size: var(--loc-fs-sm);
    color: #475569;
}

.location-service-card__name {
    font-size: var(--loc-fs);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.location-service-card__price {
    font-size: var(--loc-fs);
    font-weight: 800;
    color: #0f172a;
}

.location-service-card__features {
    font-size: var(--loc-fs-sm);
    color: #64748b;
    line-height: var(--loc-leading);
}

.location-service-card__bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #94a3b8;
    margin-top: 0.35rem;
}

.location-service-card__thumb {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

@media (min-width: 576px) {
    .location-service-card__thumb {
        width: 100px;
        height: 100px;
    }
}

/* One row: details | book | WhatsApp */
.location-service-card__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.875rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.location-service-card__link {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
    font-size: var(--loc-fs-sm);
    font-weight: 700;
    color: #4f46e5;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-service-card__link:hover {
    color: #4338ca;
    text-decoration: underline;
}

.location-service-card__book {
    flex: 0 0 auto;
    padding: 0.45rem 0.85rem;
    font-size: var(--loc-fs-sm);
    font-weight: 700;
    line-height: 1.2;
    color: #4f46e5;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.location-service-card__book:hover {
    background: #f8fafc;
    border-color: #c7d2fe;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.12);
}

.location-service-card__book:active {
    transform: scale(0.98);
}

.location-service-card__wa {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.location-service-card__wa:hover {
    color: #fff;
    background: #16a34a;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.location-service-card__wa:active {
    transform: scale(0.96);
}

@media (min-width: 992px) {
    .location-service-card__book {
        padding: 0.5rem 1rem;
    }
}

.location-page__menu-fab-label {
    font-size: var(--loc-fs-sm);
}

.location-page__sheet-row-label {
    font-size: var(--loc-fs);
}

.service-card {
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.category-chip {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.category-chip.active {
    background: var(--uc-purple);
    color: white;
    border-color: var(--uc-purple);
}

.floating-menu {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
}

@media (min-width: 992px) {
    .floating-menu {
        bottom: 40px;
    }    
}
@media (max-width: 768px) {
    .menu-list{
        display: none !important;
    }
    .category-nav{
        display: none !important;
    }
}


.action-btn{
    right: 30px;
    position: absolute;
    min-width: 80px;
    bottom: 10px;
}
 .line-through { text-decoration: line-through; opacity: 0.5; }
        
/* Service Details Bottom Sheet */
.service-details-sheet {
    max-height: 90vh;
    overflow-y: auto;
}

.story-progress-container {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    gap: 4px;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.rating-badge {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-add-service {
    background: #6366f1;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -24px;
    width: 2px;
    background: #e5e7eb;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.star-rating-pill {
    background: #fbbf24;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.text-uc-purple { color: #7c3aed; }