.watchfaces-section {
    max-width: 1200px;       /* içerik genişliği sınırı */
    margin: 0 auto;          /* yatayda ortala */
    padding: 2rem 1rem;      /* üst-alt ve yan boşluk */
    text-align: center;      /* tüm içerik ortada */
}

.watchfaces-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* gradient veya renk eklemek istersen buraya */
}

.watchfaces-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;     /* başlık ile grid arası boşluk */
    font-weight: 400;
}

.watchfaces-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* öğeleri ortala */
    gap: 1rem;               /* kutular arası boşluk */
}

.watchface-box {
    background-color: #f5f5f7; /* original 222 */
    border-radius: 8px;
    width: calc(33.333% - 1rem); /* Desktop: 3 sütun */
    min-width: 200px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-sizing: border-box;
}

.watchface-box img {
    max-width: 80%;
    max-height: 90%;
    border-radius: 8px;
}

.watchface-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.watchface-box button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#loadMoreBtn {
    padding: 0.6rem 1.2rem;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
}

/* Mobil */
@media (max-width: 767px) {
    .watchface-box {
        width: 100%;           /* Mobilde tek kolon */
        height: 400px;
    }
}
