/* Responsive Grid for Etsy Store Display */

.etsy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

.etsy-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.etsy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.etsy-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

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

.etsy-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.etsy-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #d66117; /* Etsy Orange */
    margin: 0 0 15px 0;
}

.etsy-buy-button {
    display: block;
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: auto;
    transition: background-color 0.2s;
}

.etsy-buy-button:hover {
    background-color: #d66117;
    color: #fff;
}

.etsy-error {
    color: #d63638;
    background: #fcf0f1;
    padding: 15px;
    border-left: 4px solid #d63638;
}
