.product-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-nav-wrapper h1.namne_details {
    flex: 1;
    margin-bottom: 0;
}

.product-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: #fff;
    cursor: pointer;
}

.product-nav-arrow:hover {
    color: #000;
    border-color: #999;
    background: #f5f5f5;
    text-decoration: none;
}

.product-nav-arrow.product-nav-disabled {
    opacity: 0.25;
    pointer-events: none;
    cursor: default;
}

.product-nav-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .product-nav-wrapper {
        gap: 8px;
    }

    .product-nav-arrow {
        width: 32px;
        height: 32px;
    }

    .product-nav-arrow svg {
        width: 16px;
        height: 16px;
    }
}
