body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.store-header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 25px 15px;
}

.store-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.badge {
    background-color: #27ae60;
    color: white;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
}

.info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #2c3e50;
    margin: 25px 0;
    border-radius: 4px;
}

.info-box p {
    margin: 10px 0;
}

.main-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
    margin-top: 15px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #888;
    font-size: 0.85rem;
}


/* --- Directory Homepage Extra Styling --- */

.main-header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.directory-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* 3-Column Responsive Layout Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Individual Card Styling */
.store-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.card-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #2c3e50;
}

.location-tag {
    font-size: 0.85rem;
    font-weight: bold;
    color: #e67e22;
    margin: 0 0 12px 0;
}

.description-text {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Beautiful Navigation Buttons */
.visit-btn {
    display: block;
    text-align: center;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.visit-btn:hover {
    background-color: #27ae60; /* Turns green on hover */
}
