/* Stores page styles - consistent with marina list */
.stores-section {
    background-color: #fff;
}

.stores-filters .stores-input-wrapper {
    position: relative;
}

.stores-filters .stores-input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #7a8894;
    font-size: 1rem;
    pointer-events: none;
}

.stores-filters .stores-input {
    height: 48px;
    padding-left: 40px;
    border-radius: 12px;
    border: 1px solid #e2e6ea;
    background-color: #fff;
    font-size: 0.95rem;
}

.stores-filters .stores-input:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.08);
    outline: none;
}

.stores-filters .stores-select {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2e6ea;
    background-color: #fff;
    font-size: 0.95rem;
}

.stores-filters .stores-select:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.08);
    outline: none;
}

.stores-grid .store-col {
    display: flex;
}

.store-card {
    width: 100%;
    border: 1px solid #eef1f4;
    border-radius: 16px;
    background-color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(22, 43, 72, 0.1);
}

.store-card .store-card-body {
    padding: 20px 22px 12px 22px;
    flex-grow: 1;
}

.store-card .store-category-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0b5ed7;
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 999px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.store-card .store-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #162b48;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.store-card .store-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334a63;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 12px;
}

.store-card .store-phone:hover {
    color: #0b5ed7;
}

.store-card .store-phone i {
    font-size: 0.95rem;
    color: #0b5ed7;
}

.store-card .store-marina {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    border-top: 1px dashed #eef1f4;
}

.store-card .store-marina-label {
    font-size: 0.75rem;
    color: #7a8894;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.store-card .store-marina-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #162b48;
}

.store-card .store-card-footer {
    padding: 12px 22px 20px 22px;
    background-color: transparent;
    border-top: 0;
}

.store-card .store-marina-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    font-weight: 600;
}

.stores-empty {
    padding: 40px 0;
}

.stores-apply-btn {
    height: 48px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stores-clear-btn {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2e6ea;
    background-color: #fff;
    color: #334a63;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stores-clear-btn:hover,
.stores-clear-btn:focus {
    background-color: #f4f6f9;
    color: #0b5ed7;
    border-color: #0b5ed7;
}

.stores-loading {
    padding: 24px 0;
}

.stores-loading .stores-loading-text {
    color: #7a8894;
    font-size: 0.9rem;
}

#stores-sentinel {
    height: 1px;
    width: 100%;
}
