/* Pot Showcase Section */
.pot-showcase {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.pot-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pot-showcase p {
    font-size: 1.1rem;
    color: #555;
}

/* Pot Content Section */
.pot-content .container {
    padding: 40px 0;
}

/* Options Bar */
.pot-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-buttons button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.sort-buttons button.active, 
.sort-buttons button:hover {
    background-color: #FF7A00;
    color: #fff;
    border-color: #FF7A00;
}

.search-pot input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 250px;
}

/* Prompt Grid */
.prompt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.prompt-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.prompt-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.prompt-card .description {
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}
