.ios-template-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.ios-template-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}
.ios-template-card-image {
    position: relative;
    min-height: 210px;
    background: #f8fafc;
}
.ios-template-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.ios-template-placeholder {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-weight: 800;
    text-align: center;
}
.ios-template-lock {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #111827;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.ios-template-card-body {
    padding: 20px;
}
.ios-template-card-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
}
.ios-template-card-body p {
    margin: 0 0 18px;
    color: #64748b;
}
.ios-template-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ios-template-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}
.ios-template-btn.primary {
    background: #111827;
    color: #fff;
}
.ios-template-btn.secondary {
    background: #f1f5f9;
    color: #111827;
}
@media (max-width: 900px) {
    .ios-template-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .ios-template-showcase { grid-template-columns: 1fr; }
}
