.glamour-latest-watches {
    padding: 2.5rem 0 3rem;
}

.glamour-latest-watches--follow {
    padding-top: 0;
}

.glamour-schmuck-tabbed-blocks .glamour-latest-watches:last-child {
    padding-bottom: 1.25rem;
}

.glamour-latest-watches__block-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
}

.glamour-latest-watches__tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 1.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e4e4e7;
    padding-bottom: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.glamour-latest-watches__tabs::-webkit-scrollbar {
    height: 4px;
}

.glamour-latest-watches__tabs::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 4px;
}

.glamour-latest-watches__tab {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    padding: 0.5rem 0 0.85rem;
    white-space: nowrap;
    border: none;
    background: transparent;
    font-family: Poppins, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.3;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.25s ease;
}

.glamour-latest-watches__tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #1a1a1a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.glamour-latest-watches__tab:hover {
    color: #1a1a1a;
}

.glamour-latest-watches__tab.is-active {
    font-weight: 600;
    color: #1a1a1a;
}

.glamour-latest-watches__tab.is-active::after {
    transform: scaleX(1);
}

.glamour-latest-watches__panels {
    position: relative;
}

.glamour-latest-watches__panel {
    display: none;
    animation: glamour-watch-panel-in 0.4s ease;
}

.glamour-latest-watches__panel.is-active {
    display: block;
}

.glamour-latest-watches__panels--single .glamour-latest-watches__panel {
    display: block;
}

@keyframes glamour-watch-panel-in {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.glamour-latest-watches__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.glamour-latest-watches__grid > .glamour-latest-watches__card:nth-child(n + 6) {
    display: none;
}

.glamour-latest-watches__card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
    padding: 0 1.25rem 1rem;
    border-right: 1px solid #e4e4e7;
    text-align: center;
}

.glamour-latest-watches__card:first-child {
    padding-left: 0;
}

.glamour-latest-watches__card:last-child {
    border-right: none;
    padding-right: 0;
}

.glamour-latest-watches__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin-bottom: 1.25rem;
}

.glamour-latest-watches__image-link {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.glamour-latest-watches__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
}

.glamour-latest-watches__badges {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.glamour-latest-watches__badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-family: Poppins, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.glamour-latest-watches__badge--sold-out {
    background: #6b7280;
}

.glamour-latest-watches__badge--sale {
    background: #dc2626;
}

.glamour-latest-watches__name {
    display: block;
    margin: 0 0 0.75rem;
    font-family: "DM Serif Display", serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
}

.glamour-latest-watches__name:hover {
    opacity: 0.75;
}

.glamour-latest-watches__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1rem;
    font-family: Poppins, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.3;
}

.glamour-latest-watches__price-regular {
    color: #9ca3af;
    text-decoration: line-through;
}

.glamour-latest-watches__price-final {
    font-weight: 600;
    color: #1a1a1a;
}

.glamour-latest-watches__action {
    margin-top: auto;
}

.glamour-latest-watches__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid #1a1a1a;
    background: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.glamour-latest-watches__btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.glamour-latest-watches__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 1280px) {
    .glamour-latest-watches__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 2rem;
    }

    .glamour-latest-watches__card {
        border-right: none;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .glamour-latest-watches__tabs {
        gap: 0.35rem 1.25rem;
    }

    .glamour-latest-watches__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .glamour-latest-watches__grid {
        grid-template-columns: 1fr;
    }
}
