.fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}


.store-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.store-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.store-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.store-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--wd-primary-color) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-thumbnail-placeholder .fa {
    font-size: 60px;
    width: 60px;
    height: 60px;
    color: color-mix(in srgb, var(--wd-primary-color) 50%, transparent);
}

.store-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.store-status-badge.open {
    background: #4CAF50;
}

.store-status-badge.closed {
    background: #F44336;
}

.store-status-badge.renovation {
    background: #FF9800;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: #F7490F;
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discount-badge .fa {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.store-card-content {
    padding: 20px;
}

.store-card-title {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.store-card-content .store-card-title a {
    color: var(--wd-alternative-color);
    text-decoration: none;
    transition: color 0.3s;
}

.store-card-content .store-card-title a:hover {
    color: var(--wd-alternative-color);
}

.store-card-meta {
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: black;
}

.meta-item .fa {
    margin-left: 5px;
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--wd-alternative-color);
}

.store-card-excerpt {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

.store-card-categories {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.store-category-tag {
    padding: 4px 10px;
    background: #e8f4fd;
    color: var(--wd-primary-color);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.store-card-actions {
    text-align: left;
}

.view-store-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--btn-accented-bgcolor);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.view-store-btn:hover {
    background: var(--btn-accented-bgcolor-hover);
    color: white;
}

.view-store-btn .fa {
    margin-right: 5px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}