/* pharmacy_premium.css */
:root {
    --store-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --store-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
}

.pharmacy-container {
    padding-top: 2rem;
    background: #fcfcfc;
}

.pharmacy-grid {
    display: grid;
    gap: 1.5rem;
}

/* Premium Store Card */
.store-card {
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--store-shadow);
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--store-shadow-hover);
    border-color: var(--site_color, #2fb68e);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--site_color, #2fb68e);
    transition: height 0.3s ease;
}

.store-card:hover::before {
    height: 100%;
}

.store-image-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.store-card:hover .store-image {
    transform: scale(1.05);
}

.store-info {
    text-align: center;
    flex-grow: 1;
}

.store-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.store-location {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-online {
    background: rgba(47, 182, 142, 0.1);
    color: #2fb68e;
}

.store-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-premium {
    flex: 1;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-main {
    background: var(--site_color, #2fb68e);
    color: #fff !important;
}

.btn-outline {
    border: 1.5px solid var(--site_color, #2fb68e);
    color: var(--site_color, #2fb68e) !important;
}

.btn-main:hover {
    background: var(--site_color_hover, #28a37e);
    box-shadow: 0 5px 15px rgba(47, 182, 142, 0.3);
}

.btn-outline:hover {
    background: rgba(47, 182, 142, 0.05);
}

/* Custom Filter UI */
.filter-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--site_color, #2fb68e);
    display: inline-block;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.custom-checkbox-container:hover {
    color: var(--site_color, #2fb68e);
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

input:checked + .custom-checkbox {
    background: var(--site_color, #2fb68e);
    border-color: var(--site_color, #2fb68e);
}

/* RTL Adjustments */
[dir="rtl"] .store-card::before {
    left: auto;
    right: 0;
}
