/* Alerts */
.shopopen24-alert { padding: 12px 16px; border-radius: 6px; margin: 16px 0; }
.shopopen24-alert.success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid #4caf50; }
.shopopen24-alert.error   { background: #ffebee; color: #b71c1c; border-left: 4px solid #f44336; }

/* Forms */
.shopopen24-form { max-width: 720px; margin: 20px 0; }
.shopopen24-form input[type="text"],
.shopopen24-form input[type="url"],
.shopopen24-form input[type="email"],
.shopopen24-form input[type="tel"],
.shopopen24-form textarea,
.shopopen24-form select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    font-size: 15px; margin-top: 4px; box-sizing: border-box;
}
.shopopen24-form textarea { min-height: 80px; font-family: inherit; }
.shopopen24-form h3 { margin-top: 24px; border-bottom: 1px solid #eee; padding-bottom: 8px; }

.shopopen24-btn,
.shopopen24-form button {
    background: #0073aa; color: #fff; padding: 12px 24px;
    border: none; border-radius: 6px; cursor: pointer;
    font-size: 16px; font-weight: 600; transition: background .2s;
}
.shopopen24-btn:hover,
.shopopen24-form button:hover { background: #005a87; }

/* Listings */
.shopopen24-listings {
    display: grid; gap: 24px; margin: 24px 0;
}
.shopopen24-listings.cols-1 { grid-template-columns: 1fr; }
.shopopen24-listings.cols-2 { grid-template-columns: repeat(2, 1fr); }
.shopopen24-listings.cols-3 { grid-template-columns: repeat(3, 1fr); }
.shopopen24-listings.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .shopopen24-listings.cols-3,
    .shopopen24-listings.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .shopopen24-listings[class*="cols-"] { grid-template-columns: 1fr; }
}

.shopopen24-listing {
    border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden;
    background: #fff; transition: box-shadow .25s, transform .25s;
}
.shopopen24-listing:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }

.shopopen24-card-link { display: block; text-decoration: none; color: inherit; }

.shopopen24-thumb { height: 180px; background: #f5f5f5; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.shopopen24-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shopopen24-thumb.placeholder { font-size: 48px; }

.shopopen24-listing-body { padding: 16px; }
.shopopen24-listing-body h3 { margin: 0 0 8px; font-size: 18px; }
.shopopen24-verified { color: #4caf50; }
.shopopen24-meta { font-size: 14px; color: #666; margin-top: 8px; }

/* Single details */
.shopopen24-details {
    margin-top: 30px; padding: 20px; background: #fafafa;
    border: 1px solid #eee; border-radius: 8px;
}
.shopopen24-details p { margin: 10px 0; line-height: 1.6; }
.shopopen24-logo img { max-width: 200px; border-radius: 8px; margin-bottom: 16px; }
.shopopen24-last-verified { color: #4caf50; font-weight: 600; }

.shopopen24-map { width: 100%; height: 320px; margin: 20px 0; border-radius: 8px; border: 1px solid #ddd; }

.shopopen24-gallery { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.shopopen24-gallery img { width: 100px; height: 100px; object-fit: cover; border-radius: 6px; }

/* Claim box */
.shopopen24-claim-box {
    margin-top: 24px; padding: 20px; border: 2px dashed #0073aa;
    border-radius: 8px; background: #f0f8ff;
}
.shopopen24-claim-box.verified {
    border-style: solid; border-color: #4caf50; background: #e8f5e9;
    color: #1b5e20; font-weight: 600; text-align: center;
}
.shopopen24-claim-box input[type="email"],
.shopopen24-claim-box input[type="text"] {
    padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    font-size: 16px; margin-right: 8px; min-width: 250px;
}

/* Reviews */
.shopopen24-reviews { margin-top: 30px; padding: 20px; background: #fff; border: 1px solid #eee; border-radius: 8px; }
.shopopen24-avg-rating { font-size: 18px; color: #f57c00; }
.shopopen24-review-list { list-style: none; padding: 0; }
.shopopen24-review-list li { padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.shopopen24-review-list small { color: #999; }

.comment-form-rating select { padding: 8px; font-size: 16px; }

/* Search form */
.shopopen24-search-form { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.shopopen24-search-form input[type="text"],
.shopopen24-search-form select { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
.shopopen24-search-form button { background: #0073aa; color: #fff; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; }

/* Admin */
.shopopen24-gallery-preview img { width: 80px; height: 80px; object-fit: cover; margin: 4px; border-radius: 4px; }