/* ===============================
   WATCH TYPE SECTION
================================ */

.watch-type-section {
    padding: 40px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.watch-type-section .section-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* ===============================
   GRID – DESKTOP
================================ */

.watch-type-section .watch-type-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* ===============================
   CARD
================================ */

.watch-type-section .watch-type {
    flex: 1;
    text-decoration: none;
    color: #000;
}

.watch-type-section .watch-type img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: opacity 0.6s ease;
}

.watch-type-section .watch-type span {
    display: block;
    /* margin-top: 20px; */
    font-size: 14px;
    font-weight: 500;
}

/* ===============================
   MOBILE – HORIZONTAL SCROLL
================================ */

@media (max-width: 768px) {

    .watch-type-section .watch-type-grid {
        flex-wrap: nowrap;              /* IMPORTANT */
        overflow-x: auto;               /* ENABLE SCROLL */
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 0 15px;
        scroll-snap-type: x mandatory;  /* Smooth snapping */
        -webkit-overflow-scrolling: touch;
    }

    .watch-type-section .watch-type {
        flex: 0 0 50%;                  /* CARD WIDTH */
        max-width: 70%;
        scroll-snap-align: center;
    }

    .watch-type-section .watch-type img {
        height: 200px;
    }

    /* Hide scrollbar (optional, clean UI) */
    .watch-type-section .watch-type-grid::-webkit-scrollbar {
        display: none;
    }

    .watch-type-section .watch-type-grid {
        scrollbar-width: none;
    }
}
